Changeset 65 in tspsg-svn for trunk/src/settingsdialog.h
- Timestamp:
- Oct 20, 2009, 9:38:01 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/settingsdialog.h
r64 r65 1 /* 2 * TSPSG: TSP Solver and Generator 3 * Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name> 1 /*! 2 * \class SettingsDialog 3 * \brief Class for handling Settings Dialog UI and logic. 4 * \author Copyright © 2007-2009 Lёppa <contacts[at]oleksii[dot]name> 4 5 * 5 6 * $Id$ 6 7 * $URL$ 8 * 9 * <b>TSPSG: TSP Solver and Generator</b> 7 10 * 8 11 * This file is part of TSPSG. … … 29 32 #include "ui_settingsdialog.h" 30 33 31 class SettingsDialog: public QDialog, publicUi::SettingsDialog34 class SettingsDialog: public QDialog, Ui::SettingsDialog 32 35 { 33 36 Q_OBJECT … … 36 39 bool colorChanged() const; 37 40 bool fontChanged() const; 38 39 #ifndef Q_OS_WINCE40 QCheckBox *cbSaveState;41 QLabel *imgIcon;42 QLabel *labelHint;43 QFrame *lineVertical;44 #endif // Q_OS_WINCE45 41 46 42 private: … … 52 48 #ifndef Q_OS_WINCE 53 49 bool event(QEvent *); 54 #endif 50 51 QCheckBox *cbSaveState; 52 QLabel *imgIcon; 53 QLabel *labelHint; 54 QFrame *lineVertical; 55 #endif // Q_OS_WINCE 55 56 56 57 private slots: … … 58 59 void buttonColorClicked(); 59 60 void buttonFontClicked(); 60 void spinRandMinValueChanged(int val) { spinRandMax->setMinimum(val); }61 void spinRandMinValueChanged(int); 61 62 }; 62 63
Note: See TracChangeset
for help on using the changeset viewer.