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