-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmain.cpp
59 lines (47 loc) · 1.83 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
/*
* Copyright (C) 2012-2016 Canonical, Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
// local
#include "ShellApplication.h"
#include "qmldebuggerutils.h"
#include "UnixSignalHandler.h"
#include <QTranslator>
#include <QLibraryInfo>
#include <QLocale>
int main(int argc, const char *argv[])
{
qSetMessagePattern("[%{time yyyy-MM-dd:hh:mm:ss.zzz}] %{if-category}%{category}: %{endif}%{message}");
bool isMirServer = qgetenv("QT_QPA_PLATFORM") == "mirserver";
if (!isMirServer && qgetenv("QT_QPA_PLATFORM") == "ubuntumirclient") {
setenv("QT_QPA_PLATFORM", "mirserver", 1 /* overwrite */);
isMirServer = true;
}
if (enableQmlDebugger(argc, argv)) {
QQmlDebuggingEnabler qQmlEnableDebuggingHelper(true);
}
ShellApplication *application = new ShellApplication(argc, (char**)argv, isMirServer);
UnixSignalHandler signalHandler([]{
QGuiApplication::exit(0);
});
signalHandler.setupUnixSignalHandlers();
QTranslator qtTranslator;
if (qtTranslator.load(QLocale(), QStringLiteral("qt_"), qgetenv("SNAP"), QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
application->installTranslator(&qtTranslator);
}
int result = application->exec();
application->destroyResources();
delete application;
return result;
}