forked from openDsh/dash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdash.cpp
57 lines (47 loc) · 1.69 KB
/
dash.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 <QApplication>
#include <QStringList>
#include <QWindow>
#include "app/window.hpp"
#include "app/action.hpp"
int main(int argc, char *argv[])
{
QApplication dash(argc, argv);
dash.setOrganizationName("openDsh");
dash.setApplicationName("dash");
dash.installEventFilter(ActionEventFilter::get_instance());
QSize size = dash.primaryScreen()->size();
QPoint pos = dash.primaryScreen()->geometry().topLeft();
bool fullscreen = true;
QSettings settings;
DASH_LOG(info) << "loaded config: " << settings.fileName().toStdString();
QStringList args = dash.arguments();
if (args.size() > 2) {
size = QSize(args.at(1).toInt(), args.at(2).toInt());
if (args.size() > 4)
pos = QPoint(args.at(3).toInt(), args.at(4).toInt());
fullscreen = false;
}
else {
settings.beginGroup("Window");
if (settings.contains("size")) {
size = settings.value("size").toSize();
if (settings.contains("pos"))
pos = settings.value("pos").toPoint();
fullscreen = false;
}
}
QPixmap pixmap(QPixmap(":/splash.png").scaledToHeight(size.height() / 2));
QSplashScreen splash(pixmap);
splash.setMask(pixmap.mask());
splash.move(pos.x() + ((size.width() / 2) - (splash.width() / 2)), pos.y() + ((size.height() / 2) - (splash.height() / 2)));
splash.show();
dash.processEvents();
MainWindow window(QRect(pos, size));
window.setWindowIcon(QIcon(":/logo.png"));
window.setWindowFlags(Qt::FramelessWindowHint);
if (fullscreen)
window.setWindowState(Qt::WindowFullScreen);
window.show();
splash.finish(&window);
return dash.exec();
}