summaryrefslogtreecommitdiffstats
path: root/tdejava/koala/test/ksystemtray/Test.java
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2014-01-08 20:06:00 +0100
committerSlávek Banko <slavek.banko@axis.cz>2014-01-08 20:06:00 +0100
commit636f509299122d02087c6fd62e1e4a46dbd22026 (patch)
tree70e43efceeb5b00e7f19cdac8da44928bd2fb459 /tdejava/koala/test/ksystemtray/Test.java
parent719b61750c08343f530068ed4127623aeac71cf0 (diff)
downloadtdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.tar.gz
tdebindings-636f509299122d02087c6fd62e1e4a46dbd22026.zip
Rename many classes to avoid conflicts with KDE
Diffstat (limited to 'tdejava/koala/test/ksystemtray/Test.java')
-rw-r--r--tdejava/koala/test/ksystemtray/Test.java28
1 files changed, 28 insertions, 0 deletions
diff --git a/tdejava/koala/test/ksystemtray/Test.java b/tdejava/koala/test/ksystemtray/Test.java
new file mode 100644
index 00000000..0dbc642d
--- /dev/null
+++ b/tdejava/koala/test/ksystemtray/Test.java
@@ -0,0 +1,28 @@
+import org.trinitydesktop.koala.*;
+import org.trinitydesktop.qt.*;
+
+public class Test {
+ static String description = "Systemtray test application for Java";
+ static String[][] options = {{ "+[File]", "image file to open", null }};
+// static String[][] options = new String[0][0];//{{ null, null, null }};
+
+ public static void main(String[] argv){
+ TDEAboutData aboutData = new TDEAboutData( "test", "Test",
+ "0.1", description, TDEAboutData.License_GPL,
+ "(C) 2002 Gert-Jan van der Heiden");
+ TDECmdLineArgs.init( argv, aboutData );
+ TDECmdLineArgs.addCmdLineOptions(options);
+ System.out.println("1");
+ TDEApplication app = new TDEApplication();
+ System.out.println("2");
+ KSystemTray systemTrayIcon = new KSystemTray(null, "test");
+ System.out.println("3");
+ systemTrayIcon.show();
+ app.exec();
+ System.exit(0);
+ }
+ static {
+ qtjava.initialize();
+ tdejava.initialize();
+ }
+}