summaryrefslogtreecommitdiffstats
path: root/examples/widgets/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/widgets/main.cpp')
-rw-r--r--examples/widgets/main.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/examples/widgets/main.cpp b/examples/widgets/main.cpp
new file mode 100644
index 0000000..93a3e54
--- /dev/null
+++ b/examples/widgets/main.cpp
@@ -0,0 +1,51 @@
+/****************************************************************************
+**
+** 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 <qapplication.h>
+#include <qstylefactory.h>
+#include "widgets.h"
+
+class MyWidgetView : public WidgetView
+{
+ int s;
+public:
+ MyWidgetView( QWidget *parent=0, const char *name=0 )
+ :WidgetView(parent, name), s(0)
+ {
+ setToolBarsMovable( TRUE );
+ }
+
+ void button1Clicked()
+ {
+ QStringList styles = QStyleFactory::keys();
+
+ s = (++s)%styles.count();
+ qApp->setStyle( styles[ s] );
+ WidgetView::button1Clicked();
+ }
+};
+
+
+//
+// Create and display our WidgetView.
+//
+
+int main( int argc, char **argv )
+{
+ QApplication::setColorSpec( QApplication::CustomColor );
+ QApplication a( argc, argv );
+
+ MyWidgetView* w = new MyWidgetView;
+ a.setMainWidget( w );
+
+ w->show();
+ int res = a.exec();
+ delete w;
+ return res;
+}