From 90825e2392b2d70e43c7a25b8a3752299a933894 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kdejava/koala/test/ksystemtray/Test.java | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 kdejava/koala/test/ksystemtray/Test.java (limited to 'kdejava/koala/test/ksystemtray') diff --git a/kdejava/koala/test/ksystemtray/Test.java b/kdejava/koala/test/ksystemtray/Test.java new file mode 100644 index 00000000..f5f8f90c --- /dev/null +++ b/kdejava/koala/test/ksystemtray/Test.java @@ -0,0 +1,28 @@ +import org.kde.koala.*; +import org.kde.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){ + KAboutData aboutData = new KAboutData( "test", "Test", + "0.1", description, KAboutData.License_GPL, + "(C) 2002 Gert-Jan van der Heiden"); + KCmdLineArgs.init( argv, aboutData ); + KCmdLineArgs.addCmdLineOptions(options); + System.out.println("1"); + KApplication app = new KApplication(); + System.out.println("2"); + KSystemTray systemTrayIcon = new KSystemTray(null, "test"); + System.out.println("3"); + systemTrayIcon.show(); + app.exec(); + System.exit(0); + } + static { + qtjava.initialize(); + kdejava.initialize(); + } +} -- cgit v1.2.1