Examples of toFront()


Examples of com.sun.star.awt.XTopWindow.toFront()

        XTopWindow xTopWindow = 
                (XTopWindow) UnoRuntime.queryInterface(
                XTopWindow.class,
                xModel.getCurrentController().getFrame().getContainerWindow());
   
        xTopWindow.toFront();       
    }
}
View Full Code Here

Examples of de.sciss.app.AbstractWindow.toFront()

            final Constructor cons = clz.getConstructor( new Class[] { Session.class });
            rcvEdit = (ReceiverEditor) cons.newInstance( new Object[] { doc })// XXX deligate to SurfacePaneFrame
            rcvEdit.init( rcv );
            rcvEditFrame = rcvEdit.getView();
            rcvEditFrame.setVisible( true );
            rcvEditFrame.toFront();
            showCursorTab();
          }
        }
      }
      catch( InstantiationException e1 ) {
View Full Code Here

Examples of de.sciss.common.AppWindow.toFront()

      if( filterFrame == null ) {
        final Main root = (Main) AbstractApplication.getApplication();
        filterFrame = new FilterDialog( root, doc );
      }
      filterFrame.setVisible( true );
      filterFrame.toFront();
    }
  }
 
// ---------------- Action objects for window operations ----------------
View Full Code Here

Examples of de.sciss.eisenkraut.gui.AudioFileInfoPalette.toFront()

   
      if( infoBox == null ) {
        infoBox = new AudioFileInfoPalette();
      }
      infoBox.setVisible( true );
      infoBox.toFront();
    }
  }

  private class ActionRevealFile
  extends MenuAction
View Full Code Here

Examples of es.emergya.bbdd.bean.Incidencia.toFront()

                    if (f.getName().equals(
                        ((Recurso) menuObjective)
                            .getIdentificador())
                        && f instanceof SummaryDialog) {
                      if (f.isShowing()) {
                        f.toFront();
                        f.setExtendedState(JFrame.NORMAL);
                        return null;
                      }
                    }
                  }
View Full Code Here

Examples of es.uma.ama.maudeWorkstationGUI.ui.views.MaudeDialogoMostrar.toFront()

    if(id.equals("Modules")){
      if(MaudeWorkstationGUIPlugin.getDefault().isRunningMaude()){
        if(MaudeWorkstationGUIPlugin.getDefault().isEnabledDatabase()){
          MaudeDialogoMostrar diag= MaudeDialogoMostrar.getInstance();
          diag.setVisible(true);
          diag.toFront();
          diag.requestFocus();
        }
        else
          MessageDialog.openInformation(window.getShell(),
                Messages.getString("MaudeWorkstationGUIPlugin.NOTICE"), //$NON-NLS-1$
View Full Code Here

Examples of ij.plugin.frame.RoiManager.toFront()

    ImagePlus imp = IJ.getImage();
    imp.setHideOverlay(false);
    if (imp.getOverlay()==null) {
      RoiManager rm = RoiManager.getInstance();
      if (rm!=null && rm.getCount()>1) {
        if (!IJ.isMacro()) rm.toFront();
        rm.runCommand("show all with labels");
      }
    }
  }
View Full Code Here

Examples of java.awt.Dialog.toFront()

        // {0} will be replaced by WizardDesriptor.Panel.getComponent().getName()
        wizardDescriptor.setTitleFormat(new MessageFormat("{0}"));
        wizardDescriptor.setTitle(getName());
        Dialog dialog = DialogDisplayer.getDefault().createDialog(wizardDescriptor);
        dialog.setVisible(true);
        dialog.toFront();
        boolean cancelled = wizardDescriptor.getValue() != WizardDescriptor.FINISH_OPTION;
        if (!cancelled) {
            //General parameters:
            File file = (File) wizardDescriptor.getProperty("file");
            Character separator = (Character) wizardDescriptor.getProperty("separator");
View Full Code Here

Examples of java.awt.Dialog.toFront()

        WizardDescriptor wizardDescriptor = new WizardDescriptor(wizardIterator);
        wizardDescriptor.setTitleFormat(new MessageFormat("{0} ({1})"));
        wizardDescriptor.setTitle(NbBundle.getMessage(getClass(), "ImportSpigot.wizard.title"));
        Dialog dialog = DialogDisplayer.getDefault().createDialog(wizardDescriptor);
        dialog.setVisible(true);
        dialog.toFront();

        boolean cancelled = wizardDescriptor.getValue() != WizardDescriptor.FINISH_OPTION;
        if (!cancelled) {
            ImporterWizardUI wizardUI = wizardIterator.getCurrentWizardUI();
View Full Code Here

Examples of java.awt.Dialog.toFront()

                        // bring the AWT dialog to the top. This happens if the
                        // dialog is given a null parent frame. When opened, the dialog
                        // can be hidden by the SWT window even when it obtains focus.
                        // Calling toFront() solves the problem.
                        focusOwner.requestFocus();
                        awtDialog.toFront();
                    } catch (NullPointerException e) {
                        // Some dialogs (e.g. Windows page setup and print dialogs on JDK 1.5+) throw an NPE on
                        // requestFocus(). There's no way to check ahead of time, so just swallow the NPE here.
                    }
                }
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.