Examples of toFront()


Examples of net.sf.jftp.gui.hostchooser.WebdavHostChooser.toFront()

        }
        else if(e.getActionCommand().equals("webdavcon"))
        {
            //jftp.safeDisconnect();
            WebdavHostChooser hc = new WebdavHostChooser();
            hc.toFront();

            //hc.setModal(true);
            hc.update();
        }
        else if(e.getActionCommand().equals("close"))
View Full Code Here

Examples of net.sf.jftp.gui.hostchooser.WebdavHostChooser.toFront()

        {
            // jftp.safeDisconnect();
            // Switch windows
            // jftp.mainFrame.setVisible(false);
            HostChooser hc = new HostChooser();
            hc.toFront();

            //hc.setModal(true);
            hc.update();
        }
    }
View Full Code Here

Examples of net.sf.jftp.tools.SshShell.toFront()

            if(shell)
            {
              SshShell s = new SshShell(properties, utmp, ptmp, potmp);
              setCursor(new Cursor(Cursor.DEFAULT_CURSOR));
              this.dispose();
              s.toFront();

              return;
            }
            else
            {
View Full Code Here

Examples of net.sourceforge.ganttproject.gui.TipsDialog.toFront()

                    options.getHeight());
        }
        if (options.getOpenTips() && !byCommandLine) {
            TipsDialog tips = new TipsDialog(this, options.getOpenTips());
            tips.show();
            tips.toFront(); // somehow assure, that the TipsDialog is the top
            // window an MacOS
        }
        System.err.println("8. finalizing...");
        applyComponentOrientation(GanttLanguage.getInstance()
                .getComponentOrientation());
View Full Code Here

Examples of net.sourceforge.squirrel_sql.client.gui.HtmlViewerSheet.toFront()

    {
      URL url = _file.toURI().toURL();
      FileViewerFactory factory = FileViewerFactory.getInstance();
      HtmlViewerSheet viewer = factory.getViewer(_app.getMainFrame(), url);
      viewer.setVisible(true);
      viewer.toFront();
      viewer.requestFocus();
    }
    catch (IOException ex)
    {
      final String msg = s_stringMgr.getString("ViewFileCommand.error.reading" + _file.getAbsolutePath());
View Full Code Here

Examples of open.dolphin.ui.MainFrame.toFront()

       
        // Windowメニューのアクション
        // 選択されたらフレームを前面にする
        Action windowAction = new AbstractAction(title) {
            public void actionPerformed(ActionEvent e) {
                frame.toFront();
            }
        };
       
        // インスタンスを生成する
        final WindowSupport ret
View Full Code Here

Examples of org.apache.cayenne.modeler.util.CayenneDialog.toFront()

                dialog.setModal(false);
            }
            dialog.setResizable(inView.isResizable());

            setupWindow(dialog.getRootPane(), inView, true);
            dialog.toFront();
        }

        /**
         * Overrides super implementation to allow using Scope together with normal Swing
         * code that CayenneModeler already has.
View Full Code Here

Examples of org.apache.harmony.awt.wtk.NativeWindow.toFront()

    public void toFront() {
        toolkit.lockAWT();
        try {
            NativeWindow win = getNativeWindow();
            if (win != null) {
                win.toFront();
            }
        } finally {
            toolkit.unlockAWT();
        }
    }
View Full Code Here

Examples of org.apache.isis.viewer.dnd.awt.LoginDialog.toFront()

        final LoginDialog dialog = new LoginDialog(getAuthenticationManager());
        if (request != null) {
            dialog.setUserName(request.getName());
        }
        dialog.setVisible(true);
        dialog.toFront();
        dialog.login();
        dialog.setVisible(false);
        dialog.dispose();
        session = dialog.getSession();
        return session;
View Full Code Here

Examples of org.noos.xing.mydoggy.plaf.ui.cmp.ContentDialog.toFront()

                }

                // Setup dialog
                JDialog dialog = new ContentDialog(resourceManager, (PlafContent) content, contentUI, parentFrame);
                dialog.addWindowFocusListener(new ContentDialogFocusListener((PlafContent) content));
                dialog.toFront();
                dialog.setVisible(true);
                SwingUtil.requestFocus(dialog);
            } else if (oldValue && !newValue) {
                Window window = SwingUtilities.windowForComponent(content.getComponent());
                window.setVisible(false);
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.