#ifndef GOLDENDICT_SEARCHPANEL_H #define GOLDENDICT_SEARCHPANEL_H #include #include #include #include class SearchPanel: public QWidget { Q_OBJECT public: explicit SearchPanel( QWidget * parent = nullptr ); QLineEdit * lineEdit; QPushButton * close; QPushButton * previous; QPushButton * next; QCheckBox * highlightAll; QCheckBox * caseSensitive; }; #endif //GOLDENDICT_SEARCHPANEL_H