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 (qgetenv("QT_QPA_PLATFORM") == "ubuntumirclient" || qgetenv("QT_QPA_PLATFORM") == "wayland") {
32  setenv("QT_QPA_PLATFORM", "mirserver", 1 /* overwrite */);
33  isMirServer = true;
34 
35  qInfo("Using mirserver qt platform");
36  }
37 
38  // If we are not running using nested mir, we need to set cursor to null
39  if (!qEnvironmentVariableIsSet("MIR_SERVER_HOST_SOCKET")) {
40  qInfo("Not using nested server, using null mir cursor");
41  setenv("MIR_SERVER_CURSOR", "null", 1);
42  }
43 
44  if (enableQmlDebugger(argc, argv)) {
45  QQmlDebuggingEnabler qQmlEnableDebuggingHelper(true);
46  }
47 
48  ShellApplication *application = new ShellApplication(argc, (char**)argv, isMirServer);
49 
50  UnixSignalHandler signalHandler([]{
51  QGuiApplication::exit(0);
52  });
53  signalHandler.setupUnixSignalHandlers();
54 
55  QTranslator qtTranslator;
56  if (qtTranslator.load(QLocale(), QStringLiteral("qt_"), qgetenv("SNAP"), QLibraryInfo::location(QLibraryInfo::TranslationsPath))) {
57  application->installTranslator(&qtTranslator);
58  }
59 
60  int result = application->exec();
61 
62  application->destroyResources();
63 
64  delete application;
65 
66  return result;
67 }