Examples of AboutDialog


Examples of org.apache.uima.tools.util.gui.AboutDialog

    }

    this.getContentPane().setBackground(Color.WHITE);

    // create about dialog
    aboutDialog = new AboutDialog(this, "About Annotation Viewer");

    // Create Menu Bar
    JMenuBar menuBar = new JMenuBar();
    setJMenuBar(menuBar);
View Full Code Here

Examples of org.apache.uima.tools.util.gui.AboutDialog

    } catch (IOException e) {
      System.err.println("Image could not be loaded: " + e.getMessage());
    }

    // create about dialog
    aboutDialog = new AboutDialog(this, "About Document Analyzer");
    this.outputFileSelected = outputFileSelected;
    this.interactive = interactiveDA;
    this.javaViewerUCRBisSelected = jvucrbis;

    // Creating Menu Bar
View Full Code Here

Examples of org.apache.uima.tools.util.gui.AboutDialog

    });

    aboutMenuItem.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        if (e.getActionCommand() == "About") {
          AboutDialog dialog = new AboutDialog(InstallPear.this, "About PEAR Installer");
          dialog.setVisible(true);
        }
      }
    });
    helpMenu.add(helpMenuItem);
    helpMenu.add(aboutMenuItem);
View Full Code Here

Examples of org.bioinfo.ngs.qc.qualimap.gui.dialogs.AboutDialog

      splashWindow.setVisible(false);
        if(e.getActionCommand().equalsIgnoreCase(WM_COMMAND_EXIT) ){
        this.closeHomeFrame();
      }
      else if (e.getActionCommand().equalsIgnoreCase(WM_COMMAND_ABOUT)){
      AboutDialog about = new AboutDialog(HomeFrame.this);
      about.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
      about.setLocationRelativeTo(this);
      about.setVisible(true);
      }
      else if(e.getActionCommand().equalsIgnoreCase(WM_COMMAND_WEB_QUALIMAP)){
        openUrl("http://bioinfo.cipf.es/qualimap");
      }
      else if(e.getActionCommand().equalsIgnoreCase(WM_COMMAND_WEB_BIOINFO)){
View Full Code Here

Examples of org.eclipse.ui.internal.dialogs.AboutDialog

   * @see org.eclipse.core.commands.IHandler#execute(org.eclipse.core.commands.ExecutionEvent)
   */
  public Object execute(ExecutionEvent event) throws ExecutionException {
    IWorkbenchWindow window = HandlerUtil
        .getActiveWorkbenchWindowChecked(event);
    new AboutDialog(window.getShell()).open();
    return null;
  }
View Full Code Here

Examples of org.eclipse.ui.internal.dialogs.AboutDialog

     * (non-Javadoc) Method declared on IAction.
     */
    public void run() {
        // make sure action is not disposed
        if (workbenchWindow != null) {
      new AboutDialog(workbenchWindow.getShell()).open();
    }
    }
View Full Code Here

Examples of org.eclipse.ui.internal.dialogs.AboutDialog

public class HelpAboutAction extends BaseActionDelegate {

  public void run(IAction action) {
    if (window != null) {
      new AboutDialog(window.getShell()).open();
        }
  }
View Full Code Here

Examples of org.eobjects.datacleaner.windows.AboutDialog

    final JMenuItem aboutMenuItem = WidgetFactory.createMenuItem("About DataCleaner", "images/menu/about.png");
    aboutMenuItem.addActionListener(new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent e) {
        new AboutDialog(_windowContext).setVisible(true);
      }
    });

    final JMenu fileMenu = WidgetFactory.createMenu("File", 'F');
    fileMenu.add(newJobMenuItem);
View Full Code Here

Examples of org.gvt.gui.AboutDialog

    this.main = main;
  }

  public void run()
  {
    new AboutDialog(main.getShell()).open();
  }
View Full Code Here

Examples of org.gvt.inspector.AboutDialog

    this.main = main;
  }

  public void run()
  {
    new AboutDialog(main.getShell()).open();
  }
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.