goldendict-ng/src/ui/ftssearchpanel.hh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
364 B
C++
Raw Normal View History

#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