reservedtimepopup.cpp
855 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
39
40
41
42
43
44
#include "reservedtimepopup.h"
#include "ui_reservedtimepopup.h"
#include <QDebug>
#include "stringer.h"
ReservedTimePopup::ReservedTimePopup(QWidget *parent, QDateTime target) :
QWidget(parent),
ui(new Ui::ReservedTimePopup),
target(target)
{
ui->setupUi(this);
setAttribute(Qt::WA_DeleteOnClose);
connect(&checkTimeTimer, SIGNAL(timeout()), SLOT(checkTime()));
checkTimeTimer.start(100);
checkTime();
}
ReservedTimePopup::~ReservedTimePopup()
{
delete ui;
}
void ReservedTimePopup::checkTime()
{
qint64 remaining = QDateTime::currentDateTime().msecsTo(target);
if (remaining > 0)
ui->timeLabel->setText(Stringer::remainingTime(remaining));
else
{
emit timeout();
close();
}
}
void ReservedTimePopup::on_cancelButton_clicked()
{
emit canceled();
close();
}