Last change
on this file since 8 was 2, checked in by Rick van der Zwet, 15 years ago |
Initial import of data of old repository ('data') worth keeping (e.g. tracking
means of URL access statistics)
|
-
Property svn:executable
set to
*
|
File size:
1.1 KB
|
Rev | Line | |
---|
[2] | 1 | #ifndef OPTIONSFORM_H
|
---|
| 2 | #define OPTIONSFORM_H
|
---|
| 3 |
|
---|
| 4 | #include <qvariant.h>
|
---|
| 5 | #include <qdialog.h>
|
---|
| 6 |
|
---|
| 7 | class QVBoxLayout;
|
---|
| 8 | class QHBoxLayout;
|
---|
| 9 | class QGridLayout;
|
---|
| 10 | class QSpacerItem;
|
---|
| 11 | class QLabel;
|
---|
| 12 | class QSlider;
|
---|
| 13 | class QLCDNumber;
|
---|
| 14 | class QButtonGroup;
|
---|
| 15 | class QRadioButton;
|
---|
| 16 | class QPushButton;
|
---|
| 17 |
|
---|
| 18 | class OptionsForm : public QDialog
|
---|
| 19 | {
|
---|
| 20 | Q_OBJECT
|
---|
| 21 |
|
---|
| 22 | public:
|
---|
| 23 | OptionsForm( QWidget* parent = 0, const char* name = 0, bool modal = TRUE, WFlags fl = 0 );
|
---|
| 24 | ~OptionsForm();
|
---|
| 25 |
|
---|
| 26 | QLabel* stapelsLabel;
|
---|
| 27 | QSlider* stapelsSlider;
|
---|
| 28 | QLCDNumber* stapelsLCDNumber;
|
---|
| 29 | QLabel* stokjesLabel;
|
---|
| 30 | QSlider* stokjesSlider;
|
---|
| 31 | QLCDNumber* stokjesLCDNumber;
|
---|
| 32 | QButtonGroup* niveauButtonGroup;
|
---|
| 33 | QRadioButton* niveau1RadioButton;
|
---|
| 34 | QRadioButton* niveau2RadioButton;
|
---|
| 35 | QPushButton* cancelPushButton;
|
---|
| 36 | QPushButton* okPushButton;
|
---|
| 37 |
|
---|
| 38 | protected:
|
---|
| 39 | QVBoxLayout* optionsFormLayout;
|
---|
| 40 | QSpacerItem* stapels2stokjesSpacer;
|
---|
| 41 | QSpacerItem* stokjes2niveauSpacer;
|
---|
| 42 | QSpacerItem* niveau2buttonSpacer;
|
---|
| 43 | QHBoxLayout* stapelLayout;
|
---|
| 44 | QHBoxLayout* stokjesLayout;
|
---|
| 45 | QHBoxLayout* buttonLayout;
|
---|
| 46 | QSpacerItem* cancel2ok;
|
---|
| 47 |
|
---|
| 48 | protected slots:
|
---|
| 49 | virtual void languageChange();
|
---|
| 50 |
|
---|
| 51 | };
|
---|
| 52 |
|
---|
| 53 | #endif // OPTIONSFORM_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.