summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/tutorial/t4/Tut4.java
blob: a8cb1f013cdab2dc931e115aca1bc81a44a92c48 (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
import org.kde.qt.*;

public class Tut4 extends TQWidget {
	public Tut4() {
		setMinimumSize(200,120);
		setMaximumSize(200,120);

		TQPushButton quit = new TQPushButton("Quit", this, "quit");
		quit.setGeometry(62, 40, 75, 30);
		quit.setFont(new TQFont("Times", 18, TQFont.Bold, false));

		connect(quit, SIGNAL("clicked()"), tqApp(), SLOT("quit()"));
	}
	
	public static void main(String[] args) {
		TQApplication a = new TQApplication(args);

		Tut4 w = new Tut4();
		w.setGeometry(100, 100, 200, 120);
		a.setMainWidget(w);
		w.show();
		a.exec();
	}
	
	static {
		try {
			Class c = Class.forName("org.kde.qt.qtjava");
		} catch (Exception e) {
			e.printStackTrace();
			System.out.println("Can't load qtjava class");
		}
	}
}