summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/tutorial/t1/Tut1.java
blob: 8e945edc1b80c76e892976000ef4cb61bbb26f74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import org.trinitydesktop.qt.*;

public class Tut1 extends TQObject {
	public static void main(String[] args) {
		TQApplication a = new TQApplication(args);
		TQPushButton hello = new TQPushButton("Hello World!", null);
		hello.resize(100, 30);
		
		a.setMainWidget(hello);
		hello.show();
		a.exec();
	}
	
	static {
		try {
			Class c = Class.forName("org.trinitydesktop.qt.qtjava");
		} catch (Exception e) {
			e.printStackTrace();
			System.out.println("Can't load qtjava class");
		}
	}
}