JDIC Tray Icons

JDIC Tray Icons

By Eric M. Burke, OCI Principal Software Engineer

May 2005


Introduction

The JDesktop Integration Components (JDIC) project lets portable JavaTM applications access native desktop features. JDIC is a Sun-sponsored open source project currently at release 0.9. When complete, portions of JDIC may eventually become part of J2SE. This article examines the Tray Icon portion of JDIC version 0.9, which lets you create "tray icons" on the native desktop with just a few lines of code.

Our example is a dummy weather forecast service that shows current weather conditions as an animated GIF on the system tray. Balloon help alerts you when a new forecast is available and you can click the icon to view a detailed forecast in a Swing JFrame.

Installing JDIC

This article was written using version 0.9 of JDIC, available at the JDIC home page. Just follow the links to locate version 0.9, then download the file named jdic-0.9-bin-cross-platform.zip.

Version 0.9 makes installation easier than previous releases. Simply expand the ZIP file and add jdic.jar to your classpath. Since JDIC utilizes native code, running applications is a bit trickier. You must set the java.library.path system property to your JDIC installation directory. You typically do this with a command-line argument:

java -Djava.library.path=/path/to/jdic/directory MyClassToRun

README.txt, included in the sample code, contains more detailed information on running the sample application.

The JDIC Tray API

Now let's look at the Tray API in depth. This is a simple API consisting of two classes: SystemTray and TrayIcon. These classes are in the org.jdesktop.jdic.tray package, although this will change when the API becomes part of J2SE. See the references at the end of this article.

SystemTray has three methods:

The TrayIcon class has several methods allowing you to specify the actual icon, include a tooltip, show balloon messages, add a popup JMenu, and react to a mouse click.

Here is a code snippet for this icon:

  1. TrayIcon trayIcon = new TrayIcon(icon, caption, popup);
  2. SystemTray systemTray = SystemTray.getDefaultSystemTray();
  3. systemTray.addTrayIcon(trayIcon);

That's it! The icon is a normal javax.swing.Icon object, captionis some text for the icon, and popup is a javax.swing.JPopupMenu object.

Now let's add a tooltip.

trayIcon.setToolTip(
    "Sunday, May 01, 2005 - Thunderstorms (83..89");

It is important to note that the tooltip is a native operating system tooltip. Thus you cannot use HTML as you can in many Swing components. You can, however, include '\n' characters to generate multi-line tooltips. While this works on Windows XP, the exact behavior is not specified in the JDIC documentation. In other words, this is native code that will behave differently on different platforms. It is probably a good idea to avoid multiline tooltips if you want to maximize portability.

If you do not specify a tooltip, Windows shows the caption as the tooltip. Other platforms may display the caption next to the icon. This behavior is undocumented.

Add a Popup Menu

This next image shows a Swing JPopupMenu for our tray icon.

You normally specify the popup menu in the TrayIcon constructor. Or, you can set the menu later:

JPopupMenu popupMenu = ...; // create like normal
trayIcon.setPopupMenu(popupMenu);

Just looking at the popup menu clues you in that this is a Swing component using the default look and feel. You can also use the system look and feel if you want your menus to blend in better. Just put this code in your main() method:

UIManager.setLookAndFeel(
    UIManager.getSystemLookAndFeelClassName());

Because the popup menu is a Swing menu, it supports every feature of Swing menus. This means your menu items can contain graphics, formatting, checkboxes, and separators.

Listen for Clicks

Most tray icons let the user click to view more details or to bring up some kind of configuration window. Our weather forecast icon shows this JFrame when the user clicks.

This feature is incredibly easy to add. Just register an ActionListener on the TrayIcon:

  1. trayIcon.addActionListener(
  2. new ActionListener() {
  3. public void actionPerformed(ActionEvent e) {
  4. showForecastClicked(); // show the frame
  5. }
  6. });

Balloon Messages

JDIC 0.9 adds the ability to show balloon messages from your tray icons.

Here is the code to show the balloon message.

  1. trayIcon.displayMessage(
  2. "Important Information",
  3. "New Forecast Available",
  4. TrayIcon.INFO_MESSAGE_TYPE);

The following message types are allowed: INFO_MESSAGE_TYPEWARNING_MESSAGE_TYPENONE_MESSAGE_TYPE, and ERROE_MESSAGE_TYPE. In case you are wondering, that last one should probably be ERROR_MESSAGE_TYPE, but the JDIC source contains a typo.

As with the tooltip, the balloon message is implemented with native code. You can include newlines on Windows, but the behavior of multiline text is currently undefined. HTML text does not work.

Handling Errors

The weather forecast sample application registers an uncaught exception handler, which is a new Java 5 feature.

  1. Thread.setDefaultUncaughtExceptionHandler(
  2. new Thread.UncaughtExceptionHandler() {
  3. public void uncaughtException(Thread t, Throwable e) {
  4. e.printStackTrace();
  5. System.exit(1);
  6. }
  7. });

The uncaughtException(...) method is invoked when a thread terminates due to an exception and no other handler has been defined for that thread. During testing it was discovered that some errors, such as the inability to locate an icon resource, would leave the JRE running indefinitely. Since the icon was not displayed in the tray, the user would have no way of knowing that anything went wrong.

Summary

The tray icon API is very new and currently works on Windows, Solaris, and Linux. A Macintosh version is also in progress. This is "experimental" code, so the API and features may change before the final release.

Interacting with the native operating system desktop is a significant advance for Java applications. As we have seen, the JDIC API is easy to use and lets your Java applications blend in with the desktop better than ever before.

References

Software Engineering Tech Trends (SETT) is a regular publication featuring emerging trends in software engineering.


secret