diff options
Diffstat (limited to 'tutorial/t1/main.cpp')
-rw-r--r-- | tutorial/t1/main.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tutorial/t1/main.cpp b/tutorial/t1/main.cpp new file mode 100644 index 000000000..23f72032d --- /dev/null +++ b/tutorial/t1/main.cpp @@ -0,0 +1,21 @@ +/**************************************************************** +** +** TQt tutorial 1 +** +****************************************************************/ + +#include <qapplication.h> +#include <qpushbutton.h> + + +int main( int argc, char **argv ) +{ + TQApplication a( argc, argv ); + + TQPushButton hello( "Hello world!", 0 ); + hello.resize( 100, 30 ); + + a.setMainWidget( &hello ); + hello.show(); + return a.exec(); +} |