mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-12-19 08:04:06 +00:00
24 lines
453 B
C++
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
|