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.
tdebindings/qtjava/javalib/examples/hello/Main.java

46 lines
1.2 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.TQ_SIGNAL("clicked()"), a, Qt.TQ_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();
}
}