summaryrefslogtreecommitdiffstats
path: root/examples/splitter/splitter.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 /examples/splitter/splitter.cpp
downloadtqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.tar.gz
tqt3-d796c9dd933ab96ec83b9a634feedd5d32e1ba3f.zip
Test conversion to TQt3 from Qt3 8c6fc1f8e35fd264dd01c582ca5e7549b32ab731
Diffstat (limited to 'examples/splitter/splitter.cpp')
-rw-r--r--examples/splitter/splitter.cpp99
1 files changed, 99 insertions, 0 deletions
diff --git a/examples/splitter/splitter.cpp b/examples/splitter/splitter.cpp
new file mode 100644
index 00000000..684818a3
--- /dev/null
+++ b/examples/splitter/splitter.cpp
@@ -0,0 +1,99 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for TQt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include <qapplication.h>
+#include <qlabel.h>
+#include <qsplitter.h>
+#include <qmultilineedit.h>
+
+#include <qpainter.h>
+
+
+class Test : public TQWidget {
+public:
+ Test(TQWidget* parent=0, const char* name=0, int f=0);
+ void paintEvent(TQPaintEvent* e);
+private:
+};
+
+
+
+Test::Test(TQWidget* parent, const char* name, int f) :
+ TQWidget(parent, name, f)
+{
+
+}
+
+void Test::paintEvent(TQPaintEvent* e)
+{
+ TQPainter p(this);
+ p.setClipRect(e->rect());
+ const int d = 1000; //large number
+ int x1 = 0;
+ int x2 = width()-1;
+ int y1 = 0;
+ int y2 = height()-1;
+
+ int x = (x1+x2)/2;
+ p.drawLine( x, y1, x+d, y1+d );
+ p.drawLine( x, y1, x-d, y1+d );
+ p.drawLine( x, y2, x+d, y2-d );
+ p.drawLine( x, y2, x-d, y2-d );
+
+ int y = (y1+y2)/2;
+ p.drawLine( x1, y, x1+d, y+d );
+ p.drawLine( x1, y, x1+d, y-d );
+ p.drawLine( x2, y, x2-d, y+d );
+ p.drawLine( x2, y, x2-d, y-d );
+}
+
+
+int main( int argc, char ** argv )
+{
+ TQApplication a( argc, argv );
+
+ TQSplitter *s1 = new TQSplitter( TQSplitter::Vertical, 0 , "main" );
+
+ TQSplitter *s2 = new TQSplitter( TQSplitter::Horizontal, s1, "top" );
+
+ Test *t1 = new Test( s2, "topLeft" );
+ t1->setBackgroundColor( TQt::blue.light( 180 ) );
+ t1->setMinimumSize( 50, 0 );
+
+ Test *t2 = new Test( s2, "topRight" );
+ t2->setBackgroundColor( TQt::green.light( 180 ) );
+ s2->setResizeMode( t2, TQSplitter::KeepSize );
+ s2->moveToFirst( t2 );
+
+ TQSplitter *s3 = new TQSplitter( TQSplitter::Horizontal, s1, "bottom" );
+
+ Test *t3 = new Test( s3, "bottomLeft" );
+ t3->setBackgroundColor( TQt::red );
+ Test *t4 = new Test( s3, "bottomMiddle" );
+ t4->setBackgroundColor( TQt::white );
+
+ Test *t5 = new Test( s3, "bottomRight" );
+ t5->setMaximumHeight( 250 );
+ t5->setMinimumSize( 80, 50 );
+ t5->setBackgroundColor( TQt::yellow );
+
+#ifdef Q_WS_QWS
+ // TQt/Embedded XOR drawing not yet implemented.
+ s1->setOpaqueResize( TRUE );
+#endif
+ s2->setOpaqueResize( TRUE );
+ s3->setOpaqueResize( TRUE );
+
+ a.setMainWidget( s1 );
+ s1->setCaption("TQt Example - Splitters");
+ s1->show();
+ int result = a.exec();
+ delete s1;
+ return result;
+}