You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.1 KiB
46 lines
1.1 KiB
/***************************************************************************
|
|
* $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.trinitydesktop.qt.*;
|
|
|
|
public class Main {
|
|
|
|
/*
|
|
The program starts here. It parses the command line and builds a message
|
|
string to be displayed by the Hello widget.
|
|
*/
|
|
|
|
public static void main( String[] args )
|
|
{
|
|
TQApplication a = new TQApplication(args);
|
|
String s = "";
|
|
for ( int i=1; i<args.length; i++ ) {
|
|
s += args[i];
|
|
if ( i<args.length-1 )
|
|
s += " ";
|
|
}
|
|
if ( s.equals("") )
|
|
s = "Hello, World";
|
|
Hello h = new Hello( s );
|
|
h.setCaption( "Qt says hello" );
|
|
TQObject.connect( h, Qt.SIGNAL("clicked()"), a, Qt.SLOT("quit()") );
|
|
h.setFont( new TQFont("times",32,TQFont.Bold) ); // default font
|
|
h.setBackgroundColor( Qt.white() ); // default bg color
|
|
a.setMainWidget( h );
|
|
h.show();
|
|
a.exec();
|
|
return;
|
|
}
|
|
|
|
static {
|
|
qtjava.initialize();
|
|
}
|
|
|
|
}
|