blob: 7c86a39c590d17a354edf7a55ff1d951ff40fe33 (
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
|
#ifndef __MY_TOP_WIDGET_H
#define __MY_TOP_WIDGET_H
#include <kmainwindow.h>
class PlayerInfo;
class MyMainView;
class MyTopLevelWidget:public KMainWindow
{
Q_OBJECT
public:
MyTopLevelWidget();
void start();
private slots:
void setStatusText(const TQString & text,int id);
void keySetup();
void energy(int pn,int en);
void hitPoints(int pn,int hp);
void wins(int pn,int w);
protected:
void initActions( );
void initStatusBar( );
void initGameWidgets();
private:
PlayerInfo *playerinfo[2];
MyMainView *playfield;
};
#endif
|