goldendict-ng/src/ui/scanflag.hh

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

27 lines
365 B
C++
Raw Normal View History

2024-11-07 03:53:04 +00:00
#pragma once
#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;
};