Changeset 9eb63a1598 in tspsg for src/settingsdialog.h


Ignore:
Timestamp:
Dec 20, 2010, 9:53:45 PM (13 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
b8a2a118c4
Parents:
b59e2ea0b1
git-author:
Oleksii Serdiuk <contacts@…> (12/20/10 21:53:45)
git-committer:
Oleksii Serdiuk <contacts@…> (06/29/12 19:45:58)
Message:

Converted file formatting to have spaces instead of tabs. No code changes...

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/settingsdialog.h

    rb59e2ea0b1 r9eb63a1598  
    3939class SettingsDialog: public QDialog, Ui::SettingsDialog
    4040{
    41         Q_OBJECT
     41    Q_OBJECT
    4242public:
    43         SettingsDialog(QWidget *parent = 0);
    44         bool colorChanged() const;
    45         bool fontChanged() const;
    46         qint8 translucencyChanged() const;
     43    SettingsDialog(QWidget *parent = 0);
     44    bool colorChanged() const;
     45    bool fontChanged() const;
     46    qint8 translucencyChanged() const;
    4747
    4848private:
    49         bool _newFont;
    50         bool _newColor;
    51         qint8 _translucency;
     49    bool _newFont;
     50    bool _newColor;
     51    qint8 _translucency;
    5252
    53         QColor color;
    54         QFont font;
     53    QColor color;
     54    QFont font;
    5555
    56         QSettings *settings;
    57         QHBoxLayout *layoutCitiesLimit;
     56    QSettings *settings;
     57    QHBoxLayout *layoutCitiesLimit;
    5858#ifdef Q_WS_WIN32
    59         QCheckBox *cbUseTranslucency;
     59    QCheckBox *cbUseTranslucency;
    6060#endif // Q_WS_WIN32
    61         QCheckBox *cbCheck4Updates;
    62         QSpinBox *spinUpdateCheckInterval;
     61    QCheckBox *cbCheck4Updates;
     62    QSpinBox *spinUpdateCheckInterval;
    6363#ifndef QT_NO_PRINTER
    64         QCheckBox *cbHQGraph;
     64    QCheckBox *cbHQGraph;
    6565#endif
    6666#ifdef Q_WS_WINCE_WM
    67         QRect currentGeometry;
     67    QRect currentGeometry;
    6868#elif !defined(HANDHELD)
    69         QCheckBox *cbSaveState;
    70         QLabel *imgIcon;
    71         QFrame *lineVertical;
    72         QLabel *labelHint;
     69    QCheckBox *cbSaveState;
     70    QLabel *imgIcon;
     71    QFrame *lineVertical;
     72    QLabel *labelHint;
    7373
    7474#ifndef QT_NO_STATUSTIP
    75         bool event(QEvent *ev);
     75    bool event(QEvent *ev);
    7676#endif // QT_NO_STATUSTIP
    7777#endif // Q_WS_WINCE_WM
    7878
    7979private slots:
    80         void accept();
    81         void buttonColorClicked();
    82         void buttonFontClicked();
     80    void accept();
     81    void buttonColorClicked();
     82    void buttonFontClicked();
    8383#ifdef Q_WS_WINCE_WM
    84         void desktopResized(int screen);
    85         void showEvent(QShowEvent *ev);
     84    void desktopResized(int screen);
     85    void showEvent(QShowEvent *ev);
    8686#endif // Q_WS_WINCE_WM
    87         void spinRandMinValueChanged(int val);
     87    void spinRandMinValueChanged(int val);
    8888};
    8989
Note: See TracChangeset for help on using the changeset viewer.