Examples of ActionGroup


Examples of org.eclipse.ui.actions.ActionGroup

   * Returns an empty action groups to remove the action bar at the top
   * of the navigator view.
   */
  @Override
  protected ActionGroup createCommonActionGroup() {
    return new ActionGroup() {
    };
  }
View Full Code Here

Examples of org.eclipse.ui.actions.ActionGroup

              getVerticalRuler(), null));
    }

    // ActionGroup rg = new RefactorActionGroup(this,
    // ITextEditorActionConstants.GROUP_EDIT);
    ActionGroup jsg = new PHPSearchActionGroup(this);

    // We have to keep the context menu group separate to have better
    // control over positioning
    fActionGroups = new CompositeActionGroup(new ActionGroup[] { jsg });
    fContextMenuGroup = new CompositeActionGroup(new ActionGroup[] { jsg });
View Full Code Here

Examples of org.openpnp.gui.support.ActionGroup

  public JobPanel(Configuration configuration, MainFrame frame, MachineControlsPanel machineControlsPanel) {
    this.configuration = configuration;
    this.frame = frame;
    this.machineControlsPanel = machineControlsPanel;
   
    jobSaveActionGroup = new ActionGroup(saveJobAction, saveJobAsAction);
    jobSaveActionGroup.setEnabled(false);

    boardLocationSelectionActionGroup = new ActionGroup(removeBoardAction,
        captureCameraBoardLocationAction,
        captureToolBoardLocationAction, newPlacementAction,
        moveCameraToBoardLocationAction, moveToolToBoardLocationAction,
        twoPointLocateBoardLocationAction);
    boardLocationSelectionActionGroup.setEnabled(false);

    placementSelectionActionGroup = new ActionGroup(removePlacementAction,
        captureCameraPlacementLocation, captureToolPlacementLocation,
        moveCameraToPlacementLocation, moveToolToPlacementLocation);
    placementSelectionActionGroup.setEnabled(false);

    boardLocationsTableModel = new BoardLocationsTableModel(configuration);
View Full Code Here

Examples of org.openpnp.gui.support.ActionGroup

      .userNodeForPackage(BoardsPanel.class);

  public BoardsPanel(Configuration configuration) {
    this.configuration = configuration;

    boardSelectionActionGroup = new ActionGroup(newPlacementAction);
    boardSelectionActionGroup.setEnabled(false);

    placementSelectionActionGroup = new ActionGroup(removePlacementAction);
    placementSelectionActionGroup.setEnabled(false);

    boardsTableModel = new BoardsTableModel(configuration);
    placementsTableModel = new PlacementsTableModel(configuration);
View Full Code Here

Examples of org.openpnp.gui.support.ActionGroup

    table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
   
    configurationPanel = new JPanel();
    configurationPanel.setBorder(new TitledBorder(null, "Configuration", TitledBorder.LEADING, TitledBorder.TOP, null, null));

    feederSelectedActionGroup = new ActionGroup(deleteFeederAction,
        feedFeederAction, showPartAction);

    table.getSelectionModel().addListSelectionListener(
        new ListSelectionListener() {
          @Override
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.