Add onscreenapp
[apps/onscreenapp.git] / 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 <QGuiApplication>
18 #include <QCommandLineParser>
19 #include <QtGui/QGuiApplication>
20 #include <QtQml/QQmlApplicationEngine>
21 #include <QtQml/QQmlContext>
22 #include <QtQml/qqml.h>
23 #include <QQuickWindow>
24 #include <QtQuickControls2/QQuickStyle>
25
26 #include "eventhandler.h"
27 #include "onscreenmodel.h"
28
29
30 int main(int argc, char *argv[])
31 {
32     QGuiApplication app(argc, argv);
33
34     QCoreApplication::setOrganizationDomain("LinuxFoundation");
35     QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
36     QCoreApplication::setApplicationName("Onscreenapp");
37     QCoreApplication::setApplicationVersion("0.1.0");
38
39     QQuickStyle::setStyle("AGL");
40
41     QCommandLineParser parser;
42     parser.addPositionalArgument("port", app.translate("main", "port for binding"));
43     parser.addPositionalArgument("secret", app.translate("main", "secret for binding"));
44     parser.addHelpOption();
45     parser.addVersionOption();
46     parser.process(app);
47     QStringList positionalArguments = parser.positionalArguments();
48
49     int port = 1700;
50     QString token = "wm";
51
52     if (positionalArguments.length() == 2) {
53         port = positionalArguments.takeFirst().toInt();
54         token = positionalArguments.takeFirst();
55     }
56
57     HMI_DEBUG(APP_ID, "port = %d, token = %s", port, token.toStdString().c_str());
58
59     QQmlApplicationEngine engine;
60     EventHandler *eventHandler = new EventHandler();
61     eventHandler->init(port, token.toStdString().c_str());
62     engine.rootContext()->setContextProperty("eventHandler", eventHandler);
63     qmlRegisterType<OnScreenModel>("OnScreenModel", 1, 0, "OnScreenModel");
64     engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
65     if (engine.rootObjects().isEmpty()) {
66         HMI_DEBUG(APP_ID, "Fatal Error, rootObject is empty!");
67         return -1;
68     }
69
70     QObject *root = engine.rootObjects().first();
71     QQuickWindow *window = qobject_cast<QQuickWindow *>(root);
72     QObject::connect(eventHandler, SIGNAL(updateModel(QVariant)), window, SLOT(setOnScreenModel(QVariant)));
73     QObject::connect(eventHandler, SIGNAL(showOnScreen()), window, SLOT(showOnScreen()));
74     QObject::connect(eventHandler, SIGNAL(hideOnScreen()), window, SLOT(hideOnScreen()));
75
76     HMI_DEBUG(APP_ID, "onscreenapp started!");
77     return app.exec();
78 }
79