summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/tutorial/t1/Tut1.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/tutorial/t1/Tut1.java')
-rw-r--r--qtjava/javalib/tutorial/t1/Tut1.java22
1 files changed, 22 insertions, 0 deletions
diff --git a/qtjava/javalib/tutorial/t1/Tut1.java b/qtjava/javalib/tutorial/t1/Tut1.java
new file mode 100644
index 00000000..dbb95131
--- /dev/null
+++ b/qtjava/javalib/tutorial/t1/Tut1.java
@@ -0,0 +1,22 @@
+import org.kde.qt.*;
+
+public class Tut1 extends QObject {
+ public static void main(String[] args) {
+ QApplication a = new QApplication(args);
+ QPushButton hello = new QPushButton("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");
+ }
+ }
+}