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

public class Tut5 extends QVBox {
	public Tut5() {
		QPushButton quit = new QPushButton("Quit", this, "quit");
		quit.setFont(new QFont("Times", 18, QFont.Bold, false));

		connect(quit, SIGNAL("clicked()"), qApp(), SLOT("quit()"));

		QLCDNumber lcd = new QLCDNumber(2, this, "lcd");

		QSlider slider = new QSlider(Horizontal, this, "slider");
		slider.setRange(0, 99);
		slider.setValue(0);

		connect(slider, SIGNAL("valueChanged(int)"), lcd, SLOT("display(int)"));
	}
	
	public static void main(String[] args) {
		QApplication a = new QApplication(args);

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