summaryrefslogtreecommitdiffstats
path: root/konquest/mainwin.h
blob: 36c310388c924788bf9b2603d324cccbc3183d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef _MAIN_WIN_H
#define _MAIN_WIN_H

#include <tdemainwindow.h>

#include "gameboard.h"

class ConquestMap;
class PlanetStatusTable;

class MainWindow : public TDEMainWindow
{
    Q_OBJECT
  

public:
    MainWindow();
    ~MainWindow();

protected:
    void setupTDEAction();
    void setupGameBoard();

private:
    GameBoard *gameBoard;
    TDEAction *endAction, *measureAction, *standingAction, *fleetAction;

private slots:
    void gameStateChange( GameState );

};

#endif