Examples of SplashScreen


Examples of net.sf.jpluck.apps.jpluckx.ui.SplashScreen

                System.exit(ExitCodes.OK);
            }
            Spider.setOffline(cl.hasOption("offline"));

            if (ClientConfiguration.getDefault().isShowSplashScreen()) {
                splashScreen = new SplashScreen();
                splashScreen.show();
            }

            GUIUtil.configureTextFieldKeyBindings();
      UIManager.installLookAndFeel("Motif (JGoodies)", "com.jgoodies.plaf.motif.ExtMotifLookAndFeel");
View Full Code Here

Examples of net.sourceforge.marathon.display.SplashScreen

     * Show the splash screen. The splash can be suppressed by giving
     * <code>-nosplash</code> on command line.
     */
    private static void showSplash() {
        if (argProcessor.showSplash())
            new SplashScreen();
    }
View Full Code Here

Examples of net.sourceforge.parus.ntrviewer.gui.SplashScreen

    public String getCurrentLookAndFeel() {
        return currentLookAndFeel;
    }

    public void showSplashScreen() {
        SplashScreen splashScreen = new SplashScreen();
        splashScreen.show();
    }
View Full Code Here

Examples of no.geosoft.cc.ui.SplashScreen

     */
    public static void main(String[] args) {
        try {
            System.setProperty("sun.awt.exception.handler", ExceptionHandler.class.getName());

            final SplashScreen splash = new SplashScreen("/org/owasp/webscarab/webscarab_logo.gif");
            splash.open(10000);
            initLogging();

            try {
                Preferences.loadPreferences(null);
            } catch (IOException ioe) {
                System.err.println("Error loading preferences: " + ioe);
                System.exit(1);
            }

            // Provide default Copy/Paste/etc actions on text components
            Toolkit.getDefaultToolkit().getSystemEventQueue().push(new TextComponentContextMenu());

            Framework framework = new Framework();

            boolean lite = Boolean.valueOf(Preferences.getPreference("WebScarab.lite", "false")).booleanValue();

            File t = null;
            if (args != null && args.length == 1) {
              t = new File(args[0]);
            }
            final File session = t;
           
            final WebScarabUI ui;
           
            if (! lite) {
              UIFramework uif = new UIFramework(framework);
                loadAllPlugins(framework, uif);
                ui = uif;
            } else {
              Lite uif = new Lite(framework);
                loadLitePlugins(framework, uif);
                ui = uif;
            }
            try {
              ExceptionHandler.setParentComponent(ui.getFrame());
                SwingUtilities.invokeAndWait(new Runnable() {
                    public void run() {
                      JFrame frame = ui.getFrame();
                        frame.setVisible(true);
                        frame.toFront();
                        frame.requestFocus();
                        splash.close();
                    if (session != null && session.isDirectory())
                      ui.loadSession(session);
                    else
                          ui.createTemporarySession();

View Full Code Here

Examples of org.analyse.core.gui.SplashScreen

           
        } catch (Exception e) {
        }
        /** ****************** */

        splash = new SplashScreen();

        splash.setProgress(0);

        globalActionCollection = new GlobalActionCollection();

View Full Code Here

Examples of org.csm.jupdater.gui.SplashScreen

    public static void main(String[] args) {

        new Thread() {

            public void run() {
                SplashScreen sp = new SplashScreen(ConfigurationManager.getProperty("SPLASH_IMAGE"));
                try {
                    sp.setVisible(true);
                    sp.changeShowedMessage("Initiating jUpdater");
                    sp.changeShowedMessage("Checking Versions");
                    sp.changeShowedMessage(UpdateManager.getActualVersion());

                    int updatesRemaining = DownloadManager.checkForUpdates(ConfigurationManager.getProperty("UPDATE_FILE_URL"),
                            ConfigurationManager.getProperty("UPDATE_FILE_PATH"));
                    sp.changeShowedMessage("Updates Remaning: " + updatesRemaining);

                    UpdateManager.downloadRemainingUpdates();

                    UpdateManager.installDownloadedUpdates();

                    sp.changeShowedMessage("Executing: "
                            + ConfigurationManager.getProperty("EXECUTION_FILE"));

                    Executer.executeJar(ConfigurationManager.getProperty("EXECUTION_FILE"));

                    sp.changeShowedMessage("Done");

                } catch (InterruptedException ex) {
                    Logger.getLogger(App.class.getName()).error(
                            ex.getStackTrace());
                } catch (IOException ex) {
                    Logger.getLogger(App.class.getName()).error(
                            ex.getStackTrace());
                } catch (Exception ex) {
                    Logger.getLogger(App.class.getName()).warn(
                            ex.getMessage());
                    Logger.getLogger(App.class.getName()).error(
                            ex.getStackTrace().toString());
                } finally {
                    sp.dispose();
                }
            }
        }.start();
    }
View Full Code Here

Examples of org.jwall.app.ui.SplashScreen

    log.info("Using filters from " + url);
    System.setProperty(FilterSet.PROPERTY_DEFAULT_FILTER_URL, "" + url);
    System.setProperty(PolicyCompilerImpl.PROPERTY_COMPILER_XSLT_FILE,
        "/templates/WeakPositiveRules.xslt");

    SplashScreen splash = new SplashScreen();
    splash.setMessage(NAME + " " + VERSION);
    splash.setSubtitle("Copyright by Christian Bockermann <chris@jwall.org>");
    splash.setVisible(true);

    splash.setProgress(50);

    setupUI();

    splash.setProgress(100);
    try {
      Thread.sleep(100);
    } catch (Exception e) {
    }
    splash.setVisible(false);
  }
View Full Code Here

Examples of org.mule.util.SplashScreen

        fireNotification(new MuleContextNotification(this, MuleContextNotification.CONTEXT_STARTED));

        if (logger.isInfoEnabled())
        {
            SplashScreen startupScreen = buildStartupSplash();
            logger.info(startupScreen.toString());
        }
    }
View Full Code Here

Examples of org.mule.util.SplashScreen

        notificationManager.dispose();
        workManager.dispose();

        if ((getStartDate() > 0) && logger.isInfoEnabled())
        {
            SplashScreen shutdownScreen = buildShutdownSplash();
            logger.info(shutdownScreen.toString());
        }

        //registryBroker.dispose();

        setExecutionClassLoader(null);
View Full Code Here

Examples of org.mule.util.SplashScreen

        registryBroker.removeRegistry(registry);
    }

    protected SplashScreen buildStartupSplash()
    {
        SplashScreen startupScreen = config.isContainerMode()
                                         ? new ApplicationStartupSplashScreen()
                                         : new ServerStartupSplashScreen();
        startupScreen.setHeader(this);
        startupScreen.setFooter(this);
        return startupScreen;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.