usbcheckpopupdlg.cpp
846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <QTimer>
#include "usbcheckpopupdlg.h"
#include "ui_usbcheckpopupdlg.h"
#include "fileprocessor.h"
UsbCheckPopupDlg::UsbCheckPopupDlg(QWidget *parent) :
QDialog(parent),
ui(new Ui::UsbCheckPopupDlg)
{
ui->setupUi(this);
setAttribute(Qt::WA_DeleteOnClose);
setWindowFlags(Qt::Widget | Qt::FramelessWindowHint);
setAttribute(Qt::WA_NoSystemBackground);
setAttribute(Qt::WA_TranslucentBackground);
timer = new QTimer(this);
connect(timer,SIGNAL(timeout()),SLOT(usbCheckTimerFired()));
timer->start(500);
}
UsbCheckPopupDlg::~UsbCheckPopupDlg()
{
delete ui;
}
void UsbCheckPopupDlg::on_ctrBtnYes_clicked()
{
accept();
}
void UsbCheckPopupDlg::usbCheckTimerFired(){
QString strTemp;
bool usbDetect = FileProcessor::detectUSB(strTemp);
if(usbDetect){
accept();
}
}