diff options
Diffstat (limited to 'katomic/configbox.h')
-rw-r--r-- | katomic/configbox.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/katomic/configbox.h b/katomic/configbox.h new file mode 100644 index 00000000..0acdfd0d --- /dev/null +++ b/katomic/configbox.h @@ -0,0 +1,35 @@ +/* configbox.h + * + * 1999 (c) Cristian Tibirna ([email protected]) + * + */ + +#ifndef CONFIGBOX_H +#define CONFIGBOX_H + +#include <qlabel.h> +#include <qslider.h> +#include <qlcdnumber.h> + +#include <kdialogbase.h> + +class ConfigBox : public KDialogBase +{ + Q_OBJECT + +public: + ConfigBox ( QWidget *, const char* name ); + ~ConfigBox(); + +protected slots: + void slotOk(); + +signals: + void speedChanged(); + +private: + QSlider *speed; + QLCDNumber *disp; +}; + +#endif |