-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathMain.cpp
214 lines (190 loc) · 8.2 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
// Qt includes
#include <QApplication>
#include <QDebug>
#include <QDir>
#include <QFileInfo>
#include <QStringList>
#include <QTimer>
#include <QtPlugin>
// CTK includes
#include "ctkAppArguments.h"
#include "ctkAppLauncher.h"
#include "ctkCommandLineParser.h"
// STD includes
#include <cstdlib>
// Windows includes
#ifdef Q_OS_WIN32
# include <windows.h>
#endif
// --------------------------------------------------------------------------
int appLauncherMain(int argc, char** argv)
{
#ifdef QT_MAC_USE_COCOA
// See http://doc.trolltech.com/4.7/qt.html#ApplicationAttribute-enum
// Setting the application to be a plugin will avoid the loading of qt_menu.nib files
QCoreApplication::setAttribute(Qt::AA_MacPluginApplication, true);
#endif
ctkAppArguments appArguments(argc, argv);
appArguments.setArgumentToFilterList(
ctkAppArguments::ArgToFilterListType()
//
// Qt4 built-in arguments - See https://qt-project.org/doc/qt-4.8/qapplication.html#QApplication
//
<< ctkAppArguments::ArgToFilterType("-style", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE | ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
<< ctkAppArguments::ArgToFilterType("-stylesheet", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE | ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
<< ctkAppArguments::ArgToFilterType("-session", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE | ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
<< ctkAppArguments::ArgToFilterType("-widgetcount")
<< ctkAppArguments::ArgToFilterType("-reverse")
<< ctkAppArguments::ArgToFilterType("-graphicssystem")
<< ctkAppArguments::ArgToFilterType("-qmljsdebugger=", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE)
#ifdef QT_DEBUG
<< ctkAppArguments::ArgToFilterType("-nograb")
#endif
#ifdef Q_WS_X11
<< ctkAppArguments::ArgToFilterType("-display")
<< ctkAppArguments::ArgToFilterType("-geometry")
<< ctkAppArguments::ArgToFilterType("-fn")
<< ctkAppArguments::ArgToFilterType("-font")
<< ctkAppArguments::ArgToFilterType("-bg")
<< ctkAppArguments::ArgToFilterType("-background")
<< ctkAppArguments::ArgToFilterType("-fg")
<< ctkAppArguments::ArgToFilterType("-foreground")
<< ctkAppArguments::ArgToFilterType("-btn")
<< ctkAppArguments::ArgToFilterType("-button")
<< ctkAppArguments::ArgToFilterType("-name")
<< ctkAppArguments::ArgToFilterType("-title")
<< ctkAppArguments::ArgToFilterType("-visual")
<< ctkAppArguments::ArgToFilterType("-ncols")
<< ctkAppArguments::ArgToFilterType("-cmap")
<< ctkAppArguments::ArgToFilterType("-im")
<< ctkAppArguments::ArgToFilterType("-inputstyle")
# ifdef QT_DEBUG
<< ctkAppArguments::ArgToFilterType("-dograb")
<< ctkAppArguments::ArgToFilterType("-sync")
# endif
#endif
//
// Qt5 built-in arguments - See https://doc.qt.io/qt-5/qapplication.html#QApplication
//
// -style/-style=
// -stylesheet/-stylesheet=
// -widgetcount
// -reverse
// -qmljsdebugger=
//
// Qt5 built-in arguments - See https://doc.qt.io/qt-5/qguiapplication.html#QGuiApplication
//
<< ctkAppArguments::ArgToFilterType("-platform", ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
<< ctkAppArguments::ArgToFilterType("-platformpluginpath", ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
<< ctkAppArguments::ArgToFilterType("-platformtheme", ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
<< ctkAppArguments::ArgToFilterType("-plugin", ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
// -qmljsdebugger=
<< ctkAppArguments::ArgToFilterType("-qwindowgeometry", ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
<< ctkAppArguments::ArgToFilterType("-qwindowicon", ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
<< ctkAppArguments::ArgToFilterType("-qwindowtitle", ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
// -reverse
// -session/-session=
#if defined Q_WS_X11
// -display
// -geometry
#endif
<< ctkAppArguments::ArgToFilterType("-qwindowtitle", ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
<< ctkAppArguments::ArgToFilterType("-fontengine", ctkAppArguments::ARG_TO_FILTER_SPACE_VALUE)
#if defined Q_OS_WIN32
<< ctkAppArguments::ArgToFilterType("-altgr")
<< ctkAppArguments::ArgToFilterType("-darkmode=", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE)
<< ctkAppArguments::ArgToFilterType("-dialogs=", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE)
<< ctkAppArguments::ArgToFilterType("-dpiawareness=", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE)
<< ctkAppArguments::ArgToFilterType("-fontengine=", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE)
<< ctkAppArguments::ArgToFilterType("-menus=", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE)
<< ctkAppArguments::ArgToFilterType("-nocolorfonts")
<< ctkAppArguments::ArgToFilterType("-nodirectwrite")
<< ctkAppArguments::ArgToFilterType("-nomousefromtouch")
<< ctkAppArguments::ArgToFilterType("-nowmpointer")
// -reverse
<< ctkAppArguments::ArgToFilterType("-tabletabsoluterange=", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE)
#endif
#if defined Q_OS_MAC
<< ctkAppArguments::ArgToFilterType("-fontengine=", ctkAppArguments::ARG_TO_FILTER_EQUAL_VALUE)
#endif
);
QString executableName = argv[0];
#if defined Q_OS_WIN32
// Specifying .exe file extension is optional on Windows (executableName can be
// "CTKAppLauncher.exe" or just "CTKAppLauncher"). Make sure here that executable
// path includes file extension so that the file can be found.
if (!executableName.toLower().endsWith(".exe"))
{
executableName.append(".exe");
}
#endif
QFileInfo launcherFile(QDir::current(), executableName);
// Initialize resources in static libs
Q_INIT_RESOURCE(CTKAppLauncherBase);
QScopedPointer<ctkAppLauncher> appLauncher(new ctkAppLauncher);
appLauncher->setArguments(appArguments.arguments());
if (!appLauncher->initialize(launcherFile.absoluteFilePath()))
{
return EXIT_FAILURE;
}
int status = appLauncher->configure();
if (status != ctkAppLauncher::Continue)
{
return status == ctkAppLauncher::ExitWithSuccess ? EXIT_SUCCESS : EXIT_FAILURE;
}
QScopedPointer<QCoreApplication> app;
if (appLauncher->disableSplash())
{
app.reset(new QCoreApplication(
appArguments.argumentCount(ctkAppArguments::ARG_REGULAR_LIST),
appArguments.argumentValues(ctkAppArguments::ARG_REGULAR_LIST)));
}
else
{
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0) && defined Q_OS_WIN32 && defined QT_STATIC)
// Initialize platform plugin in static build
Q_IMPORT_PLUGIN(QWindowsIntegrationPlugin)
#endif
app.reset(new QApplication(
appArguments.argumentCount(ctkAppArguments::ARG_REGULAR_LIST),
appArguments.argumentValues(ctkAppArguments::ARG_REGULAR_LIST)));
}
appLauncher.reset(new ctkAppLauncher);
appLauncher->setArguments(appArguments.arguments());
appLauncher->initialize(launcherFile.absoluteFilePath());
appLauncher->setApplication(*app.data());
QTimer::singleShot(0, appLauncher.data(), SLOT(startLauncher()));
int res = app->exec();
// Delete application launcher appLauncher before the application app so that
// graphical items such as pixmaps, widgets, etc can be released.
appLauncher.reset();
return res;
}
// --------------------------------------------------------------------------
#ifndef CTKAPPLAUNCHER_WITHOUT_CONSOLE_IO_SUPPORT
int main(int argc, char *argv[])
{
return appLauncherMain(argc, argv);
}
#elif defined Q_OS_WIN32
int __stdcall WinMain(HINSTANCE hInstance,
HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nShowCmd)
{
Q_UNUSED(hInstance);
Q_UNUSED(hPrevInstance);
Q_UNUSED(nShowCmd);
int argc;
char **argv;
ctkCommandLineParser::convertWindowsCommandLineToUnixArguments(lpCmdLine, &argc, &argv);
int ret = appLauncherMain(argc, argv);
for (int i = 0; i < argc; ++i)
{
delete [] argv[i];
}
delete [] argv;
return ret;
}
#else
# error CTKAPPLAUNCHER_WITHOUT_CONSOLE_IO_SUPPORT is only supported on WIN32 !
#endif