Examples of createDialog()


Examples of org.openide.TopManager.createDialog()

                dialog.dispose();
            }

        });
      
        dialog = topmanager.createDialog(exdialogdescriptor);
        dialog.setVisible(true);
       
             
    }
View Full Code Here

Examples of simtools.ui.DataSourceInformationDialog.createDialog()

                return;
            }
            if (o instanceof DataSource) {
                try {
                    DataSourceInformationDialog di = new DataSourceInformationDialog((DataSource) o);
                    JDialog jd = di.createDialog(JSynoptic.gui.getOwner());
                    if (jd != null) {
                        jd.setVisible(true);
                    }
                } catch (DataException ee) {
                    JSynoptic.setStatus(ee.getMessage());
View Full Code Here

Examples of simtools.ui.PlotInformationDialog.createDialog()

  public boolean doAction(double x, double y, Object o, String action, CompoundEdit undoableEdit) {

    if (action.equals(resources.getStringValue("information"))){
      // Display plot information
      PlotInformationDialog di = new TimePlotStatisticsDialog(this);
      JDialog jd = di.createDialog(JSynoptic.gui.getOwner());
      if (jd!=null) jd.show();
      return true;
   
    } else {
        return super.doAction(x,y,o,action, undoableEdit);
View Full Code Here

Examples of simtools.ui.PlotInformationDialog.createDialog()

            return true;
        }
        if (action.equals(resources.getStringValue("information"))) {

            PlotInformationDialog di = new PlotInformationDialog(this);
            JDialog jd = di.createDialog(JSynoptic.gui.getOwner());
            if (jd!=null) jd.show();
            return true;
        }
        for(int i=0;i<_curves.size();i++){
View Full Code Here

Examples of simtools.ui.TimePlotStatisticsDialog.createDialog()

  public boolean doAction(double x, double y, Object o, String action, CompoundEdit undoableEdit) {

    if (action.equals(resources.getStringValue("information"))){
      // Display plot information
      PlotInformationDialog di = new TimePlotStatisticsDialog(this);
      JDialog jd = di.createDialog(JSynoptic.gui.getOwner());
      if (jd!=null) jd.show();
      return true;
   
    } else {
        return super.doAction(x,y,o,action, undoableEdit);
View Full Code Here

Examples of syn3d.ui.PropertiesTransformDataUI.createDialog()

    public void doAction(Object action) {
        if (action==null) return;
        if (action.equals(NodeResourcesManager.resources.getString("Properties"))) {
          PropertiesTransformDataUI dui = new PropertiesTransformDataUI(this, data, properties, true, colorMapperManager);
            JDialog dialog = dui.createDialog(null, NodeResourcesManager.resources.getString("Properties"));
            dialog.show();
        }
    }
    
    /*
 
View Full Code Here

Examples of syn3d.ui.TransformDataUI.createDialog()

    public void doAction(Object action) {
        if (action==null) return;
        if (action.equals(NodeResourcesManager.resources.getString("Properties"))) {
            TransformDataUI dui = new TransformDataUI(this,data, true);
            JDialog dialog = dui.createDialog(null, NodeResourcesManager.resources.getString("Properties"));
          
            dialog.show();
          
         
        }
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.