Changeset b2bf8e3b6b in tspsg for src/settingsdialog.cpp


Ignore:
Timestamp:
Feb 25, 2010, 9:48:46 PM (14 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
278bc7818f
Parents:
6beb157497
Message:

+ Added SIP show/hide handling under wince.

  • Renamed translation files to follow common conventions.
  • Language name is now stored in the translation file. No need for language.ini anymore.
  • Updated translations.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/settingsdialog.cpp

    r6beb157497 rb2bf8e3b6b  
    4343
    4444#if defined(Q_OS_WINCE) || defined(Q_OS_SYMBIAN)
    45         // Layout helper elements
    46 QVBoxLayout *vbox1;
    47 QHBoxLayout *hbox1;
     45QVBoxLayout *vbox1; // Layout helper
     46
     47#ifdef Q_OS_WINCE
     48        // On screens with small height when SIP is shown and the window is resized
     49        // there is not enought space for all elements.
     50        //  So we show scrollbars to be able to access them.
     51QScrollArea *scrollArea = new QScrollArea(this);
     52        scrollArea->setFrameShape(QFrame::NoFrame);
     53        scrollArea->setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
     54        scrollArea->setWidgetResizable(true);
     55        scrollArea->setWidget(bgWhite);
     56#endif // Q_OS_WINCE
    4857
    4958        bgWhite->layout()->setMargin(0);
    50 
    51         // Bottom part (with grey bg)
    52         hbox1 = new QHBoxLayout(bgGrey);
    53         hbox1->setMargin(6);
    54         hbox1->setSpacing(6);
    55         hbox1->addWidget(buttonHelp);
    56         hbox1->addStretch();
    5759
    5860        // Central layout
     
    6062        vbox1->setMargin(0);
    6163        vbox1->setSpacing(0);
     64#ifdef Q_OS_WINCE
     65        vbox1->addWidget(scrollArea);
     66#else
    6267        vbox1->addWidget(bgWhite);
    63         vbox1->addWidget(lineHorizontal);
     68#endif // Q_OS_WINCE
    6469        vbox1->addWidget(bgGrey);
     70        setLayout(vbox1);
    6571#else
    6672        // Layout helper elements
    6773QVBoxLayout *vbox1, *vbox2;
    68 QHBoxLayout *hbox1, *hbox2;
     74QHBoxLayout *hbox1;
    6975
    7076        if (QtWin::isCompositionEnabled()) {
     
    8995        imgIcon->setObjectName("imgIcon");
    9096        imgIcon->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Expanding);
    91         imgIcon->setFrameShape(QFrame::Panel);
    92         imgIcon->setLineWidth(0);
     97        imgIcon->setFrameShape(QFrame::NoFrame);
    9398        imgIcon->setPixmap(QPixmap(":/images/icons/preferences_system.png"));
    9499        imgIcon->setStyleSheet("background-color: #0080C0; padding-top: 11px;");
     
    128133#endif // Q_OS_WIN32
    129134
    130         // Bottom part (with grey bg)
    131         hbox2 = new QHBoxLayout(bgGrey);
    132         hbox2->setMargin(6);
    133         hbox2->setSpacing(6);
    134         hbox2->addWidget(buttonHelp);
    135         hbox2->addWidget(labelHint);
    136         hbox2->addWidget(buttonBox);
     135        // Inserting label for hints to the bottom part (with grey bg)
     136        buttons->insertWidget(buttons->indexOf(buttonHelp) + 1, labelHint, 1);
    137137
    138138        // Central layout
     
    141141        vbox2->setSpacing(0);
    142142        vbox2->addLayout(hbox1);
    143         vbox2->addWidget(lineHorizontal);
    144143        vbox2->addWidget(bgGrey);
    145 #endif // Q_OS_WINCE
    146 
     144        setLayout(vbox2);
     145#endif // Q_OS_WINCE
     146
     147#ifdef Q_OS_WINCE
     148        currentGeometry = QApplication::desktop()->availableGeometry(0);
     149        // We need to react to SIP show/hide and resize the window appropriately
     150        connect(QApplication::desktop(), SIGNAL(workAreaResized(int)), SLOT(desktopResized(int)));
     151#endif // Q_OS_WINCE
    147152        connect(spinRandMin,SIGNAL(valueChanged(int)),this,SLOT(spinRandMinValueChanged(int)));
    148153        connect(buttonFont,SIGNAL(clicked()),this,SLOT(buttonFontClicked()));
     
    211216
    212217/*!
    213  *
     218 * \brief Indicates whether and how the translucency setting was changed
     219 * \retval -1 the translucency was \em disabled.
     220 * \retval  0 the translucency was <em>not changed</em>.
     221 * \retval  1 the translucency was \em enabled.
    214222 */
    215223qint8 SettingsDialog::translucencyChanged() const
     
    277285}
    278286
     287#ifdef Q_OS_WINCE
     288void SettingsDialog::desktopResized(int screen)
     289{
     290        if (screen != 0)
     291                return;
     292
     293QRect availableGeometry = QApplication::desktop()->availableGeometry(0);
     294        if (currentGeometry != availableGeometry) {
     295                /*!
     296                 * \hack HACK: This hack checks whether \link QDesktopWidget::availableGeometry() availableGeometry()\endlink's \c top + \c hegiht = \link QDesktopWidget::screenGeometry() screenGeometry()\endlink's \c height.
     297                 *  If \c true, the window gets maximized. If we used \c setGeometry() in this case, the bottom of the
     298                 *  window would end up being behind the soft buttons. Is this a bug in Qt or Windows Mobile?
     299                 */
     300                if ((availableGeometry.top() + availableGeometry.height()) == QApplication::desktop()->screenGeometry().height()) {
     301                        setWindowState(windowState() | Qt::WindowMaximized);
     302                } else {
     303                        if (windowState() & Qt::WindowMaximized)
     304                                setWindowState(windowState() ^ Qt::WindowMaximized);
     305                        setGeometry(availableGeometry);
     306                }
     307        }
     308        currentGeometry = availableGeometry;
     309}
     310#endif // Q_OS_WINCE
     311
    279312void SettingsDialog::spinRandMinValueChanged(int val) {
    280313        spinRandMax->setMinimum(val);
Note: See TracChangeset for help on using the changeset viewer.