Add command line parameter mechanism
[staging/HomeScreen.git] / HomeScreen / src / main.cpp
1 /*
2  * Copyright (C) 2016 Mentor Graphics Development (Deutschland) GmbH
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
24 #include "layouthandler.h"
25 #include "homescreencontrolinterface.h"
26 #include "../src2/applicationlauncher.h"
27 #include "../src2/statusbarmodel.h"
28 #include "../src2/applicationmodel.h"
29
30 int main(int argc, char *argv[])
31 {
32     QGuiApplication a(argc, argv);
33
34     QCoreApplication::setOrganizationDomain("LinuxFoundation");
35     QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
36     QCoreApplication::setApplicationName("HomeScreen");
37     QCoreApplication::setApplicationVersion("0.7.0");
38
39     QCommandLineParser parser;
40     parser.setApplicationDescription("AGL HomeScreen - see wwww... for more details");
41     parser.addHelpOption();
42     parser.addVersionOption();
43     parser.process(a);
44
45     qDBusRegisterMetaType<AppInfo>();
46     qDBusRegisterMetaType<QList<AppInfo> >();
47
48     qmlRegisterType<ApplicationLauncher>("HomeScreen", 1, 0, "ApplicationLauncher");
49     qmlRegisterType<ApplicationModel>("Home", 1, 0, "ApplicationModel");
50     qmlRegisterType<StatusBarModel>("HomeScreen", 1, 0, "StatusBarModel");
51
52     QQmlApplicationEngine engine;
53
54     LayoutHandler* layoutHandler = new LayoutHandler();
55
56     HomeScreenControlInterface* hsci = new HomeScreenControlInterface();
57     QObject::connect(hsci, SIGNAL(newRequestGetSurfaceStatus(int)), layoutHandler, SLOT(requestGetSurfaceStatus(int)));
58     QObject::connect(hsci, SIGNAL(newRequestsToBeVisibleApp(int)), layoutHandler, SLOT(makeMeVisible(int)));
59     QObject::connect(hsci, SIGNAL(newRequestRenderSurfaceToArea(int, int)), layoutHandler, SLOT(requestRenderSurfaceToArea(int,int)));
60     QObject::connect(hsci, SIGNAL(newRequestRenderSurfaceToAreaAllowed(int, int)), layoutHandler, SLOT(requestRenderSurfaceToAreaAllowed(int,int)));
61     QObject::connect(hsci, SIGNAL(newRequestSurfaceIdToFullScreen(int)), layoutHandler, SLOT(requestSurfaceIdToFullScreen(int)));
62
63     engine.rootContext()->setContextProperty("layoutHandler", layoutHandler);
64
65     engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
66
67     return a.exec();
68 }