From d796c9dd933ab96ec83b9a634feedd5d32e1ba3f Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Tue, 8 Nov 2011 12:31:36 -0600 Subject: Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731 --- doc/html/t14-gamebrd-h.html | 82 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 doc/html/t14-gamebrd-h.html (limited to 'doc/html/t14-gamebrd-h.html') diff --git a/doc/html/t14-gamebrd-h.html b/doc/html/t14-gamebrd-h.html new file mode 100644 index 000000000..a03715ea8 --- /dev/null +++ b/doc/html/t14-gamebrd-h.html @@ -0,0 +1,82 @@ + + + + + +t14/gamebrd.h Example File + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

t14/gamebrd.h Example File

+ + +
/****************************************************************
+**
+** Definition of GameBoard class, TQt tutorial 14
+**
+****************************************************************/
+
+#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
+
+


+ +
Copyright © 2007 +TrolltechTrademarks +
TQt 3.3.8
+
+ -- cgit v1.2.1