Examples of HelpDialog


Examples of org.openscience.jmol.app.jmolpanel.HelpDialog

  }
 
  public void actionPerformed(ActionEvent e) {

    if (e.getSource() == helpButton) {
      HelpDialog webExportHelp = new HelpDialog(WebExport.getFrame(), WebExport
          .getHtmlResource(this, panelName + "_instructions"));
      webExportHelp.setVisible(true);
      webExportHelp.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
      return;
    }

    if (e.getSource() == remoteAppletPath) {// apparently no events are fired to
                                            // reach this, maybe "enter" does it
View Full Code Here

Examples of systeminformationmonitor.swing.HelpDialog

        sysInformationDialog.setVisible(true);
    }

    @Action
    public void helpDialog() {
        final HelpDialog helpDialog = new HelpDialog(getFrame(), true);
        XYCoord xyp = CalcDialogCenter.getDialogCenterLocation(getFrame(), helpDialog);
        helpDialog.setLocation(xyp.getX(), xyp.getY());
        helpDialog.setVisible(true);
    }
View Full Code Here

Examples of versusSNP.gui.dialogs.HelpDialog

      tabbedPane.setHeaderTexts();
      tabbedPane.setToolTipTexts();
    } else if (obj == menu.getMenuRunBlast()) {
      loopBlastRunner(new RunBlastDialog(document.getGenomeNames()));
    } else if (obj == menu.getMenuHelpHelp()) {
      new HelpDialog().showDialog();
    } else if (obj == menu.getMenuHelpAbout()) {
      new AboutDialog().showDialog();
    }
  }
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.