Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing a desktop application using Java. I want to put an icon (with a contextual menu) on the system tray (called Menu Extras in Mac Os). Java 6 comes with support for doing this in Windows and Linux, but it doesn't work in Mac Os.

I have seen some applications doing what I want in all three operating systems (e.g. DropBox), but I don't know if they are made with Java.

How can I achieve this?

If it's not possible in Java, is there any other cross-platform language able to do that?

Thanks.

share|improve this question
I have seen this work with Java on OS X 10.5 within the last year. Show your failing code please. – Thorbjørn Ravn Andersen Dec 28 '09 at 21:26
Sadly, I have no access to my code now, but I can't paste it later if it's necessary. Is very similar (or equal) to this example: java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/… The question is SystemTray.isSupported() returns true, no exception is thrown, but there is no icon :( – sinuhepop Dec 29 '09 at 13:56

2 Answers

up vote 13 down vote accepted

AWT / Swing

According to documentation, OSX 10.5 update 1 and newer support TrayIcons

TrayIcons are represented on Mac OS X using NSStatusMenus that are presented to the left of the standard system menu extras. The java.awt.Image artwork for a TrayIcon is presented in grayscale as per the Mac OS X standard for menu extras.

TrayIcon.displayMessage() presents a small non-modal dialog positioned under the TrayIcon. The ActionListener for the TrayIcon is only fired if the "OK" button on the non-modal dialog is pressed, and not if the window is closed using the window close button.

Multiple calls to TrayIcon.displayMessage() will dismiss prior messages and leave only the last message. If the application is not in the foreground when TrayIcon.displayMessage() is called, the application bounces its icon in the Dock. Message windows are badged with the application's icon to identify the which application triggered the notification.

noah provided this sample:

java.awt.SystemTray.getSystemTray().add(new java.awt.TrayIcon(java.awt.Toolkit.getDefaultToolkit().getImage("foo.png")));

Note that you'll probably want to attach a menu to that icon before adding it to the tray, though.

SWT

According to documentation, SWT 3.3 and newer supports TrayItem icons on OSX.

Icons placed on the system tray will now appear when running on OS X in the status bar. SWT TrayItem

This snippet shows how to create a menu and icon and put them in the Tray.

share|improve this answer
1  
This works for me on Snow Leopard: java.awt.SystemTray.getSystemTray().add(new java.awt.TrayIcon(java.awt.Toolkit.getDefaultToolkit().getImage("foo.png"))); – noah Dec 28 '09 at 20:32
@noah: Whoops, yeah, I should have put in an example. – Powerlord Dec 28 '09 at 20:50
Thanks, I'll try it lter at home. I can't see any big difference with my code, maybe it's only a silly thing. I can't use SWT, but I'll try it likewise. Thanks. – sinuhepop Dec 29 '09 at 14:03
The snippet is now located in Eclipse's git repository. – Brent Plump Feb 15 at 2:03

I ported a Windows application to my Mac with little difficulty. One thing I noticed is that the icons are in full, living color (not following the Mac convention). I'll need to add a little OS-specific code to convert myself. But this is a big step up from the DLL dependent Desktop integration version from earlier iterations of Java.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.