summaryrefslogtreecommitdiffstats
path: root/tutorial/t4
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2011-11-08 12:31:36 -0600
committerTimothy Pearson <[email protected]>2011-11-08 12:31:36 -0600
commitd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (patch)
tree6e3dcca4f77e20ec8966c666aac7c35bd4704053 /tutorial/t4
downloadtqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.tar.gz
tqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.zip
Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731
Diffstat (limited to 'tutorial/t4')
-rw-r--r--tutorial/t4/main.cpp42
-rw-r--r--tutorial/t4/t4.pro6
2 files changed, 48 insertions, 0 deletions
diff --git a/tutorial/t4/main.cpp b/tutorial/t4/main.cpp
new file mode 100644
index 000000000..04562d076
--- /dev/null
+++ b/tutorial/t4/main.cpp
@@ -0,0 +1,42 @@
+/****************************************************************
+**
+** TQt tutorial 4
+**
+****************************************************************/
+
+#include <qapplication.h>
+#include <qpushbutton.h>
+#include <qfont.h>
+
+
+class MyWidget : public TQWidget
+{
+public:
+ MyWidget( TQWidget *parent=0, const char *name=0 );
+};
+
+
+MyWidget::MyWidget( TQWidget *parent, const char *name )
+ : TQWidget( parent, name )
+{
+ setMinimumSize( 200, 120 );
+ setMaximumSize( 200, 120 );
+
+ TQPushButton *tquit = new TQPushButton( "Quit", this, "tquit" );
+ tquit->setGeometry( 62, 40, 75, 30 );
+ tquit->setFont( TQFont( "Times", 18, TQFont::Bold ) );
+
+ connect( tquit, SIGNAL(clicked()), qApp, SLOT(tquit()) );
+}
+
+
+int main( int argc, char **argv )
+{
+ TQApplication a( argc, argv );
+
+ MyWidget w;
+ w.setGeometry( 100, 100, 200, 120 );
+ a.setMainWidget( &w );
+ w.show();
+ return a.exec();
+}
diff --git a/tutorial/t4/t4.pro b/tutorial/t4/t4.pro
new file mode 100644
index 000000000..4688fe411
--- /dev/null
+++ b/tutorial/t4/t4.pro
@@ -0,0 +1,6 @@
+TEMPLATE = app
+CONFIG += qt warn_on release
+HEADERS =
+SOURCES = main.cpp
+TARGET = t4
+REQUIRES=small-config