This repository has been archived by the owner on Jan 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
cameraapplication.cpp
91 lines (79 loc) · 3.01 KB
/
cameraapplication.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
* Copyright (C) 2012 Canonical, Ltd.
*
* Authors:
* Ugo Riboni <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "cameraapplication.h"
#include <QtCore/QDebug>
#include <QtCore/QLibrary>
#include <QQmlContext>
#include <QQmlEngine>
#include <QScreen>
#include <QtGui/QGuiApplication>
#include "config.h"
static void printUsage(const QStringList& arguments)
{
qDebug() << "usage:"
<< arguments.at(0).toUtf8().constData()
<< "[-testability]";
}
CameraApplication::CameraApplication(int &argc, char **argv)
: QGuiApplication(argc, argv)
{
// The testability driver is only loaded by QApplication but not by QGuiApplication.
// However, QApplication depends on QWidget which would add some unneeded overhead => Let's load the testability driver on our own.
if (arguments().contains(QLatin1String("-testability")) ||
qgetenv("QT_LOAD_TESTABILITY") == "1") {
QLibrary testLib(QLatin1String("qttestability"));
if (testLib.load()) {
typedef void (*TasInitialize)(void);
TasInitialize initFunction = (TasInitialize)testLib.resolve("qt_testability_init");
if (initFunction) {
initFunction();
} else {
qCritical("Library qttestability resolve failed!");
}
} else {
qCritical("Library qttestability load failed!");
}
}
}
CameraApplication::~CameraApplication()
{
}
bool CameraApplication::isDesktopMode() const
{
// Assume that platformName (QtUbuntu) with ubuntu
// in name means it's running on device
// TODO: replace this check with SDK call for formfactor
QString platform = QGuiApplication::platformName();
return !((platform == "ubuntu") || (platform == "ubuntumirclient"));
}
bool CameraApplication::setup()
{
QGuiApplication::primaryScreen()->setOrientationUpdateMask(Qt::PortraitOrientation |
Qt::LandscapeOrientation |
Qt::InvertedPortraitOrientation |
Qt::InvertedLandscapeOrientation);
m_engine.reset(new QQmlApplicationEngine());
m_engine->rootContext()->setContextProperty("application", this);
m_engine->setBaseUrl(QUrl::fromLocalFile(cameraAppDirectory()));
m_engine->addImportPath(cameraAppImportDirectory());
qDebug() << "Import path added" << cameraAppImportDirectory();
qDebug() << "Camera app directory" << cameraAppDirectory();
m_engine->load(QUrl::fromLocalFile(sourceQml()));
return true;
}