mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-12-18 23:54:05 +00:00
b5349478cf
The next commit will add `.git-blame-ignore-revs` https://docs.github.com/en/repositories/working-with-files/using-files/viewing-a-file#ignore-commits-in-the-blame-view
25 lines
453 B
C++
25 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
|