80a063d4479ee74a8aaae559937de1a956a02d30
[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
22 int main(int argc, char *argv[])
23 {
24     // allow only one instance of this application
25     /*QSharedMemory appInstance;
26     appInstance.setKey("HomeScreen");
27     if (!appInstance.create(1))
28     {
29         qDebug("Only one instance of the Home Screen App allowed!");
30         exit(-1);
31     }*/
32
33     QApplication a(argc, argv);
34
35     // used for application settings (QSettings)
36     QCoreApplication::setOrganizationDomain("LinuxFoundation");
37     QCoreApplication::setOrganizationName("AutomotiveGradeLinux");
38     QCoreApplication::setApplicationName("HomeScreen");
39     QCoreApplication::setApplicationVersion("0.3.3");
40
41     qDebug("%s, v%s", QCoreApplication::applicationName().toStdString().c_str(), QCoreApplication::applicationVersion().toStdString().c_str());
42
43     MainWindow w;
44     w.show();
45 #ifdef __arm__
46     // the WindowManager positions the surface correctly
47 #endif
48 #ifdef __i386__
49     w.move(0, 0);
50 #endif
51
52
53 #ifdef __arm__
54     qDebug("Running on ARM architecture");
55 #endif
56 #ifdef __i386__
57     qDebug("Running on x86 architecture");
58 #endif
59
60     return a.exec();
61 }