summaryrefslogtreecommitdiffstats
path: root/tutorial/t7/main.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-08 12:31:36 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-08 12:31:36 -0600
commitd796c9dd933ab96ec83b9a634feedd5d32e1ba3f (patch)
tree6e3dcca4f77e20ec8966c666aac7c35bd4704053 /tutorial/t7/main.cpp
downloadtqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.tar.gz
tqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.zip
Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731
Diffstat (limited to 'tutorial/t7/main.cpp')
-rw-r--r--tutorial/t7/main.cpp55
1 files changed, 55 insertions, 0 deletions
diff --git a/tutorial/t7/main.cpp b/tutorial/t7/main.cpp
new file mode 100644
index 000000000..246797707
--- /dev/null
+++ b/tutorial/t7/main.cpp
@@ -0,0 +1,55 @@
+/****************************************************************
+**
+** TQt tutorial 7
+**
+****************************************************************/
+
+#include <qapplication.h>
+#include <qpushbutton.h>
+#include <qlcdnumber.h>
+#include <qfont.h>
+#include <qvbox.h>
+#include <qgrid.h>
+
+#include "lcdrange.h"
+
+
+class MyWidget : public TQVBox
+{
+public:
+ MyWidget( TQWidget *parent=0, const char *name=0 );
+};
+
+
+MyWidget::MyWidget( TQWidget *parent, const char *name )
+ : TQVBox( parent, name )
+{
+ TQPushButton *tquit = new TQPushButton( "Quit", this, "tquit" );
+ tquit->setFont( TQFont( "Times", 18, TQFont::Bold ) );
+
+ connect( tquit, SIGNAL(clicked()), qApp, SLOT(tquit()) );
+
+ TQGrid *grid = new TQGrid( 4, this );
+
+ LCDRange *previous = 0;
+ for( int r = 0 ; r < 4 ; r++ ) {
+ for( int c = 0 ; c < 4 ; c++ ) {
+ LCDRange* lr = new LCDRange( grid );
+ if ( previous )
+ connect( lr, SIGNAL(valueChanged(int)),
+ previous, SLOT(setValue(int)) );
+ previous = lr;
+ }
+ }
+}
+
+
+int main( int argc, char **argv )
+{
+ TQApplication a( argc, argv );
+
+ MyWidget w;
+ a.setMainWidget( &w );
+ w.show();
+ return a.exec();
+}