Package com.mucommander.ui.dialog.startup

Examples of com.mucommander.ui.dialog.startup.CheckVersionDialog


        super(mainFrame, properties);
    }

    @Override
    public void performAction() {
        new CheckVersionDialog(mainFrame, true);
    }
View Full Code Here


            if(splashScreen!=null)
                splashScreen.dispose();

            // Check for newer version unless it was disabled
            if(MuConfigurations.getPreferences().getVariable(MuPreference.CHECK_FOR_UPDATE, MuPreferences.DEFAULT_CHECK_FOR_UPDATE))
                new CheckVersionDialog(WindowManager.getCurrentMainFrame(), false);

            // If no theme is configured in the preferences, ask for an initial theme.
            if(showSetup)
                new InitialSetupDialog(WindowManager.getCurrentMainFrame()).showDialog();
        }
View Full Code Here

TOP

Related Classes of com.mucommander.ui.dialog.startup.CheckVersionDialog

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.