Search in sources :

Example 1 with SaveAction

use of org.eclipse.gef.ui.actions.SaveAction in project jbosstools-hibernate by jbosstools.

the class DiagramViewer method createActions.

@SuppressWarnings("unchecked")
protected void createActions() {
    // super.createActions();
    // BEGIN: redefine super.createActions
    ActionRegistry registry = getActionRegistry();
    IAction action;
    action = new RefreshAction(this);
    registry.registerAction(action);
    getEditorSite().getActionBars().setGlobalActionHandler(ActionFactory.REFRESH.getId(), action);
    action = new UndoAction(this);
    registry.registerAction(action);
    getStackActions().add(action.getId());
    action = new RedoAction(this);
    registry.registerAction(action);
    getStackActions().add(action.getId());
    action = new SelectAllAction(this);
    registry.registerAction(action);
    action = new DeleteAction((IWorkbenchPart) this);
    registry.registerAction(action);
    getSelectionActions().add(action.getId());
    action = new SaveAction(this);
    registry.registerAction(action);
    getPropertyActions().add(action.getId());
    registry.registerAction(new PrintDiagramViewerAction(this));
    // END: redefine super.createActions
    getEditorSite().getActionBars().setGlobalActionHandler(ActionFactory.PRINT.getId(), getActionRegistry().getAction(ActionFactory.PRINT.getId()));
    getEditorSite().getActionBars().setGlobalActionHandler(ActionFactory.SELECT_ALL.getId(), getActionRegistry().getAction(ActionFactory.SELECT_ALL.getId()));
    action = new OpenMappingAction(this);
    registry.registerAction(action);
    action = new OpenSourceAction(this);
    registry.registerAction(action);
    action = new ExportImageAction(this);
    registry.registerAction(action);
    action = new AutoLayoutAction(this);
    registry.registerAction(action);
    ToggleConnectionsAction actionToggleConnections = new ToggleConnectionsAction(this);
    registry.registerAction(actionToggleConnections);
    action = new ToggleAssociationAction(this);
    registry.registerAction(action);
    action = new ToggleClassMappingAction(this);
    registry.registerAction(action);
    action = new ToggleForeignKeyConstraintAction(this);
    registry.registerAction(action);
    action = new TogglePropertyMappingAction(this);
    registry.registerAction(action);
    action = new ConnectionRouterFanAction(this);
    registry.registerAction(action);
    getPropertyActions().add(action.getId());
    action = new ConnectionRouterManhattanAction(this);
    registry.registerAction(action);
    getPropertyActions().add(action.getId());
    ToggleShapeExpandStateAction actionToggleShapeExpandState = new ToggleShapeExpandStateAction(this);
    registry.registerAction(actionToggleShapeExpandState);
    getSelectionActions().add(actionToggleShapeExpandState.getId());
    action = new ShapeExpandAction(this);
    registry.registerAction(action);
    getSelectionActions().add(action.getId());
    action = new ShapeCollapseAction(this);
    registry.registerAction(action);
    getSelectionActions().add(action.getId());
    ToggleShapeVisibleStateAction actionToggleShapeVisibleState = new ToggleShapeVisibleStateAction(this);
    registry.registerAction(actionToggleShapeVisibleState);
    getSelectionActions().add(actionToggleShapeVisibleState.getId());
    action = new ShapeHideAction(this);
    registry.registerAction(action);
    getSelectionActions().add(action.getId());
    action = new ShapeShowAction(this);
    registry.registerAction(action);
    getSelectionActions().add(action.getId());
    // action = new CollapseAllAction(this);
    // registry.registerAction(action);
    // action = new ExpandAllAction(this);
    // registry.registerAction(action);
    action = new ZoomInAction(gefRootEditPart.getZoomManager());
    registry.registerAction(action);
    action = new ZoomOutAction(gefRootEditPart.getZoomManager());
    registry.registerAction(action);
    action = new LexicalSortingAction(this, null);
    registry.registerAction(action);
    Action[] act = new Action[4];
    act[0] = (Action) registry.getAction(TogglePropertyMappingAction.ACTION_ID);
    act[1] = (Action) registry.getAction(ToggleClassMappingAction.ACTION_ID);
    act[2] = (Action) registry.getAction(ToggleAssociationAction.ACTION_ID);
    act[3] = (Action) registry.getAction(ToggleForeignKeyConstraintAction.ACTION_ID);
    // act[4] = null;
    // act[5] = (Action)registry.getAction(ConnectionRouterManhattanAction.ACTION_ID);
    // act[6] = (Action)registry.getAction(ConnectionRouterFanAction.ACTION_ID);
    actionToggleConnections.setMenuCreator(new ActionMenu(act));
// act = new Action[2];
// act[0] = (Action)registry.getAction(ShapeExpandAction.ACTION_ID);
// act[1] = (Action)registry.getAction(ShapeCollapseAction.ACTION_ID);
// actionToggleShapeExpandState.setMenuCreator(new ActionMenu(act));
// act = new Action[2];
// act[0] = (Action)registry.getAction(ShapeShowAction.ACTION_ID);
// act[1] = (Action)registry.getAction(ShapeHideAction.ACTION_ID);
// actionToggleShapeVisibleState.setMenuCreator(new ActionMenu(act));
}
Also used : SaveAction(org.eclipse.gef.ui.actions.SaveAction) ToggleAssociationAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleAssociationAction) IAction(org.eclipse.jface.action.IAction) ZoomOutAction(org.eclipse.gef.ui.actions.ZoomOutAction) TogglePropertyMappingAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.TogglePropertyMappingAction) ToggleRulerVisibilityAction(org.eclipse.gef.ui.actions.ToggleRulerVisibilityAction) ToggleConnectionsAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleConnectionsAction) ToggleClassMappingAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleClassMappingAction) RedoAction(org.eclipse.gef.ui.actions.RedoAction) RefreshAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.RefreshAction) ShapeCollapseAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ShapeCollapseAction) ShapeShowAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ShapeShowAction) OpenMappingAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.OpenMappingAction) UndoAction(org.eclipse.gef.ui.actions.UndoAction) PrintDiagramViewerAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.PrintDiagramViewerAction) ConnectionRouterFanAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ConnectionRouterFanAction) ExportImageAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ExportImageAction) ToggleShapeVisibleStateAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleShapeVisibleStateAction) AutoLayoutAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.AutoLayoutAction) LexicalSortingAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.LexicalSortingAction) ToggleGridAction(org.eclipse.gef.ui.actions.ToggleGridAction) OpenSourceAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.OpenSourceAction) SelectAllAction(org.eclipse.gef.ui.actions.SelectAllAction) ToggleShapeExpandStateAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleShapeExpandStateAction) SaveAction(org.eclipse.gef.ui.actions.SaveAction) Action(org.eclipse.jface.action.Action) DeleteAction(org.eclipse.gef.ui.actions.DeleteAction) ShapeExpandAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ShapeExpandAction) ZoomInAction(org.eclipse.gef.ui.actions.ZoomInAction) ShapeHideAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ShapeHideAction) ToggleForeignKeyConstraintAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleForeignKeyConstraintAction) ToggleSnapToGeometryAction(org.eclipse.gef.ui.actions.ToggleSnapToGeometryAction) ConnectionRouterManhattanAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ConnectionRouterManhattanAction) ZoomOutAction(org.eclipse.gef.ui.actions.ZoomOutAction) ShapeExpandAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ShapeExpandAction) ActionRegistry(org.eclipse.gef.ui.actions.ActionRegistry) ToggleShapeExpandStateAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleShapeExpandStateAction) ToggleShapeVisibleStateAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleShapeVisibleStateAction) PrintDiagramViewerAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.PrintDiagramViewerAction) OpenMappingAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.OpenMappingAction) IWorkbenchPart(org.eclipse.ui.IWorkbenchPart) RedoAction(org.eclipse.gef.ui.actions.RedoAction) AutoLayoutAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.AutoLayoutAction) ShapeHideAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ShapeHideAction) ShapeShowAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ShapeShowAction) ZoomInAction(org.eclipse.gef.ui.actions.ZoomInAction) OpenSourceAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.OpenSourceAction) ToggleConnectionsAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleConnectionsAction) IAction(org.eclipse.jface.action.IAction) ToggleAssociationAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleAssociationAction) ExportImageAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ExportImageAction) ToggleForeignKeyConstraintAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleForeignKeyConstraintAction) LexicalSortingAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.LexicalSortingAction) ConnectionRouterFanAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ConnectionRouterFanAction) RefreshAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.RefreshAction) TogglePropertyMappingAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.TogglePropertyMappingAction) SelectAllAction(org.eclipse.gef.ui.actions.SelectAllAction) ConnectionRouterManhattanAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ConnectionRouterManhattanAction) DeleteAction(org.eclipse.gef.ui.actions.DeleteAction) ShapeCollapseAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ShapeCollapseAction) ActionMenu(org.jboss.tools.hibernate.ui.diagram.editors.actions.ActionMenu) ToggleClassMappingAction(org.jboss.tools.hibernate.ui.diagram.editors.actions.ToggleClassMappingAction) UndoAction(org.eclipse.gef.ui.actions.UndoAction)

Example 2 with SaveAction

use of org.eclipse.gef.ui.actions.SaveAction in project knime-core by knime.

the class WorkflowEditor method createActions.

/**
 * Creates the editor actions.
 *
 * @see org.eclipse.gef.ui.parts.GraphicalEditor#createActions()
 */
@Override
protected void createActions() {
    LOGGER.debug("creating editor actions...");
    // super already does something for us...
    super.createActions();
    // Stack actions
    StackAction undo = new UndoAction(this);
    StackAction redo = new RedoAction(this);
    // Editor Actions
    WorkbenchPartAction delete = new NodeConnectionContainerDeleteAction(this);
    WorkbenchPartAction save = new SaveAction(this);
    WorkbenchPartAction saveAs = new SaveAsAction(this);
    WorkbenchPartAction print = new PrintAction(this);
    WorkbenchPartAction hideNodeName = new HideNodeNamesAction(this);
    WorkbenchPartAction showNodeIdAction = new ShowNodeIdsAction(this);
    // node actions
    // 
    AbstractNodeAction openDialog = new OpenDialogAction(this);
    AbstractNodeAction execute = new ExecuteAction(this);
    AbstractNodeAction executeAll = new ExecuteAllAction(this);
    AbstractNodeAction cancelAll = new CancelAllAction(this);
    AbstractNodeAction cancel = new CancelAction(this);
    AbstractNodeAction pause = new PauseLoopExecutionAction(this);
    AbstractNodeAction step = new StepLoopAction(this);
    AbstractNodeAction resume = new ResumeLoopAction(this);
    AbstractNodeAction executeAndView = new ExecuteAndOpenViewAction(this);
    AbstractNodeAction reset = new ResetAction(this);
    AbstractNodeAction selectScope = new SelectLoopAction(this);
    AbstractNodeAction setNameAndDescription = new SetNodeDescriptionAction(this);
    AbstractNodeAction toggleFlowVarPorts = new ToggleFlowVarPortsAction(this);
    AbstractNodeAction defaultOpenView = new DefaultOpenViewAction(this);
    AbstractNodeAction metaNodeReConfigure = new MetaNodeReconfigureAction(this);
    AbstractNodeAction metaNodeChangeLink = new ChangeMetaNodeLinkAction(this);
    AbstractNodeAction defineMetaNodeTemplate = new SaveAsMetaNodeTemplateAction(this);
    AbstractNodeAction checkUpdateMetaNodeLink = new CheckUpdateMetaNodeLinkAction(this);
    AbstractNodeAction revealMetaNodeTemplate = new RevealMetaNodeTemplateAction(this);
    AbstractNodeAction disconnectMetaNodeLink = new DisconnectMetaNodeLinkAction(this);
    AbstractNodeAction lockMetaLink = new LockMetaNodeAction(this);
    AbstractNodeAction subNodeReConfigure = new SubNodeReconfigureAction(this);
    AbstractNodeAction subNodeChangeLink = new ChangeSubNodeLinkAction(this);
    AbstractNodeAction defineSubNodeTemplate = new SaveAsSubNodeTemplateAction(this);
    AbstractNodeAction checkUpdateSubNodeLink = new CheckUpdateMetaNodeLinkAction(this);
    AbstractNodeAction revealSubNodeTemplate = new RevealSubNodeTemplateAction(this);
    AbstractNodeAction disconnectSubNodeLink = new DisconnectSubNodeLinkAction(this);
    AbstractNodeAction lockSubLink = new LockSubNodeAction(this);
    // new annotation action
    AddAnnotationAction annotation = new AddAnnotationAction(this);
    // copy / cut / paste action
    CopyAction copy = new CopyAction(this);
    CutAction cut = new CutAction(this);
    PasteAction paste = new PasteAction(this);
    PasteActionContextMenu pasteContext = new PasteActionContextMenu(this);
    CollapseMetaNodeAction collapse = new CollapseMetaNodeAction(this);
    EncapsulateSubNodeAction encapsulate = new EncapsulateSubNodeAction(this);
    ExpandMetaNodeAction expand = new ExpandMetaNodeAction(this);
    ExpandSubNodeAction expandSub = new ExpandSubNodeAction(this);
    ConvertMetaNodeToSubNodeAction wrap = new ConvertMetaNodeToSubNodeAction(this);
    ConvertSubNodeToMetaNodeAction unWrap = new ConvertSubNodeToMetaNodeAction(this);
    // register the actions
    m_actionRegistry.registerAction(undo);
    m_actionRegistry.registerAction(redo);
    m_actionRegistry.registerAction(delete);
    m_actionRegistry.registerAction(save);
    m_actionRegistry.registerAction(saveAs);
    m_actionRegistry.registerAction(print);
    m_actionRegistry.registerAction(openDialog);
    m_actionRegistry.registerAction(execute);
    m_actionRegistry.registerAction(executeAll);
    m_actionRegistry.registerAction(cancelAll);
    m_actionRegistry.registerAction(cancel);
    m_actionRegistry.registerAction(pause);
    m_actionRegistry.registerAction(step);
    m_actionRegistry.registerAction(resume);
    m_actionRegistry.registerAction(executeAndView);
    m_actionRegistry.registerAction(reset);
    m_actionRegistry.registerAction(selectScope);
    m_actionRegistry.registerAction(toggleFlowVarPorts);
    m_actionRegistry.registerAction(setNameAndDescription);
    m_actionRegistry.registerAction(defaultOpenView);
    m_actionRegistry.registerAction(copy);
    m_actionRegistry.registerAction(cut);
    m_actionRegistry.registerAction(paste);
    m_actionRegistry.registerAction(pasteContext);
    m_actionRegistry.registerAction(hideNodeName);
    m_actionRegistry.registerAction(showNodeIdAction);
    m_actionRegistry.registerAction(collapse);
    m_actionRegistry.registerAction(encapsulate);
    m_actionRegistry.registerAction(expand);
    m_actionRegistry.registerAction(expandSub);
    m_actionRegistry.registerAction(wrap);
    m_actionRegistry.registerAction(unWrap);
    m_actionRegistry.registerAction(metaNodeReConfigure);
    m_actionRegistry.registerAction(metaNodeChangeLink);
    m_actionRegistry.registerAction(defineMetaNodeTemplate);
    m_actionRegistry.registerAction(checkUpdateMetaNodeLink);
    m_actionRegistry.registerAction(revealMetaNodeTemplate);
    m_actionRegistry.registerAction(disconnectMetaNodeLink);
    m_actionRegistry.registerAction(lockMetaLink);
    m_actionRegistry.registerAction(subNodeReConfigure);
    m_actionRegistry.registerAction(subNodeChangeLink);
    m_actionRegistry.registerAction(defineSubNodeTemplate);
    m_actionRegistry.registerAction(checkUpdateSubNodeLink);
    m_actionRegistry.registerAction(revealSubNodeTemplate);
    m_actionRegistry.registerAction(disconnectSubNodeLink);
    m_actionRegistry.registerAction(lockSubLink);
    m_actionRegistry.registerAction(annotation);
    // remember ids for later updates via 'updateActions'
    m_editorActions = new ArrayList<String>();
    m_editorActions.add(undo.getId());
    m_editorActions.add(redo.getId());
    m_editorActions.add(delete.getId());
    m_editorActions.add(save.getId());
    m_editorActions.add(saveAs.getId());
    m_editorActions.add(openDialog.getId());
    m_editorActions.add(execute.getId());
    m_editorActions.add(executeAll.getId());
    m_editorActions.add(cancelAll.getId());
    m_editorActions.add(executeAndView.getId());
    m_editorActions.add(reset.getId());
    m_editorActions.add(setNameAndDescription.getId());
    m_editorActions.add(toggleFlowVarPorts.getId());
    m_editorActions.add(defaultOpenView.getId());
    m_editorActions.add(hideNodeName.getId());
    m_editorActions.add(showNodeIdAction.getId());
    m_editorActions.add(collapse.getId());
    m_editorActions.add(expand.getId());
    m_editorActions.add(unWrap.getId());
    m_editorActions.add(copy.getId());
    m_editorActions.add(cut.getId());
    m_editorActions.add(paste.getId());
    m_editorActions.add(metaNodeReConfigure.getId());
    m_editorActions.add(subNodeReConfigure.getId());
    m_editorActions.add(metaNodeChangeLink.getId());
    m_editorActions.add(defineMetaNodeTemplate.getId());
    m_editorActions.add(checkUpdateMetaNodeLink.getId());
    m_editorActions.add(annotation.getId());
}
Also used : StackAction(org.eclipse.gef.ui.actions.StackAction) SaveAsAction(org.knime.workbench.editor2.actions.SaveAsAction) DisconnectMetaNodeLinkAction(org.knime.workbench.editor2.actions.DisconnectMetaNodeLinkAction) HideNodeNamesAction(org.knime.workbench.editor2.actions.HideNodeNamesAction) RedoAction(org.eclipse.gef.ui.actions.RedoAction) AbstractNodeAction(org.knime.workbench.editor2.actions.AbstractNodeAction) ExecuteAndOpenViewAction(org.knime.workbench.editor2.actions.ExecuteAndOpenViewAction) ChangeMetaNodeLinkAction(org.knime.workbench.editor2.actions.ChangeMetaNodeLinkAction) ExecuteAction(org.knime.workbench.editor2.actions.ExecuteAction) CheckUpdateMetaNodeLinkAction(org.knime.workbench.editor2.actions.CheckUpdateMetaNodeLinkAction) SetNodeDescriptionAction(org.knime.workbench.editor2.actions.SetNodeDescriptionAction) ExpandMetaNodeAction(org.knime.workbench.editor2.actions.ExpandMetaNodeAction) ToggleFlowVarPortsAction(org.knime.workbench.editor2.actions.ToggleFlowVarPortsAction) SubNodeReconfigureAction(org.knime.workbench.editor2.actions.SubNodeReconfigureAction) MetaNodeReconfigureAction(org.knime.workbench.editor2.actions.MetaNodeReconfigureAction) DefaultOpenViewAction(org.knime.workbench.editor2.actions.DefaultOpenViewAction) PauseLoopExecutionAction(org.knime.workbench.editor2.actions.PauseLoopExecutionAction) ResumeLoopAction(org.knime.workbench.editor2.actions.ResumeLoopAction) WorkbenchPartAction(org.eclipse.gef.ui.actions.WorkbenchPartAction) SaveAction(org.eclipse.gef.ui.actions.SaveAction) CutAction(org.knime.workbench.editor2.actions.CutAction) ShowNodeIdsAction(org.knime.workbench.editor2.actions.ShowNodeIdsAction) PrintAction(org.eclipse.gef.ui.actions.PrintAction) CancelAction(org.knime.workbench.editor2.actions.CancelAction) CollapseMetaNodeAction(org.knime.workbench.editor2.actions.CollapseMetaNodeAction) AddAnnotationAction(org.knime.workbench.editor2.actions.AddAnnotationAction) StepLoopAction(org.knime.workbench.editor2.actions.StepLoopAction) ExecuteAllAction(org.knime.workbench.editor2.actions.ExecuteAllAction) DisconnectSubNodeLinkAction(org.knime.workbench.editor2.actions.DisconnectSubNodeLinkAction) RevealSubNodeTemplateAction(org.knime.workbench.editor2.actions.RevealSubNodeTemplateAction) NodeConnectionContainerDeleteAction(org.knime.workbench.editor2.actions.NodeConnectionContainerDeleteAction) SaveAsMetaNodeTemplateAction(org.knime.workbench.editor2.actions.SaveAsMetaNodeTemplateAction) ConvertMetaNodeToSubNodeAction(org.knime.workbench.editor2.actions.ConvertMetaNodeToSubNodeAction) ConvertSubNodeToMetaNodeAction(org.knime.workbench.editor2.actions.ConvertSubNodeToMetaNodeAction) CopyAction(org.knime.workbench.editor2.actions.CopyAction) LockMetaNodeAction(org.knime.workbench.editor2.actions.LockMetaNodeAction) PasteActionContextMenu(org.knime.workbench.editor2.actions.PasteActionContextMenu) SelectLoopAction(org.knime.workbench.editor2.actions.SelectLoopAction) RevealMetaNodeTemplateAction(org.knime.workbench.editor2.actions.RevealMetaNodeTemplateAction) EncapsulateSubNodeAction(org.knime.workbench.editor2.actions.EncapsulateSubNodeAction) ExpandSubNodeAction(org.knime.workbench.editor2.actions.ExpandSubNodeAction) PasteAction(org.knime.workbench.editor2.actions.PasteAction) ResetAction(org.knime.workbench.editor2.actions.ResetAction) LockSubNodeAction(org.knime.workbench.editor2.actions.LockSubNodeAction) ChangeSubNodeLinkAction(org.knime.workbench.editor2.actions.ChangeSubNodeLinkAction) SaveAsSubNodeTemplateAction(org.knime.workbench.editor2.actions.SaveAsSubNodeTemplateAction) UndoAction(org.eclipse.gef.ui.actions.UndoAction) CancelAllAction(org.knime.workbench.editor2.actions.CancelAllAction) OpenDialogAction(org.knime.workbench.editor2.actions.OpenDialogAction)

Aggregations

RedoAction (org.eclipse.gef.ui.actions.RedoAction)2 SaveAction (org.eclipse.gef.ui.actions.SaveAction)2 UndoAction (org.eclipse.gef.ui.actions.UndoAction)2 ActionRegistry (org.eclipse.gef.ui.actions.ActionRegistry)1 DeleteAction (org.eclipse.gef.ui.actions.DeleteAction)1 PrintAction (org.eclipse.gef.ui.actions.PrintAction)1 SelectAllAction (org.eclipse.gef.ui.actions.SelectAllAction)1 StackAction (org.eclipse.gef.ui.actions.StackAction)1 ToggleGridAction (org.eclipse.gef.ui.actions.ToggleGridAction)1 ToggleRulerVisibilityAction (org.eclipse.gef.ui.actions.ToggleRulerVisibilityAction)1 ToggleSnapToGeometryAction (org.eclipse.gef.ui.actions.ToggleSnapToGeometryAction)1 WorkbenchPartAction (org.eclipse.gef.ui.actions.WorkbenchPartAction)1 ZoomInAction (org.eclipse.gef.ui.actions.ZoomInAction)1 ZoomOutAction (org.eclipse.gef.ui.actions.ZoomOutAction)1 Action (org.eclipse.jface.action.Action)1 IAction (org.eclipse.jface.action.IAction)1 IWorkbenchPart (org.eclipse.ui.IWorkbenchPart)1 ActionMenu (org.jboss.tools.hibernate.ui.diagram.editors.actions.ActionMenu)1 AutoLayoutAction (org.jboss.tools.hibernate.ui.diagram.editors.actions.AutoLayoutAction)1 ConnectionRouterFanAction (org.jboss.tools.hibernate.ui.diagram.editors.actions.ConnectionRouterFanAction)1