/* * Copyright (c) 2006-2010 Chris Smith, Shane Mc Cormack, Gregory Holmes * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ package com.dmdirc.addons.systray; import com.dmdirc.ui.IconManager; import com.dmdirc.Main; import com.dmdirc.actions.ActionManager; import com.dmdirc.actions.interfaces.ActionType; import com.dmdirc.actions.CoreActionType; import com.dmdirc.addons.ui_swing.MainFrame; import com.dmdirc.config.IdentityManager; import com.dmdirc.config.prefs.PreferencesCategory; import com.dmdirc.config.prefs.PreferencesManager; import com.dmdirc.config.prefs.PreferencesSetting; import com.dmdirc.config.prefs.PreferencesType; import com.dmdirc.config.prefs.validator.ValidationResponse; import com.dmdirc.plugins.Plugin; import com.dmdirc.ui.messages.Styliser; import java.awt.AWTException; import java.awt.Frame; import java.awt.MenuItem; import java.awt.PopupMenu; import java.awt.SystemTray; import java.awt.TrayIcon; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; /** * The Systray plugin shows DMDirc in the user's system tray, and allows * notifications to be disabled. * @author chris */ public final class SystrayPlugin extends Plugin implements ActionListener, MouseListener, com.dmdirc.interfaces.ActionListener { /** The command we registered. */ private PopupCommand command; /** The tray icon we're currently using. */ private final TrayIcon icon; /** Creates a new system tray plugin. */ public SystrayPlugin() { super(); final MenuItem show = new MenuItem("Show/hide"); final MenuItem quit = new MenuItem("Quit"); final PopupMenu menu = new PopupMenu(); menu.add(show); menu.add(quit); show.addActionListener(this); quit.addActionListener(this); icon = new TrayIcon(IconManager.getIconManager().getImage("logo"), "DMDirc", menu); icon.setImageAutoSize(true); icon.addMouseListener(this); } /** * Sends a notification via the system tray icon. * @param title The title of the notification * @param message The contents of the notification * @param type The type of notification */ public void notify(final String title, final String message, final TrayIcon.MessageType type) { icon.displayMessage(title, Styliser.stipControlCodes(message), type); } /** * Sends a notification via the system tray icon. * @param title The title of the notification * @param message The contents of the notification */ public void notify(final String title, final String message) { notify(title, message, TrayIcon.MessageType.NONE); } /** * {@inheritDoc} * * @param e Action event */ @Override public void actionPerformed(final ActionEvent e) { if (e.getActionCommand().equals("Show/hide")) { Main.getUI().getMainWindow().setVisible(!Main.getUI().getMainWindow().isVisible()); } else if (e.getActionCommand().equals("Quit")) { Main.quit(); } } /** {@inheritDoc} */ @Override public ValidationResponse checkPrerequisites() { if (SystemTray.isSupported()) { return new ValidationResponse(); } else { return new ValidationResponse("System tray is not supported on this platform."); } } /** {@inheritDoc} */ @Override public void onLoad() { try { SystemTray.getSystemTray().add(icon); command = new PopupCommand(this); } catch (AWTException ex) { // Should probably unload ourself here? } ActionManager.addListener(this, CoreActionType.CLIENT_MINIMISED); } /** {@inheritDoc} */ @Override public void onUnload() { SystemTray.getSystemTray().remove(icon); command.unregister(); ActionManager.removeListener(this); } /** {@inheritDoc} */ @Override public void showConfig(final PreferencesManager manager) { final PreferencesCategory category = new PreferencesCategory("System Tray", "General configuration settings"); category.addSetting(new PreferencesSetting(PreferencesType.BOOLEAN, getDomain(), "autominimise", "Auto-hide DMDirc " + "when minimised", "If this option is enabled, the systray " + "plugin will hide DMDirc to the system tray whenever DMDirc is" + " minimised")); manager.getCategory("Plugins").addSubCategory(category); } /** * {@inheritDoc} * * @param e Mouse event */ @Override public void mouseClicked(final MouseEvent e) { if (e.getButton() == MouseEvent.BUTTON1) { if (Main.getUI().getMainWindow().isVisible()) { Main.getUI().getMainWindow().setVisible(false); } else { Main.getUI().getMainWindow().setVisible(true); ((MainFrame) Main.getUI().getMainWindow()).setState(Frame.NORMAL); ((MainFrame) Main.getUI().getMainWindow()).toFront(); } } } /** * {@inheritDoc} * * @param e Mouse event */ @Override public void mousePressed(final MouseEvent e) { //Ignore } /** * {@inheritDoc} * * @param e Mouse event */ @Override public void mouseReleased(final MouseEvent e) { //Ignore } /** * {@inheritDoc} * * @param e Mouse event */ @Override public void mouseEntered(final MouseEvent e) { //Ignore } /** * {@inheritDoc} * * @param e Mouse event */ @Override public void mouseExited(final MouseEvent e) { //Ignore } /** {@inheritDoc} */ @Override public void processEvent(final ActionType type, final StringBuffer format, final Object... arguments) { if (type == CoreActionType.CLIENT_MINIMISED && IdentityManager.getGlobalConfig().getOptionBool(getDomain(), "autominimise")) { Main.getUI().getMainWindow().setVisible(false); } } }