Welcome, Guest. Please login or register.
Did you miss your activation email?
Pages: [1]   Go Down
  Print  
Author Topic: System tray example using Java SE 6  (Read 2441 times)
0 Members and 1 Guest are viewing this topic.
Arkie
Javaforums.net Admin
Senior Member
*

Reputation: 16
Developer @ Javaforums.net
Offline Offline
Posts: 2593
Referrals: 13

WWW Awards
« on: July 27, 2008, 09:31:02 AM »

Code
GeSHi (java):
  1. /*--------------------------------------------------------------------------
  2. BasicTray class
  3.  *****************
  4. By: HappyFace http://www.engineeringserver.com
  5. Contact: info [@] engineeringserver.com
  6. Version: 27/07/2008
  7. "*****************
  8. Note: A system tray example
  9. //----------------------------------------------------------------------*/
  10. import java.awt.AWTException;
  11. import java.awt.EventQueue;
  12. import java.awt.Image;
  13. import java.awt.MenuItem;
  14. import java.awt.PopupMenu;
  15. import java.awt.SystemTray;
  16. import java.awt.Toolkit;
  17. import java.awt.TrayIcon;
  18.  
  19.  
  20. public class BasicTray {
  21. public static void main(String args[]) {
  22. Runnable runner = new Runnable() {
  23. public void run() {
  24. if (SystemTray.isSupported()) {
  25. SystemTray tray = SystemTray.getSystemTray();
  26. Image image = Toolkit.getDefaultToolkit().getImage("gifIcon.gif");
  27. PopupMenu popup = new PopupMenu();
  28. MenuItem item = new MenuItem("A Menu Item");
  29. popup.add(item);
  30. TrayIcon trayIcon = new TrayIcon(image, "This is the system tray", popup);
  31. try {
  32. tray.add(trayIcon);
  33. } catch (AWTException e) {
  34. System.err.println("Can't add to tray");
  35. }
  36. } else {
  37. System.err.println("Tray unavailable");
  38. }
  39. }
  40. };
  41. EventQueue.invokeLater(runner);
  42.  
  43. }
  44. }
Created by GeSHI 1.0.7.20
Logged

Java and .NET developer

To students: It doesn't matter how hard you've studied; the material won't be on the exam anyway.

Fan of http://www.retardedweblogger.com
Oh man, too much stuff to do in so little time.

http://img222.imageshack....707/arkietomatoesmall.jpg
Blizzcon 2k9 Grubby and Cassandra Ng engaged ! <3
Triple D, eerste Denken Dan Doen
Pages: [1]   Go Up
  Print  
 
Jump to:  

Your Ad Here