/* * Copyright 2014 dorkbox, llc * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package dorkbox.systemTray.swing; import java.awt.AWTException; import java.awt.Image; import java.awt.SystemTray; import java.awt.TrayIcon; import java.awt.event.MouseAdapter; import java.awt.event.MouseEvent; import java.io.File; import javax.swing.ImageIcon; import javax.swing.JPopupMenu; import dorkbox.systemTray.util.ImageUtils; /** * Class for handling all system tray interaction, via SWING. * * It doesn't work well on linux. See bugs: * http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6267936 * http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6453521 * https://stackoverflow.com/questions/331407/java-trayicon-using-image-with-transparent-background/3882028#3882028 */ @SuppressWarnings({"SynchronizationOnLocalVariableOrMethodParameter", "WeakerAccess"}) public class _SwingTray extends MenuImpl { private volatile SystemTray tray; private volatile TrayIcon trayIcon; // is the system tray visible or not. private volatile boolean visible = true; // Called in the EDT public _SwingTray(final dorkbox.systemTray.SystemTray systemTray) { super(systemTray, null, new TrayPopup()); if (dorkbox.systemTray.SystemTray.FORCE_TRAY_TYPE != 0 && dorkbox.systemTray.SystemTray.FORCE_TRAY_TYPE != dorkbox.systemTray.SystemTray.TYPE_SWING) { throw new IllegalArgumentException("Unable to start Swing SystemTray if 'SystemTray.FORCE_TRAY_TYPE' does not match"); } ImageUtils.determineIconSize(); _SwingTray.this.tray = SystemTray.getSystemTray(); } public void shutdown() { dispatchAndWait(new Runnable() { @Override public void run() { tray.remove(trayIcon); removeAll(); remove(); } }); } public void setImage_(final File iconFile) { dispatch(new Runnable() { @Override public void run() { // stupid java won't scale it right away, so we have to do this twice to get the correct size final Image trayImage = new ImageIcon(iconFile.getAbsolutePath()).getImage(); trayImage.flush(); if (trayIcon == null) { // here we init. everything trayIcon = new TrayIcon(trayImage); JPopupMenu popupMenu = (JPopupMenu) _native; popupMenu.pack(); popupMenu.setFocusable(true); // appindicators DO NOT support anything other than PLAIN gtk-menus (which we hack to support swing menus) // they ALSO do not support tooltips, so we cater to the lowest common denominator // trayIcon.setToolTip("app name"); trayIcon.addMouseListener(new MouseAdapter() { @Override public void mousePressed(MouseEvent e) { TrayPopup popupMenu = (TrayPopup) _native; popupMenu.doShow(e.getPoint(), 0); } }); try { tray.add(trayIcon); } catch (AWTException e) { dorkbox.systemTray.SystemTray.logger.error("TrayIcon could not be added.", e); } } else { trayIcon.setImage(trayImage); } ((TrayPopup) _native).setTitleBarImage(iconFile); } }); } public void setEnabled(final boolean setEnabled) { visible = !setEnabled; dispatch(new Runnable() { @Override public void run() { if (visible && !setEnabled) { tray.remove(trayIcon); } else if (!visible && setEnabled) { try { tray.add(trayIcon); } catch (AWTException e) { dorkbox.systemTray.SystemTray.logger.error("Error adding the icon back to the tray"); } } } }); } }