mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-12-19 12:14:06 +00:00
20 lines
364 B
C
20 lines
364 B
C
|
#ifndef GOLDENDICT_FTSSEARCHPANEL_H
|
||
|
#define GOLDENDICT_FTSSEARCHPANEL_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <QLabel>
|
||
|
#include <QPushButton>
|
||
|
|
||
|
class FtsSearchPanel: public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit FtsSearchPanel( QWidget * parent = nullptr );
|
||
|
QLabel * statusLabel;
|
||
|
QPushButton * previous;
|
||
|
QPushButton * next;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //GOLDENDICT_FTSSEARCHPANEL_H
|