diff options
Diffstat (limited to 'tutorial/t4')
-rw-r--r-- | tutorial/t4/main.cpp | 42 | ||||
-rw-r--r-- | tutorial/t4/t4.pro | 6 |
2 files changed, 48 insertions, 0 deletions
diff --git a/tutorial/t4/main.cpp b/tutorial/t4/main.cpp new file mode 100644 index 0000000..3a39c00 --- /dev/null +++ b/tutorial/t4/main.cpp @@ -0,0 +1,42 @@ +/**************************************************************** +** +** Qt tutorial 4 +** +****************************************************************/ + +#include <qapplication.h> +#include <qpushbutton.h> +#include <qfont.h> + + +class MyWidget : public QWidget +{ +public: + MyWidget( QWidget *parent=0, const char *name=0 ); +}; + + +MyWidget::MyWidget( QWidget *parent, const char *name ) + : QWidget( parent, name ) +{ + setMinimumSize( 200, 120 ); + setMaximumSize( 200, 120 ); + + QPushButton *quit = new QPushButton( "Quit", this, "quit" ); + quit->setGeometry( 62, 40, 75, 30 ); + quit->setFont( QFont( "Times", 18, QFont::Bold ) ); + + connect( quit, SIGNAL(clicked()), qApp, SLOT(quit()) ); +} + + +int main( int argc, char **argv ) +{ + QApplication 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 0000000..4688fe4 --- /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 |