summaryrefslogtreecommitdiffstats
path: root/examples/rangecontrols/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rangecontrols/main.cpp')
-rw-r--r--examples/rangecontrols/main.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/rangecontrols/main.cpp b/examples/rangecontrols/main.cpp
new file mode 100644
index 0000000..64f15f4
--- /dev/null
+++ b/examples/rangecontrols/main.cpp
@@ -0,0 +1,24 @@
+/****************************************************************************
+**
+** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
+**
+** This file is part of an example program for Qt. This example
+** program may be used, distributed and modified without limitation.
+**
+*****************************************************************************/
+
+#include "rangecontrols.h"
+#include <qapplication.h>
+
+int main( int argc, char **argv )
+{
+ QApplication a( argc, argv );
+
+ RangeControls rangecontrols;
+ rangecontrols.resize( 500, 300 );
+ rangecontrols.setCaption( "Qt Example - Range Control Widgets" );
+ a.setMainWidget( &rangecontrols );
+ rangecontrols.show();
+
+ return a.exec();
+}