mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-12-19 12:14:06 +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
30 lines
415 B
C++
30 lines
415 B
C++
#ifndef SCAN_FLAG_H
|
|
#define SCAN_FLAG_H
|
|
|
|
#include <QMainWindow>
|
|
#include <QPushButton>
|
|
#include <QTimer>
|
|
|
|
class ScanFlag: public QMainWindow
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ScanFlag( QWidget * parent );
|
|
|
|
~ScanFlag() = default;
|
|
|
|
void showScanFlag();
|
|
void pushButtonClicked();
|
|
void hideWindow();
|
|
|
|
signals:
|
|
void requestScanPopup();
|
|
|
|
private:
|
|
QTimer hideTimer;
|
|
QPushButton * pushButton;
|
|
};
|
|
|
|
#endif // SCAN_FLAG_H
|