blob: c5ebc24ca237533772896a1037ac38d60471d0e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
/***************************************************************************
* $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();
}
}
|