1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #include "mainwindow.h"
- #include "ui_mainwindow.h"
- #include <QtCore/QCoreApplication>
- MainWindow::MainWindow(QWidget *parent)
- : QMainWindow(parent), ui(new Ui::MainWindow)
- {
- ui->setupUi(this);
- m_timer.setInterval( 1000 * 60 );
- connect( &m_timer, SIGNAL(timeout()), this, SLOT(UpdateTime()) );
- connect( ui->dial_h, SIGNAL(valueChanged(int)), this, SLOT(UpdateTime()));
- connect( ui->dial_m, SIGNAL(valueChanged(int)), this, SLOT(UpdateTime()));
- m_timer.start();
- UpdateTime();
- }
- MainWindow::~MainWindow()
- {
- delete ui;
- }
- void MainWindow::UpdateTime()
- {
- QTime cur = QTime::currentTime();
- ui->timeEdit_mobile->setTime( cur );
- QTime tm( ui->spinBox_h->value(), ui->spinBox_m->value() );
- int tt = QTime().secsTo( tm );
- ui->timeEdit_result->setTime( cur.addSecs( tt ) );
- }
- void MainWindow::setOrientation(ScreenOrientation orientation)
- {
- #if defined(Q_OS_SYMBIAN)
- // If the version of Qt on the device is < 4.7.2, that attribute won't work
- if (orientation != ScreenOrientationAuto) {
- const QStringList v = QString::fromAscii(qVersion()).split(QLatin1Char('.'));
- if (v.count() == 3 && (v.at(0).toInt() << 16 | v.at(1).toInt() << 8 | v.at(2).toInt()) < 0x040702) {
- qWarning("Screen orientation locking only supported with Qt 4.7.2 and above");
- return;
- }
- }
- #endif // Q_OS_SYMBIAN
- Qt::WidgetAttribute attribute;
- switch (orientation) {
- #if QT_VERSION < 0x040702
- // Qt < 4.7.2 does not yet have the Qt::WA_*Orientation attributes
- case ScreenOrientationLockPortrait:
- attribute = static_cast<Qt::WidgetAttribute>(128);
- break;
- case ScreenOrientationLockLandscape:
- attribute = static_cast<Qt::WidgetAttribute>(129);
- break;
- default:
- case ScreenOrientationAuto:
- attribute = static_cast<Qt::WidgetAttribute>(130);
- break;
- #else // QT_VERSION < 0x040702
- case ScreenOrientationLockPortrait:
- attribute = Qt::WA_LockPortraitOrientation;
- break;
- case ScreenOrientationLockLandscape:
- attribute = Qt::WA_LockLandscapeOrientation;
- break;
- default:
- case ScreenOrientationAuto:
- attribute = Qt::WA_AutoOrientation;
- break;
- #endif // QT_VERSION < 0x040702
- };
- setAttribute(attribute, true);
- }
- void MainWindow::showExpanded()
- {
- #if defined(Q_OS_SYMBIAN) || defined(Q_WS_SIMULATOR)
- showFullScreen();
- #elif defined(Q_WS_MAEMO_5)
- showMaximized();
- #else
- show();
- #endif
- }
|