⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 systemtray.java

📁 JBother是纯Java开发的Jabber(即时消息开源软件)客户端。支持群组聊天
💻 JAVA
字号:
/* * Copyright (C) 2004 Sun Microsystems, Inc. All rights reserved. Use is * subject to license terms. * * This program is free software; you can redistribute it and/or modify * it under the terms of the Lesser GNU General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA. * * Customized for Systray JBother plugin by Yury Soldak * Jan 07 2005 * */package org.jdesktop.jdic.tray;import org.jdesktop.jdic.tray.internal.SystemTrayService;import org.jdesktop.jdic.tray.internal.ServiceManager;/** *  The <code>SystemTray</code> class represents the System Tray for a desktop. *  For any desktop there may be more than one instance of the System *  Tray but this is most commonly not the case. Typically a desktop *  will have one SystemTray. On Gnome and Windows this tray is  *  referred to as the Notification Area.  *  */public class SystemTray {		static SystemTrayService sts;    int trayIndex;    /**     * SystemTray constructor     *     */    private SystemTray() {}    private SystemTray(int index) {      trayIndex = index;	    sts = (SystemTrayService) ServiceManager.getService( ServiceManager.SYSTEM_TRAY_SERVICE);	    /*	    if( System.getProperty( "os.name" ).startsWith( "Windows" ) ) {	      sts = new WinSystemTrayService();	    } else if ( System.getProperty( "os.name" ).startsWith( "Linux" ) ) {	      sts = new GnomeSystemTrayService();	    } else {		    System.out.println("SystemTray: Your OS " + System.getProperty( "os.name" ) + " is not supported.");	    }	    */    }    /**     * Gets the default SystemTray for the desktop.     * @return SystemTray     */    public static SystemTray getDefaultSystemTray() {        return new SystemTray(0);    }    /**     * Adds a <code>TrayIcon</code> to the SystemTray     * @param trayIcon     */    public void addTrayIcon(TrayIcon trayIcon) {        if (sts != null) {            sts.addTrayIcon(trayIcon, trayIcon.getTrayIconService(), trayIndex);        }    }    /**     * Removes the specified <code>TrayIcon</code> from the SystemTray     * @param trayIcon     */    public void removeTrayIcon(TrayIcon trayIcon) {        if (sts != null) {            sts.removeTrayIcon(trayIcon, trayIcon.getTrayIconService(),                    trayIndex);        }    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -