sample/app: Allow to identify the application
[apps/onscreenapp.git] / sample / app / main.cpp
1 /*
2  * Copyright (c) 2019 TOYOTA MOTOR CORPORATION
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <QQmlContext>
18 #include <QtCore/QCommandLineParser>
19 #include <QtGui/QGuiApplication>
20 #include <QtQml/QQmlContext>
21 #include <QtQml/QQmlApplicationEngine>
22 #include <QtQuickControls2/QQuickStyle>
23 #include <QtQuick/QQuickWindow>
24
25 #include "eventhandler.h"
26
27
28 int main(int argc, char *argv[])
29 {
30     QGuiApplication app(argc, argv);
31
32     //app.setApplicationName("onstestapp");
33     //app.setApplicationVersion(QStringLiteral("3.99.3"));
34     //app.setOrganizationDomain(QStringLiteral("automotivelinux.org"));
35     //app.setOrganizationName(QStringLiteral("AutomotiveGradeLinux"));
36
37     //QQuickStyle::setStyle("AGL");
38     app.setDesktopFileName("onstestapp");
39
40     QCommandLineParser parser;
41     parser.addPositionalArgument("port", app.translate("main", "port for binding"));
42     parser.addPositionalArgument("secret", app.translate("main", "secret for binding"));
43     parser.addHelpOption();
44     parser.addVersionOption();
45     parser.process(app);
46     QStringList positionalArguments = parser.positionalArguments();
47
48     QQmlApplicationEngine engine;
49     int port = 0;
50     QString secret;
51     if (positionalArguments.length() == 2) {
52         port = positionalArguments.takeFirst().toInt();
53         secret = positionalArguments.takeFirst();
54     }
55
56     EventHandler *eventHandler = new EventHandler();
57     eventHandler->init(port, secret.toStdString().c_str());
58     engine.rootContext()->setContextProperty("eventHandler", eventHandler);
59
60     engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
61     if (engine.rootObjects().isEmpty()) {
62         HMI_DEBUG(APP_ID, "Fatal Error, rootObject is empty!");
63         return -1;
64     }
65
66     QObject *root = engine.rootObjects().first();
67     QQuickWindow *window = qobject_cast<QQuickWindow *>(root);
68     QObject::connect(eventHandler, SIGNAL(signalOnReplyShowWindow(QVariant)), window, SLOT(qmlOnReplyShowWindow(QVariant)));
69     eventHandler->setQuickWindow(window);
70
71     return app.exec();
72 }