264468b12b708c4c2289c77c5d21c6792f6df845
[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 "mainwindow.h"
18 #include <QApplication>
19 #include <QSysInfo>
20 //#include <QSharedMemory>
21 #include <QSurfaceFormat>
22
23 int main(int argc, char *argv[])
24 {
25     // allow only one instance of this application
26     /*QSharedMemory appInstance;
27     appInstance.setKey("HomeScreen");
28     if (!appInstance.create(1))
29     {
30         qDebug("Only one instance of the Home Screen App allowed!");
31         exit(-1);
32     }*/
33
34     QApplication a(argc, argv);
35
36     // used for application settings (QSettings)
37     QCoreApplication::setOrganizationDomain("LinuxFoundation");
38     QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
39     QCoreApplication::setApplicationName("HomeScreen");
40     QCoreApplication::setApplicationVersion("0.3.0");
41
42     QSurfaceFormat format;
43     format.setDepthBufferSize(16);
44     format.setStencilBufferSize(8);
45
46     MainWindow w;
47     w.show();
48 #ifdef __arm__
49     // trigger wayland compositor to position the surface correctly
50 #endif
51 #ifdef __i386__
52     w.move(0, 0);
53 #endif
54
55
56 #ifdef __arm__
57     qDebug("Running on ARM architecture");
58 #endif
59 #ifdef __i386__
60     qDebug("Running on x86 architecture");
61 #endif
62
63     return a.exec();
64 }