mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 21:04:09 +00:00
34 lines
434 B
C++
34 lines
434 B
C++
|
#ifndef SCAN_FLAG_H
|
||
|
#define SCAN_FLAG_H
|
||
|
|
||
|
|
||
|
#include "config.hh"
|
||
|
#include <QMainWindow>
|
||
|
#include <QTimer>
|
||
|
#include "ui_scanflag.h"
|
||
|
|
||
|
class ScanFlag : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
ScanFlag( QWidget *parent );
|
||
|
|
||
|
~ScanFlag();
|
||
|
|
||
|
signals:
|
||
|
void showScanPopup ();
|
||
|
|
||
|
private:
|
||
|
Ui::ScanFlag ui;
|
||
|
QTimer hideTimer;
|
||
|
|
||
|
private slots:
|
||
|
void showScanFlag();
|
||
|
void pushButtonClicked();
|
||
|
void hideWindow();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // SCAN_FLAG_H
|