Unity 8
main.cpp
1 /*
2  * Copyright (C) 2012-2016 Canonical, Ltd.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 3.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 // local
18 #include "ShellApplication.h"
19 #include "qmldebuggerutils.h"
20 #include "UnixSignalHandler.h"
21 
22 #include <QTranslator>
23 #include <QLibraryInfo>
24 #include <QLocale>
25 
26 int main(int argc, const char *argv[])
27 {
28  qSetMessagePattern("[%{time yyyy-MM-dd:hh:mm:ss.zzz}] %{if-category}%{category}: %{endif}%{message}");
29 
30  bool isMirServer = qgetenv("QT_QPA_PLATFORM") == "mirserver";
31  if (!isMirServer && qgetenv("QT_QPA_PLATFORM") == "ubuntumirclient") {
32  setenv("QT_QPA_PLATFORM", "mirserver", 1 /* overwrite */);
33  isMirServer = true;
34  }
35 
36  if (enableQmlDebugger(argc, argv)) {
37  QQmlDebuggingEnabler qQmlEnableDebuggingHelper(true);
38  }
39 
40  ShellApplication *application = new ShellApplication(argc, (char**)argv, isMirServer);
41 
42  UnixSignalHandler signalHandler([]{
43  QGuiApplication::exit(0);
44  });
45  signalHandler.setupUnixSignalHandlers();
46 
47  QTranslator qtTranslator;
48  if (qtTranslator.load(QLocale(), QStringLiteral("qt_"), qgetenv("SNAP"), QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
49  application->installTranslator(&qtTranslator);
50  }
51 
52  int result = application->exec();
53 
54  application->destroyResources();
55 
56  delete application;
57 
58  return result;
59 }