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.
tdebindings/qtjava/javalib/tutorial/t14/Tut14.java

25 lines
518 B

import org.kde.qt.*;
public class Tut14 extends TQObject {
public static void main(String[] args) {
TQApplication.setColorSpec(TQApplication.CustomColor);
TQApplication a = new TQApplication(args);
GameBoard gb = new GameBoard();
gb.setGeometry(100, 100, 500, 355);
a.setMainWidget(gb);
gb.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");
}
}
}