blob: 7a1e0a43b23feaa34bac5f64c5dc2d74411d9d6e (
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.kde.qt.*;
public class Tut3 extends QObject {
public static void main(String[] args) {
QApplication a = new QApplication(args);
QVBox box = new QVBox();
box.resize(200, 120);
QPushButton quit = new QPushButton("Quit", box);
quit.setFont(new QFont("Times", 18, QFont.Bold, false));
connect(quit, SIGNAL("clicked()"), a, SLOT("quit()"));
a.setMainWidget(box);
box.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");
}
}
}
|