Package net.sf.jpluck

Examples of net.sf.jpluck.ClientConfiguration


            UIManager.installLookAndFeel("PlasticXP", "com.jgoodies.plaf.plastic.PlasticXPLookAndFeel");
      if (Platform.isWindows()) {
        UIManager.installLookAndFeel("Windows (JGoodies)", "com.jgoodies.plaf.windows.ExtWindowsLookAndFeel");
            }
            try {
        ClientConfiguration conf = ClientConfiguration.getDefault();
        conf.applyPlasticTheme();
                UIManager.setLookAndFeel(conf.getLookAndFeel());
            } catch (Exception e) {
                e.printStackTrace();
            }

            JPluckX jpluckx = JPluckX.getInstance();
View Full Code Here


                return true;
            }
            listFrame.removeWindowListener(activationListener);
            listFrameList.remove(listFrame);
            if (listFrameList.size() == 0) {
                ClientConfiguration conf = ClientConfiguration.getDefault();
                conf.storeListFramePrefs(listFrame);
                exit();
            }
            return true;
        } else {
            return false;
View Full Code Here

        return minimizedToTrayIcon;
    }

    private void exit() {
        stopAutoUpdate();
        ClientConfiguration conf = ClientConfiguration.getDefault();
        conf.storeAutoUpdateFramePrefs(autoUpdateFrame);
        conf.cleanup();
        if (Platform.isWindows() && (trayIcon != null)) {
            trayIcon.freeIcon();
            WindowsTrayIcon.cleanUp();
        }
        System.exit(ExitCodes.OK);
View Full Code Here

TOP

Related Classes of net.sf.jpluck.ClientConfiguration

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.