diff options
Diffstat (limited to 'examples/rangecontrols/main.cpp')
-rw-r--r-- | examples/rangecontrols/main.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/rangecontrols/main.cpp b/examples/rangecontrols/main.cpp new file mode 100644 index 000000000..bc2fa2896 --- /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 TQt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ + +#include "rangecontrols.h" +#include <qapplication.h> + +int main( int argc, char **argv ) +{ + TQApplication a( argc, argv ); + + RangeControls rangecontrols; + rangecontrols.resize( 500, 300 ); + rangecontrols.setCaption( "TQt Example - Range Control Widgets" ); + a.setMainWidget( &rangecontrols ); + rangecontrols.show(); + + return a.exec(); +} |