20 #include <QtQuick/QQuickView> 21 #include <QtGui/QGuiApplication> 22 #include <QtQml/QQmlEngine> 23 #include <QtQml/QQmlContext> 25 #include <QCommandLineParser> 28 #include <QQmlApplicationEngine> 31 #include "../qmldebuggerutils.h" 32 #ifdef UNITY8_ENABLE_TOUCH_EMULATION 33 #include "../MouseTouchAdaptor.h" 35 #include "../CachingNetworkManagerFactory.h" 36 #include "../UnixSignalHandler.h" 38 int main(
int argc,
const char *argv[])
40 qSetMessagePattern(
"[%{time yyyy-mm-dd:hh:mm:ss.zzz}] %{if-category}%{category}: %{endif}%{message}");
41 if (enableQmlDebugger(argc, argv)) {
42 QQmlDebuggingEnabler qQmlEnableDebuggingHelper(
true);
45 QGuiApplication *application =
new QGuiApplication(argc, (
char**)argv);
47 QCommandLineParser parser;
48 parser.setApplicationDescription(QStringLiteral(
"Description: Unity 8 Shell Dash"));
49 parser.addHelpOption();
51 QCommandLineOption mousetouchOption(QStringLiteral(
"mousetouch"),
52 QStringLiteral(
"Allow the mouse to provide touch input"));
53 parser.addOption(mousetouchOption);
55 QCommandLineOption windowGeometryOption(QStringList() << QStringLiteral(
"windowgeometry"),
56 QStringLiteral(
"Specify the window geometry as [<width>x<height>]"), QStringLiteral(
"windowgeometry"), QStringLiteral(
"1"));
57 parser.addOption(windowGeometryOption);
60 QCommandLineOption desktopFileHintOption(QStringLiteral(
"desktop_file_hint"),
61 QStringLiteral(
"The desktop_file_hint option for QtMir"), QStringLiteral(
"hint_file"));
62 parser.addOption(desktopFileHintOption);
66 parser.setSingleDashWordOptionMode(QCommandLineParser::ParseAsLongOptions);
67 parser.process(*application);
69 if (getenv(
"QT_LOAD_TESTABILITY")) {
70 QLibrary testLib(QStringLiteral(
"qttestability"));
72 typedef void (*TasInitialize)(void);
73 TasInitialize initFunction = (TasInitialize)testLib.resolve(
"qt_testability_init");
77 qCritical(
"Library qttestability resolve failed!");
80 qCritical(
"Library qttestability load failed!");
84 bindtextdomain(
"unity8", translationDirectory().toUtf8().data());
87 #ifdef UNITY8_ENABLE_TOUCH_EMULATION 90 MouseTouchAdaptor *mouseTouchAdaptor = 0;
91 if (parser.isSet(mousetouchOption)) {
92 mouseTouchAdaptor = MouseTouchAdaptor::instance();
96 QQmlApplicationEngine *engine =
new QQmlApplicationEngine(application);
98 int initialWidth = -1;
99 int initialHeight = -1;
100 if (parser.isSet(windowGeometryOption) &&
101 parser.value(windowGeometryOption).split(
'x').size() == 2)
103 QStringList geom = parser.value(windowGeometryOption).split(
'x');
104 QSize windowSize(geom.at(0).toInt(), geom.at(1).toInt());
105 if (windowSize.isValid()) {
106 initialWidth = windowSize.width();
107 initialHeight = windowSize.height();
110 engine->rootContext()->setContextProperty(
"initialWidth", initialWidth);
111 engine->rootContext()->setContextProperty(
"initialHeight", initialHeight);
113 QUrl source(::qmlDirectory() +
"/Dash/DashApplication.qml");
114 prependImportPaths(engine, ::overrideImportPaths());
115 appendImportPaths(engine, ::fallbackImportPaths());
117 CachingNetworkManagerFactory *managerFactory =
new CachingNetworkManagerFactory();
118 engine->setNetworkAccessManagerFactory(managerFactory);
120 engine->load(source);
122 UnixSignalHandler signalHandler([]{
123 QGuiApplication::exit(0);
125 signalHandler.setupUnixSignalHandlers();
127 int result = application->exec();
131 #ifdef UNITY8_ENABLE_TOUCH_EMULATION 132 delete mouseTouchAdaptor;