mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
6e0a6cfa42
All slots of ScanFlag are used just as functions calls.
32 lines
401 B
C++
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
|