/*************************************************************************** * $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) { if ( args.length > 0 && args[0].equals("-m") ) { TQApplication.setColorSpec( TQApplication.ManyColor ); } else if ( args.length > 1 && args[1].equals("-n") ) { TQApplication.setColorSpec( TQApplication.NormalColor ); } else { TQApplication.setColorSpec( TQApplication.CustomColor ); } TQApplication.setFont( new TQFont("Helvetica", 12) ); TQApplication a = new TQApplication( args ); ImageIconProvider iip = new ImageIconProvider(); TQFileDialog.setIconProvider( iip ); if ( args.length == 0 ) { // Create a window which looks after its own existence. ImageViewer w = new ImageViewer(null, "new window", Qt.WDestructiveClose | Qt.WResizeNoErase ); w.setCaption("Qt Example - Image Viewer"); w.show(); } else { for ( int i=0; i