Git test
[qwp] / qmlapplicationviewer / qmlapplicationviewer.cpp
1 // checksum 0x28c7 version 0x2000a
2 /*
3   This file was generated by the Qt Quick Application wizard of Qt Creator.
4   QmlApplicationViewer is a convenience class containing mobile device specific
5   code such as screen orientation handling. Also QML paths and debugging are
6   handled here.
7   It is recommended not to modify this file, since newer versions of Qt Creator
8   may offer an updated version of it.
9 */
10
11 #include "qmlapplicationviewer.h"
12
13 #include <QtCore/QCoreApplication>
14 #include <QtCore/QDir>
15 #include <QtCore/QFileInfo>
16 #include <QtDeclarative/QDeclarativeComponent>
17 #include <QtDeclarative/QDeclarativeEngine>
18 #include <QtDeclarative/QDeclarativeContext>
19
20 #if defined(QMLJSDEBUGGER)
21 #include <qt_private/qdeclarativedebughelper_p.h>
22 #endif
23
24 #if defined(QMLJSDEBUGGER) && !defined(NO_JSDEBUGGER)
25 #include <jsdebuggeragent.h>
26 #endif
27 #if defined(QMLJSDEBUGGER) && !defined(NO_QMLOBSERVER)
28 #include <qdeclarativeviewobserver.h>
29 #endif
30
31 #if defined(Q_OS_SYMBIAN) && defined(ORIENTATIONLOCK)
32 #include <eikenv.h>
33 #include <eikappui.h>
34 #include <aknenv.h>
35 #include <aknappui.h>
36 #endif // Q_OS_SYMBIAN && ORIENTATIONLOCK
37
38 #if defined(QMLJSDEBUGGER)
39
40 // Enable debugging before any QDeclarativeEngine is created
41 struct QmlJsDebuggingEnabler
42 {
43     QmlJsDebuggingEnabler()
44     {
45         QDeclarativeDebugHelper::enableDebugging();
46     }
47 };
48
49 // Execute code in constructor before first QDeclarativeEngine is instantiated
50 static QmlJsDebuggingEnabler enableDebuggingHelper;
51
52 #endif // QMLJSDEBUGGER
53
54 class QmlApplicationViewerPrivate
55 {
56     QString mainQmlFile;
57     friend class QmlApplicationViewer;
58     static QString adjustPath(const QString &path);
59 };
60
61 QString QmlApplicationViewerPrivate::adjustPath(const QString &path)
62 {
63 #ifdef Q_OS_UNIX
64 #ifdef Q_OS_MAC
65     if (!QDir::isAbsolutePath(path))
66         return QCoreApplication::applicationDirPath()
67                 + QLatin1String("/../Resources/") + path;
68 #else
69     const QString pathInShareDir = QCoreApplication::applicationDirPath()
70         + QLatin1String("/../share/")
71         + QFileInfo(QCoreApplication::applicationFilePath()).fileName()
72         + QLatin1Char('/') + path;
73     if (QFileInfo(pathInShareDir).exists())
74         return pathInShareDir;
75 #endif
76 #endif
77     return path;
78 }
79
80 QmlApplicationViewer::QmlApplicationViewer(QWidget *parent) :
81     QDeclarativeView(parent),
82     m_d(new QmlApplicationViewerPrivate)
83 {
84     connect(engine(), SIGNAL(quit()), SLOT(close()));
85     setResizeMode(QDeclarativeView::SizeRootObjectToView);
86 #if defined(QMLJSDEBUGGER) && !defined(NO_JSDEBUGGER)
87     new QmlJSDebugger::JSDebuggerAgent(engine());
88 #endif
89 #if defined(QMLJSDEBUGGER) && !defined(NO_QMLOBSERVER)
90     new QmlJSDebugger::QDeclarativeViewObserver(this, parent);
91 #endif
92 }
93
94 QmlApplicationViewer::~QmlApplicationViewer()
95 {
96     delete m_d;
97 }
98
99 void QmlApplicationViewer::setMainQmlFile(const QString &file)
100 {
101     m_d->mainQmlFile = QmlApplicationViewerPrivate::adjustPath(file);
102     setSource(QUrl::fromLocalFile(m_d->mainQmlFile));
103 }
104
105 void QmlApplicationViewer::addImportPath(const QString &path)
106 {
107     engine()->addImportPath(QmlApplicationViewerPrivate::adjustPath(path));
108 }
109
110 void QmlApplicationViewer::setOrientation(ScreenOrientation orientation)
111 {
112 #ifdef Q_OS_SYMBIAN
113     if (orientation != ScreenOrientationAuto) {
114 #if defined(ORIENTATIONLOCK)
115         const CAknAppUiBase::TAppUiOrientation uiOrientation =
116                 (orientation == ScreenOrientationLockPortrait) ? CAknAppUi::EAppUiOrientationPortrait
117                     : CAknAppUi::EAppUiOrientationLandscape;
118         CAknAppUi* appUi = dynamic_cast<CAknAppUi*> (CEikonEnv::Static()->AppUi());
119         TRAPD(error,
120             if (appUi)
121                 appUi->SetOrientationL(uiOrientation);
122         );
123         Q_UNUSED(error)
124 #else // ORIENTATIONLOCK
125         qWarning("'ORIENTATIONLOCK' needs to be defined on Symbian when locking the orientation.");
126 #endif // ORIENTATIONLOCK
127     }
128 #elif defined(Q_WS_MAEMO_5)
129     Qt::WidgetAttribute attribute;
130     switch (orientation) {
131     case ScreenOrientationLockPortrait:
132         attribute = Qt::WA_Maemo5PortraitOrientation;
133         break;
134     case ScreenOrientationLockLandscape:
135         attribute = Qt::WA_Maemo5LandscapeOrientation;
136         break;
137     case ScreenOrientationAuto:
138     default:
139         attribute = Qt::WA_Maemo5AutoOrientation;
140         break;
141     }
142     setAttribute(attribute, true);
143 #else // Q_OS_SYMBIAN
144     Q_UNUSED(orientation);
145 #endif // Q_OS_SYMBIAN
146 }
147
148 void QmlApplicationViewer::showExpanded()
149 {
150 #ifdef Q_OS_SYMBIAN
151     showFullScreen();
152 #elif defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6)
153     showMaximized();
154 #else
155     show();
156 #endif
157 }