summaryrefslogtreecommitdiffstats
path: root/tutorial/t4/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/t4/main.cpp')
-rw-r--r--tutorial/t4/main.cpp42
1 files changed, 42 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();
+}