diff options
Diffstat (limited to 'tdejava/koala/test/ksystemtray/Test.java')
-rw-r--r-- | tdejava/koala/test/ksystemtray/Test.java | 28 |
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(); + } +} |