From 90825e2392b2d70e43c7a25b8a3752299a933894 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- qtjava/javalib/examples/widgets/MyWidgetView.java | 58 +++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 qtjava/javalib/examples/widgets/MyWidgetView.java (limited to 'qtjava/javalib/examples/widgets/MyWidgetView.java') diff --git a/qtjava/javalib/examples/widgets/MyWidgetView.java b/qtjava/javalib/examples/widgets/MyWidgetView.java new file mode 100644 index 00000000..db42cb9a --- /dev/null +++ b/qtjava/javalib/examples/widgets/MyWidgetView.java @@ -0,0 +1,58 @@ +/*************************************************************************** +* $Id$ +** +* Copyright (C) 1992-2000 Trolltech AS. All rights reserved. +** +* This file is part of an example program for Qt. This example +* program may be used, distributed and modified without limitation. +** +****************************************************************************/ + +import org.kde.qt.*; +import java.util.ArrayList; + +class MyWidgetView extends WidgetView +{ + int s; +public MyWidgetView( ) +{ + this(null, null); +} + +public MyWidgetView( QWidget parent, String name ) + { + super(parent, name); + s = 0; + setToolBarsMovable( true ); + } + + void button1Clicked() + { + ArrayList styles = QStyleFactory.keys(); + + s = (++s)%styles.size(); + qApp().setStyle( (String) styles.get(s) ); + super.button1Clicked(); + } + + +// +// Create and display our WidgetView. +// + +public static void main(String[] args) +{ + QApplication.setColorSpec( QApplication.CustomColor ); + QApplication a = new QApplication( args ); + + MyWidgetView w = new MyWidgetView(); + a.setMainWidget( w ); + + w.show(); + int res = a.exec(); + return; +} + static { + qtjava.initialize(); + } +} -- cgit v1.2.3