FXTrayIcon
Library for use in JavaFX applications that makes adding a System Tray icon easier. The FXTrayIcon class handles all the messy AWT and Swing parts of constructing an icon, displaying notifications, creating a context menu, etc. This means that users of FXTrayIcon can work solely with its public API and JavaFX classes that they are already familiar with.
Check out the runnable test application in the test directory for an example of how this works.
Usage
From within your JavaFX application, adding a tray icon is as simple as two lines of code. Yes, really, that's it!
// Pass in the app's main stage, and path to the icon image
FXTrayIcon icon = new FXTrayIcon(stage, getClass().getResource("someImageFile.png"));
icon.show();
Or use Builder Style
FXTrayIcon icon = new FXTrayIcon.Builder(stage, iconURL).menuItem("Menu 1", e-> myMethod()).addExitItem().show().build();
Click here for a Builder tutorial
How do I add to my project
The project is available as a Maven dependency on Central. Add the following to POM.xml
<dependency>
<groupId>com.dustinredmond.fxtrayicon</groupId>
<artifactId>FXTrayIcon</artifactId>
<version><!--See Below --></version>
</dependency>
Or, if using Gradle to build, add the below to your Gradle build file
compile group: 'com.dustinredmond.fxtrayicon', name: 'FXTrayIcon', version: '<see below>'
You can even use it from a Groovy script!
@Grapes(
@Grab(group='com.dustinredmond.fxtrayicon', module='FXTrayIcon', version='<see below>')
)
Note, for the current stable version number, use the following:
Features & Screenshots
CheckMenuItems
FXTrayIcon now supports the use of CheckMenuItems - See Javadocs for specifics.
FXTrayIcon on Windows 10's tray
Above is an example of FXTrayIcon running on Windows 10, of course, you choose your own icon file. Here we used a link icon from Icons8, they provide thousands of amazing icons for developers, both free (with an attribution) and paid.
Context Menu - uses JavaFX MenuItem
An example of FXTrayIcon's custom context menu, built using JavaFX MenuItems. Surprise, surprise, JavaFX MenuItems get translated into AWT MenuItems by FXTrayIcon, so there's no need to use those! A developer can work solely with JavaFX Menus and MenuItems.
Tray notifications
The following can be used to show notifications. Note that the showMessage()
method
uses the icon from FXTrayIcon in the notification, while the others use different icons
to indicate the level of severity of the message.
-
showMessage(String caption, String content)
-
showInfoMessage(String caption, String content)
-
showWarnMessage(String caption, String content)
-
showErrorMessage(String caption, String content)
Supported operating systems
OS | Support Status | Unsupported Features |
---|---|---|
Windows 11 | Fully supported | N/A |
Mac OS | Partially supported | In the displayMessage() methods. Custom notification icons are not supported in AppleScript calls, but the TrayIcon is. |
Linux | Partially supported | Some desktop environments that support java.awt.SystemTray are supported. Many are not. You should not rely on the isSupported method as a matter of truth, testing on individual desktop environments is strongly encouraged. |
Call FXTrayIcon.isSupported()
to see if the current platform
supports the system tray.
Access to TrayIcon
Being a JavaFX library, much care has gone into keeping the AWT portions of the library out of sight within your IDE while using FXTrayIcon. However, we realize that there are situations where it would be useful to have access to the underlying TrayIcon awt object, so this can be done in two different ways.
- You can extend FXTrayIcon and in that extended class, you can access the
getTrayIcon()
protected method. - Once you have FXTrayIcon instantiated, you can call the
getRestricted()
method then gain access to the TrayIcon object through that method.
FXTrayIcon
Projects using - JDKMon - A tool that monitors your installed JDK's and informs you about updates.
- GlucoStatusFX - Glucose status monitor for Nightscout implemented in JavaFX.
- GistFX - A utility that makes managing and organizing your GitHub Gists easy and convenient.
If your project uses FXTrayIcon, let us know via Pull Request, and we'll feature your project on this README.