Changeset 0621172ec1 in tspsg


Ignore:
Timestamp:
Jun 22, 2009, 5:42:56 PM (15 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
5587b87fac
Parents:
2394ede291
Message:

+ Status tip for font color selection button in settings.

  • Number of cities wasn't saved in wince version.
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • src/mainwindow.cpp

    r2394ede291 r0621172ec1  
    150150}
    151151
    152 #ifndef Q_OS_WINCE
    153152void MainWindow::closeEvent(QCloseEvent *event)
    154153{
     154        settings->setValue("NumCities",spinCities->value());
     155#ifndef Q_OS_WINCE
    155156        // Saving windows state
    156         settings->setValue("NumCities",spinCities->value());
    157157        if (settings->value("SavePos",false).toBool()) {
    158158                settings->beginGroup("MainWindow");
     
    164164                settings->endGroup();
    165165        }
     166#endif // Q_OS_WINCE
    166167        QMainWindow::closeEvent(event);
    167168}
    168 #endif // Q_OS_WINCE
  • src/mainwindow.h

    r2394ede291 r0621172ec1  
    4141public:
    4242        MainWindow(QWidget *parent = 0);
    43 #ifndef Q_OS_WINCE
    4443        void closeEvent(QCloseEvent *event);
    45 #endif // Q_OS_WINCE
    4644private slots:
    4745        void ChangeSettings();
  • tspsg.pri

    r2394ede291 r0621172ec1  
    1212
    1313#Header files
    14 HEADERS += src/mainwindow.h \
     14HEADERS += src/defines.h \
     15        src/mainwindow.h \
    1516        src/settingsdialog.h \
    1617        src/tspmodel.h \
  • ui/settingsdialog.ce.ui

    r2394ede291 r0621172ec1  
    196196        <item>
    197197         <widget class="QPushButton" name="buttonColor">
     198          <property name="statusTip">
     199           <string>Задать цвет шрифта, используемого при печати</string>
     200          </property>
    198201          <property name="text">
    199202           <string>&amp;Цвет...</string>
  • ui/settingsdialog.ui

    r2394ede291 r0621172ec1  
    285285                  <cursorShape>PointingHandCursor</cursorShape>
    286286                 </property>
     287                 <property name="statusTip">
     288                  <string>Задать цвет шрифта, используемого при печати</string>
     289                 </property>
    287290                 <property name="text">
    288291                  <string>&amp;Цвет...</string>
     
    454457 <resources>
    455458  <include location="../resources/tspsg.qrc"/>
    456   <include location="../resources/tspsg.qrc"/>
    457459 </resources>
    458460 <connections/>
Note: See TracChangeset for help on using the changeset viewer.