goldendict-ng/src/ui/searchpanel.hh
2023-04-17 16:17:03 -04:00

24 lines
453 B
C++

#ifndef GOLDENDICT_SEARCHPANEL_H
#define GOLDENDICT_SEARCHPANEL_H
#include <QWidget>
#include <QLineEdit>
#include <QPushButton>
#include <QCheckBox>
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