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 --- tutorial/t1/main.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 tutorial/t1/main.cpp (limited to 'tutorial/t1/main.cpp') diff --git a/tutorial/t1/main.cpp b/tutorial/t1/main.cpp new file mode 100644 index 0000000..0e50846 --- /dev/null +++ b/tutorial/t1/main.cpp @@ -0,0 +1,21 @@ +/**************************************************************** +** +** Qt tutorial 1 +** +****************************************************************/ + +#include +#include + + +int main( int argc, char **argv ) +{ + QApplication a( argc, argv ); + + QPushButton hello( "Hello world!", 0 ); + hello.resize( 100, 30 ); + + a.setMainWidget( &hello ); + hello.show(); + return a.exec(); +} -- cgit v1.2.3