blob: 119eec978bac3f11bbb57a8037cf640b4eb550ae (
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
 | import org.trinitydesktop.qt.*;
public class Tut3 extends TQObject {
	public static void main(String[] args) {
		TQApplication a = new TQApplication(args);
		TQVBox box = new TQVBox();
		box.resize(200, 120);
		
		TQPushButton quit = new TQPushButton("Quit", box);
		quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));
		connect(quit, TQ_SIGNAL("clicked()"), a, TQ_SLOT("quit()"));
		
		a.setMainWidget(box);
		box.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");
		}
	}
}
 |