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.
34 lines
466 B
34 lines
466 B
#ifndef _GAMEENDDLG_H_
|
|
#define _GAMEENDDLG_H_
|
|
|
|
#include <kdialogbase.h>
|
|
|
|
class TQSlider;
|
|
class TQPushButton;
|
|
|
|
class GameEndDlg : public KDialogBase
|
|
{
|
|
Q_OBJECT
|
|
TQ_OBJECT
|
|
|
|
public:
|
|
GameEndDlg( TQWidget *parent );
|
|
virtual ~GameEndDlg();
|
|
|
|
int extraTurns();
|
|
|
|
private:
|
|
void init();
|
|
|
|
private slots:
|
|
void turnCountChange( int );
|
|
void slotYes();
|
|
|
|
private:
|
|
TQSlider *turnCount;
|
|
TQLabel *turnCountLbl;
|
|
};
|
|
|
|
#endif // _GAMEENDDLG_H_
|
|
|