Examples of HelpAction


Examples of com.simonepezzano.actions.HelpAction

  public ApplicationActionBarAdvisor(IActionBarConfigurer configurer) {
    super(configurer);
  }

  protected void makeActions(final IWorkbenchWindow window) {
    showHelpAction = new HelpAction();
    showHelpAction.setText("&Help");
    preferences = ActionFactory.PREFERENCES.create(window);
    exitAction = ActionFactory.QUIT.create(window);
    aboutAction = ActionFactory.ABOUT.create(window);
    openUsersAction = new OpenUsersAction();
View Full Code Here

Examples of cysbml.cyactions.HelpAction

    CyMenus menus = Cytoscape.getDesktop().getCyMenus();
      menus.addCytoscapeAction(new ImportAction(getIconForName("import"), this));
      menus.addCytoscapeAction(new BiomodelAction(getIconForName("biomodel"), this));
      menus.addCytoscapeAction(new ValidationAction(getIconForName("validation"), this));
      menus.addCytoscapeAction(new ChangeStateAction(getIconForName("changestate"), this));
      menus.addCytoscapeAction(new HelpAction(getIconForName("help"), this));
    menus.addCytoscapeAction(new SaveLayoutAction(getIconForName("savelayout"), this));
    menus.addCytoscapeAction(new LoadLayoutAction(getIconForName("loadlayout"), this));
  }
View Full Code Here

Examples of net.sf.jabref.HelpAction

   
   
    public ManagePluginsDialog(JabRefFrame frame) {
        this.frame = frame;
        diag = new JDialog(frame, Globals.lang("Plugin manager"), false);
        help.addActionListener(new HelpAction(Globals.helpDiag, GUIGlobals.pluginHelp, "Help"));
        JPanel pan = new JPanel();
        pan.setLayout(new BorderLayout());

        JLabel lab = new JLabel
                (Globals.lang("Plugins installed in your user plugin directory (%0):",
View Full Code Here

Examples of net.sf.jabref.HelpAction

        this.frame = frame;
        this.fetcher = fetcher;

        action = new FetcherAction();

        help = new HelpAction(Globals.helpDiag, fetcher.getHelpPage(), "Help");
        helpBut.addActionListener(help);
        helpBut.setMargin(new Insets(0, 0, 0, 0));
        tf.setPreferredSize(new Dimension(1,tf.getPreferredSize().height));
       
        tf.setName("tf");
View Full Code Here

Examples of net.sf.jabref.HelpAction

        selectAll.addActionListener(new SelectionButton(true));
        deselectAll.addActionListener(new SelectionButton(false));
        deselectAllDuplicates.addActionListener(new DeselectDuplicatesButtonListener());
        deselectAllDuplicates.setEnabled(false);
        delete.addActionListener(deleteListener);
        help.addActionListener(new HelpAction(frame.helpDiag, GUIGlobals.importInspectionHelp));
        getContentPane().add(bb.getPanel(), BorderLayout.SOUTH);

        // Remember and default to last size:
        setSize(new Dimension(Globals.prefs.getInt("importInspectionDialogWidth"), Globals.prefs
            .getInt("importInspectionDialogHeight")));
View Full Code Here

Examples of net.sf.jabref.HelpAction

                    storeSettings();
                    dialog.dispose();
                }
            }
        });
        help.addActionListener(new HelpAction(Globals.helpDiag, GUIGlobals.journalAbbrHelp));

        AbstractAction cancelAction = new AbstractAction() {
            public void actionPerformed(ActionEvent e) {
                dialog.dispose();
            }
View Full Code Here

Examples of net.sf.jabref.HelpAction

        gbl.setConstraints(refresh, con);
        main.add(refresh);
        gbl.setConstraints(autoGroup, con);
        main.add(autoGroup);
        con.gridwidth = GridBagConstraints.REMAINDER;
        HelpAction helpAction = new HelpAction(frame.helpDiag,
                GUIGlobals.groupsHelp, "Help on groups");
        helpButton.addActionListener(helpAction);
        helpButton.setToolTipText(Globals.lang("Help on groups"));
        gbl.setConstraints(helpButton, con);
        main.add(helpButton);
View Full Code Here

Examples of org.openstreetmap.josm.actions.HelpAction

     */
    private static Action getHelpAction() {
        if (Main.main != null && Main.main.menu != null) {
            return Main.main.menu.help;
        }
        return new HelpAction();
    }
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.