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.
41 lines
693 B
41 lines
693 B
13 years ago
|
/****************************************************************
|
||
|
**
|
||
|
** Definition of GameBoard class, TQt tutorial 13
|
||
|
**
|
||
|
****************************************************************/
|
||
|
|
||
|
#ifndef GAMEBRD_H
|
||
|
#define GAMEBRD_H
|
||
|
|
||
|
#include <qwidget.h>
|
||
|
|
||
|
class TQPushButton;
|
||
|
class LCDRange;
|
||
|
class TQLCDNumber;
|
||
|
class CannonField;
|
||
|
|
||
|
#include "lcdrange.h"
|
||
|
#include "cannon.h"
|
||
|
|
||
|
|
||
|
class GameBoard : public TQWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
GameBoard( TQWidget *parent=0, const char *name=0 );
|
||
|
|
||
|
protected slots:
|
||
|
void fire();
|
||
|
void hit();
|
||
|
void missed();
|
||
|
void newGame();
|
||
|
|
||
|
private:
|
||
|
TQLCDNumber *hits;
|
||
|
TQLCDNumber *shotsLeft;
|
||
|
CannonField *cannonField;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // GAMEBRD_H
|