// Copyright (C) 2022 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause #ifndef TEXTFINDER_H #define TEXTFINDER_H #include QT_BEGIN_NAMESPACE namespace Ui { class TextFinder; } QT_END_NAMESPACE class TextFinder : public QWidget { Q_OBJECT public: TextFinder(QWidget *parent = nullptr); ~TextFinder(); //! [0] private slots: void on_findButton_clicked(); private: Ui::TextFinder *ui; void loadTextFile(); //! [0] }; #endif // TEXTFINDER_H