usbcheckpopupdlg.cpp
1.55 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#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);
qApp->setActiveWindow(this);
this->setFocus();
ui->ctrBtnYes->setFocus();
timer = new QTimer(this);
connect(timer,SIGNAL(timeout()),SLOT(usbCheckTimerFired()));
timer->start(500);
}
UsbCheckPopupDlg::~UsbCheckPopupDlg()
{
delete ui;
}
void UsbCheckPopupDlg::on_ctrBtnYes_clicked()
{
//accept();
reject();
}
void UsbCheckPopupDlg::usbCheckTimerFired(){
QString strTemp;
bool usbDetect = FileProcessor::detectUSB(strTemp);
if(usbDetect){
accept();
}
}
void UsbCheckPopupDlg::keyPressEvent(QKeyEvent *event){
switch (event->key())
{
case 0x01000032: // Turn left
break;
case 0x01000031: // Push
break;
case 0x01000030: // Turn right
break;
}
}
void UsbCheckPopupDlg::keyReleaseEvent(QKeyEvent *event){
switch (event->key())
{
case 0x01000032: // Turn left
break;
case 0x01000031: // Push
{
QPushButton *btn = qobject_cast<QPushButton*>(focusWidget());
if(btn != NULL){
btn->click();
}
break;
}
case 0x01000030: // Turn right
break;
}
}