Delete unneeded files
[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 <QtGui/QGuiApplication>
19 #include <QtQml/QQmlApplicationEngine>
20 #include <QtQml/QQmlContext>
21 #include <QtQml/qqml.h>
22
23 #include "layouthandler.h"
24 #include "homescreencontrolinterface.h"
25 #include "../src2/applicationlauncher.h"
26 #include "../src2/statusbarmodel.h"
27 #include "../src2/applicationmodel.h"
28
29 int main(int argc, char *argv[])
30 {
31     QGuiApplication a(argc, argv);
32
33     // used for application settings (QSettings)
34     QCoreApplication::setOrganizationDomain("LinuxFoundation");
35     QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
36     QCoreApplication::setApplicationName("HomeScreen");
37     QCoreApplication::setApplicationVersion("0.7.0");
38
39     qDebug("%s, v%s", QCoreApplication::applicationName().toStdString().c_str(), QCoreApplication::applicationVersion().toStdString().c_str());
40
41     qDBusRegisterMetaType<AppInfo>();
42     qDBusRegisterMetaType<QList<AppInfo> >();
43
44     qmlRegisterType<ApplicationLauncher>("HomeScreen", 1, 0, "ApplicationLauncher");
45     qmlRegisterType<ApplicationModel>("Home", 1, 0, "ApplicationModel");
46     qmlRegisterType<StatusBarModel>("HomeScreen", 1, 0, "StatusBarModel");
47
48     QQmlApplicationEngine engine;
49
50     LayoutHandler* layoutHandler = new LayoutHandler();
51
52     HomeScreenControlInterface* hsci = new HomeScreenControlInterface();
53     QObject::connect(hsci, SIGNAL(newRequestGetSurfaceStatus(int)), layoutHandler, SLOT(requestGetSurfaceStatus(int)));
54     QObject::connect(hsci, SIGNAL(newRequestsToBeVisibleApp(int)), layoutHandler, SLOT(makeMeVisible(int)));
55     QObject::connect(hsci, SIGNAL(newRequestRenderSurfaceToArea(int, int)), layoutHandler, SLOT(requestRenderSurfaceToArea(int,int)));
56     QObject::connect(hsci, SIGNAL(newRequestRenderSurfaceToAreaAllowed(int, int)), layoutHandler, SLOT(requestRenderSurfaceToAreaAllowed(int,int)));
57     QObject::connect(hsci, SIGNAL(newRequestSurfaceIdToFullScreen(int)), layoutHandler, SLOT(requestSurfaceIdToFullScreen(int)));
58
59     engine.rootContext()->setContextProperty("layoutHandler", layoutHandler);
60
61     engine.load(QUrl(QStringLiteral("qrc:/main.qml")));
62
63     return a.exec();
64 }