From bd0f3345a938b35ce6a12f6150373b0955b8dd12 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 10 Jul 2011 15:24:15 -0500 Subject: Add Qt3 development HEAD version --- doc/html/t14-main-cpp.html | 64 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 doc/html/t14-main-cpp.html (limited to 'doc/html/t14-main-cpp.html') diff --git a/doc/html/t14-main-cpp.html b/doc/html/t14-main-cpp.html new file mode 100644 index 0000000..9d50260 --- /dev/null +++ b/doc/html/t14-main-cpp.html @@ -0,0 +1,64 @@ + + + + + +t14/main.cpp Example File + + + + + + + +
+ +Home + | +All Classes + | +Main Classes + | +Annotated + | +Grouped Classes + | +Functions +

t14/main.cpp Example File

+ + +
/****************************************************************
+**
+** Qt tutorial 14
+**
+****************************************************************/
+
+#include <qapplication.h>
+
+#include "gamebrd.h"
+
+
+int main( int argc, char **argv )
+{
+    QApplication::setColorSpec( QApplication::CustomColor );
+    QApplication a( argc, argv );
+
+    GameBoard gb;
+    gb.setGeometry( 100, 100, 500, 355 );
+    a.setMainWidget( &gb );
+    gb.show();
+    return a.exec();
+}
+
+


+ +
Copyright © 2007 +TrolltechTrademarks +
Qt 3.3.8
+
+ -- cgit v1.2.3