You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegames/katomic/configbox.h

37 lines
466 B

/* configbox.h
*
* 1999 (c) Cristian Tibirna (tibirna@kde.org)
*
*/
#ifndef CONFIGBOX_H
#define CONFIGBOX_H
#include <tqlabel.h>
#include <tqslider.h>
#include <tqlcdnumber.h>
#include <kdialogbase.h>
class ConfigBox : public KDialogBase
{
Q_OBJECT
public:
ConfigBox ( TQWidget *, const char* name );
~ConfigBox();
protected slots:
void slotOk();
signals:
void speedChanged();
private:
TQSlider *speed;
TQLCDNumber *disp;
};
#endif