goldendict-ng/scanflag.hh
shenleban tongying 6e0a6cfa42 refactor & simplify ScanFlag:
All slots of ScanFlag are used just as functions calls.
2022-11-20 01:19:27 -05:00

32 lines
401 B
C++

#ifndef SCAN_FLAG_H
#define SCAN_FLAG_H
#include <QMainWindow>
#include <QTimer>
#include "ui_scanflag.h"
class ScanFlag : public QMainWindow
{
Q_OBJECT
public:
ScanFlag( QWidget *parent );
~ScanFlag();
void showScanFlag();
void pushButtonClicked();
void hideWindow();
signals:
void requestScanPopup ();
private:
Ui::ScanFlag ui;
QTimer hideTimer;
};
#endif // SCAN_FLAG_H