Package com.jeans.trayicon

Examples of com.jeans.trayicon.WindowsTrayIcon


    private JPluckX() {
        if (Platform.isWindows()) {
            try {
                WindowsTrayIcon.initTrayIcon("JPluckX");
                Image icon = ImageIO.read(JPluckX.class.getClassLoader().getResource("net/sf/jpluck/res/jpluck16.gif"));
                trayIcon = new WindowsTrayIcon(icon, 16, 16);
                trayIcon.setToolTipText("JPluck X (click to activate)");
                trayIcon.addActionListener(new ActionListener() {
                        public void actionPerformed(ActionEvent ev) {
                            trayIcon.setVisible(false);
                            activeListFrame.show();
View Full Code Here

TOP

Related Classes of com.jeans.trayicon.WindowsTrayIcon

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.