You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
472 B
23 lines
472 B
import org.kde.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.kde.qt.qtjava");
|
|
} catch (Exception e) {
|
|
e.printStackTrace();
|
|
System.out.println("Can't load qtjava class");
|
|
}
|
|
}
|
|
}
|