diff options
Diffstat (limited to 'konquest/newgamedlg.h')
-rw-r--r-- | konquest/newgamedlg.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/konquest/newgamedlg.h b/konquest/newgamedlg.h new file mode 100644 index 00000000..ed2d48d6 --- /dev/null +++ b/konquest/newgamedlg.h @@ -0,0 +1,51 @@ +#ifndef _NEWGAMEDLG_H_ +#define _NEWGAMEDLG_H_ + +#include <kdialogbase.h> + +#include "gamecore.h" +#include "minimap.h" + +class NewGameDlgUI; + +/************************************************************************* + New Game Dialog + ************************************************************************/ + +class NewGameDlg : public KDialogBase +{ + Q_OBJECT + +public: + NewGameDlg( QWidget *parent, Map *map, PlayerList *playerList, + Player *neutralPlayer, PlanetList *planetList ); + + int turns( void ); + + void save(); + +protected slots: + void slotPlayerCount(int playerCount); + void slotNewMap(); + void slotTurns(); + void slotNewPlayer(); + void slotAddPlayer(); + void slotDefault(); + void slotOk(); + +private: + void init(); + void updateMiniMap(); + void updateLabels(); + void setPlayerCount(int playerCount); + +private: + PlayerList *plrList; + PlanetList *plnetList; + Player *neutral; + Map *map; + + NewGameDlgUI *w; +}; + +#endif |