diff options
Diffstat (limited to 'qtjava/javalib/examples/buttongroups/Main.java')
-rw-r--r-- | qtjava/javalib/examples/buttongroups/Main.java | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/qtjava/javalib/examples/buttongroups/Main.java b/qtjava/javalib/examples/buttongroups/Main.java new file mode 100644 index 00000000..a7652d87 --- /dev/null +++ b/qtjava/javalib/examples/buttongroups/Main.java @@ -0,0 +1,33 @@ +/*************************************************************************** +* $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.*; + +public class Main { + +public static void main( String[] args ) +{ + QApplication a = new QApplication( args ); + + ButtonsGroups buttonsgroups = new ButtonsGroups(); + buttonsgroups.resize( 500, 250 ); + buttonsgroups.setCaption( "Qt Example - Buttongroups" ); + a.setMainWidget( buttonsgroups ); + buttonsgroups.show(); + + a.exec(); + return; +} + +static { + qtjava.initialize(); + +} + +} |