-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.cpp
executable file
·69 lines (46 loc) · 1.21 KB
/
main.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
58
59
60
61
62
63
64
65
66
67
68
69
#include "projectwizard.h"
#include <QApplication>
#include <QFile>
#include "base/app_context.h"
#define DEBUG
#ifndef DEBUG
#include <QSplashScreen>
#include <QTimer>
#endif
AppContext *context;
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
// spash screen
#ifndef DEBUG
QPixmap pixmap(":/src/splash/splash.png");
QSplashScreen splash(pixmap);
splash.show();
#endif
// nacteni theme
QFile theme(":/src/theme/Combinear.qss");
if(theme.open(QFile::ReadOnly)) {
qDebug() << "Theme load ... ok";
} else {
qDebug() << "Theme load ... fail";
}
app.setStyleSheet(theme.readAll());
// zakladni nastaveni aplikace
app.setOrganizationName("UTB");
app.setOrganizationDomain("utb.cz");
app.setApplicationName("QtBitmapEditor");
// vytvoreni kontextu aplikace
context = new AppContext();
// project wizard
ProjectWizard window(context);
window.setWindowState(Qt::WindowState::WindowActive);
#ifdef DEBUG
window.show();
#endif
// spusteni aplikace
#ifndef DEBUG
QTimer::singleShot(1800, &splash, SLOT(close()));
QTimer::singleShot(1800, &window, SLOT(show()));
#endif
return app.exec();
}