-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathmainwindow.cpp
57 lines (49 loc) · 1.35 KB
/
mainwindow.cpp
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
#include "mainwindow.h"
#include "./ui_mainwindow.h"
#include <sstream>
#include <thread>
using namespace promise;
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
auto updateText = [=](int sourceLine) {
std::stringstream os;
os << "thread id = " << std::this_thread::get_id() << "\n"
<< "source line = " << sourceLine;
ui->label->setText(QString::fromStdString(os.str()));
};
updateText(__LINE__);
// delay tasks
#if 1
doWhile([=](DeferLoop &loop) {
delay(1000).then([=]() {
updateText(__LINE__);
return delay(1000);
}).then([=]() {
updateText(__LINE__);
return delay(1000);
}).then([=]() {
updateText(__LINE__);
return yield();
}).then([=]() {
updateText(__LINE__);
return delay(1000);
}).then([=]() {
updateText(__LINE__);
return delay(1000);
}).then([=]() {
updateText(__LINE__);
return delay(1000);
}).then([=]() {
updateText(__LINE__);
return delay(1000);
}).then(loop); //call doWhile
});
#endif
}
MainWindow::~MainWindow()
{
delete ui;
}