123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- // checksum 0xfd0b version 0x20001
- /*
- This file was generated by the Mobile Qt Application wizard of Qt Creator.
- MainWindow is a convenience class containing mobile device specific code
- such as screen orientation handling.
- It is recommended not to modify this file, since newer versions of Qt Creator
- may offer an updated version of it.
- */
- #include "mainwindow.h"
- #include "ui_mainwindow.h"
- #include <QtCore/QCoreApplication>
- #if defined(Q_OS_SYMBIAN) && defined(ORIENTATIONLOCK)
- #include <eikenv.h>
- #include <eikappui.h>
- #include <aknenv.h>
- #include <aknappui.h>
- #endif // Q_OS_SYMBIAN && ORIENTATIONLOCK
- MainWindow::MainWindow(QWidget *parent)
- : QMainWindow(parent), ui(new Ui::MainWindow)
- {
- ui->setupUi(this);
- }
- MainWindow::~MainWindow()
- {
- delete ui;
- }
- void MainWindow::setOrientation(ScreenOrientation orientation)
- {
- #ifdef Q_OS_SYMBIAN
- if (orientation != ScreenOrientationAuto) {
- #if defined(ORIENTATIONLOCK)
- const CAknAppUiBase::TAppUiOrientation uiOrientation =
- (orientation == ScreenOrientationLockPortrait) ? CAknAppUi::EAppUiOrientationPortrait
- : CAknAppUi::EAppUiOrientationLandscape;
- CAknAppUi* appUi = dynamic_cast<CAknAppUi*> (CEikonEnv::Static()->AppUi());
- TRAPD(error,
- if (appUi)
- appUi->SetOrientationL(uiOrientation);
- );
- Q_UNUSED(error)
- #else // ORIENTATIONLOCK
- qWarning("'ORIENTATIONLOCK' needs to be defined on Symbian when locking the orientation.");
- #endif // ORIENTATIONLOCK
- }
- #elif defined(Q_WS_MAEMO_5)
- Qt::WidgetAttribute attribute;
- switch (orientation) {
- case ScreenOrientationLockPortrait:
- attribute = Qt::WA_Maemo5PortraitOrientation;
- break;
- case ScreenOrientationLockLandscape:
- attribute = Qt::WA_Maemo5LandscapeOrientation;
- break;
- case ScreenOrientationAuto:
- default:
- attribute = Qt::WA_Maemo5AutoOrientation;
- break;
- }
- setAttribute(attribute, true);
- #else // Q_OS_SYMBIAN
- Q_UNUSED(orientation);
- #endif // Q_OS_SYMBIAN
- }
- void MainWindow::showExpanded()
- {
- #ifdef Q_OS_SYMBIAN
- showFullScreen();
- #elif defined(Q_WS_MAEMO_5) || defined(Q_WS_MAEMO_6)
- showMaximized();
- #else
- show();
- #endif
- }
|