Search in sources :

Example 11 with OrmShape

use of org.jboss.tools.hibernate.ui.diagram.editors.model.OrmShape in project jbosstools-hibernate by jbosstools.

the class PopupMenuProvider method buildContextMenu.

public void buildContextMenu(IMenuManager menu) {
    menu.add(new Separator(GROUP_OPEN_SOURCE));
    menu.add(new Separator(GROUP_EDIT));
    menu.add(new Separator(GROUP_ADDITIONAL_ACTIONS));
    // Add standard action groups to the menu
    // GEFActionConstants.addStandardActionGroups(menu);
    IAction action = null;
    if (getViewer().getSelection() instanceof StructuredSelection) {
        Shape selectedShape = null;
        IStructuredSelection selection = (IStructuredSelection) getViewer().getSelection();
        if (selection != null) {
            Object firstElement = selection.getFirstElement();
            Object obj = null;
            if (firstElement instanceof OrmEditPart) {
                obj = ((OrmEditPart) firstElement).getModel();
            } else if (firstElement instanceof AbstractTreeEditPart) {
                obj = ((AbstractTreeEditPart) firstElement).getModel();
            }
            if (null != obj && obj instanceof Shape) {
                selectedShape = (Shape) obj;
            }
        }
        if (selectedShape != null && selection.size() == 1) {
            Object first = selectedShape.getOrmElement();
            if (first instanceof IPersistentClass || (first instanceof IProperty && ((IProperty) first).classIsPropertyClass()) || first instanceof ITable || first instanceof IColumn) {
                action = getActionRegistry().getAction(OpenSourceAction.ACTION_ID);
                appendToGroup(GROUP_OPEN_SOURCE, action);
                createMenuItem(getMenu(), action);
                action = getActionRegistry().getAction(OpenMappingAction.ACTION_ID);
                appendToGroup(GROUP_OPEN_SOURCE, action);
                createMenuItem(getMenu(), action);
            }
        }
        boolean addToggleVisibleStateMenu = false;
        boolean addToggleExpandStateMenu = false;
        Iterator<?> it = selection.iterator();
        while (it.hasNext() && (!addToggleVisibleStateMenu || !addToggleExpandStateMenu)) {
            Object element = it.next();
            Object obj = null;
            if (element instanceof OrmEditPart) {
                obj = ((OrmEditPart) element).getModel();
            } else if (element instanceof AbstractTreeEditPart) {
                obj = ((AbstractTreeEditPart) element).getModel();
            }
            if (null != obj && obj instanceof OrmShape) {
                selectedShape = (Shape) obj;
                Object first = selectedShape.getOrmElement();
                if (first instanceof IPersistentClass || first instanceof ITable) {
                    addToggleVisibleStateMenu = true;
                }
            }
            if (null != obj && obj instanceof ExpandableShape) {
                addToggleExpandStateMenu = true;
            }
        }
        if (addToggleVisibleStateMenu) {
            action = getActionRegistry().getAction(ToggleShapeVisibleStateAction.ACTION_ID);
            appendToGroup(GROUP_EDIT, action);
            createMenuItem(getMenu(), action);
        }
        if (addToggleExpandStateMenu) {
            action = getActionRegistry().getAction(ToggleShapeExpandStateAction.ACTION_ID);
            appendToGroup(GROUP_EDIT, action);
            createMenuItem(getMenu(), action);
        }
    }
    action = getActionRegistry().getAction(ToggleConnectionsAction.ACTION_ID);
    appendToGroup(GROUP_EDIT, action);
    createMenuItem(getMenu(), action);
    action = getActionRegistry().getAction(AutoLayoutAction.ACTION_ID);
    appendToGroup(GROUP_ADDITIONAL_ACTIONS, action);
    createMenuItem(getMenu(), action);
    // action = getActionRegistry().getAction(CollapseAllAction.ACTION_ID);
    // appendToGroup(GROUP_EDIT, action);
    // createMenuItem(getMenu(), action);
    // action = getActionRegistry().getAction(ExpandAllAction.ACTION_ID);
    // appendToGroup(GROUP_EDIT, action);
    // createMenuItem(getMenu(), action);
    action = getActionRegistry().getAction(ExportImageAction.ACTION_ID);
    appendToGroup(GROUP_ADDITIONAL_ACTIONS, action);
    createMenuItem(getMenu(), action);
    // Add actions to the menu
    /**
     * /
     *		// is undo/redo operation so necessary for popup menu?
     *		menu.appendToGroup(
     *				GEFActionConstants.GROUP_UNDO, // target group id
     *				getAction(ActionFactory.UNDO.getId())); // action to add
     *		menu.appendToGroup(
     *				GEFActionConstants.GROUP_UNDO,
     *				getAction(ActionFactory.REDO.getId()));
     *		/*
     */
    menu.appendToGroup(// target group id
    GROUP_EDIT, // action to add
    getAction(ActionFactory.SELECT_ALL.getId()));
}
Also used : ExpandableShape(org.jboss.tools.hibernate.ui.diagram.editors.model.ExpandableShape) Shape(org.jboss.tools.hibernate.ui.diagram.editors.model.Shape) ExpandableShape(org.jboss.tools.hibernate.ui.diagram.editors.model.ExpandableShape) OrmShape(org.jboss.tools.hibernate.ui.diagram.editors.model.OrmShape) AbstractTreeEditPart(org.eclipse.gef.editparts.AbstractTreeEditPart) IAction(org.eclipse.jface.action.IAction) OrmEditPart(org.jboss.tools.hibernate.ui.diagram.editors.parts.OrmEditPart) StructuredSelection(org.eclipse.jface.viewers.StructuredSelection) IStructuredSelection(org.eclipse.jface.viewers.IStructuredSelection) IStructuredSelection(org.eclipse.jface.viewers.IStructuredSelection) IPersistentClass(org.jboss.tools.hibernate.runtime.spi.IPersistentClass) OrmShape(org.jboss.tools.hibernate.ui.diagram.editors.model.OrmShape) IProperty(org.jboss.tools.hibernate.runtime.spi.IProperty) IColumn(org.jboss.tools.hibernate.runtime.spi.IColumn) ITable(org.jboss.tools.hibernate.runtime.spi.ITable) Separator(org.eclipse.jface.action.Separator)

Example 12 with OrmShape

use of org.jboss.tools.hibernate.ui.diagram.editors.model.OrmShape in project jbosstools-hibernate by jbosstools.

the class ToggleShapeVisibleStateCommand method undo.

public void undo() {
    for (int i = 0; i < selectedShape.size(); i++) {
        OrmShape shape = selectedShape.get(i);
        Object ormElement = shape.getOrmElement();
        if (ormElement instanceof IPersistentClass || ormElement instanceof ITable) {
            shape.setVisible(selectedShapeStates.get(i));
        }
    }
}
Also used : OrmShape(org.jboss.tools.hibernate.ui.diagram.editors.model.OrmShape) ITable(org.jboss.tools.hibernate.runtime.spi.ITable) IPersistentClass(org.jboss.tools.hibernate.runtime.spi.IPersistentClass)

Aggregations

OrmShape (org.jboss.tools.hibernate.ui.diagram.editors.model.OrmShape)12 AbstractTreeEditPart (org.eclipse.gef.editparts.AbstractTreeEditPart)7 OrmEditPart (org.jboss.tools.hibernate.ui.diagram.editors.parts.OrmEditPart)7 IPersistentClass (org.jboss.tools.hibernate.runtime.spi.IPersistentClass)5 ITable (org.jboss.tools.hibernate.runtime.spi.ITable)5 ArrayList (java.util.ArrayList)3 CompoundCommand (org.eclipse.gef.commands.CompoundCommand)3 ToggleShapeVisibleStateCommand (org.jboss.tools.hibernate.ui.diagram.editors.command.ToggleShapeVisibleStateCommand)3 Iterator (java.util.Iterator)2 Point (org.eclipse.draw2d.geometry.Point)2 IStructuredSelection (org.eclipse.jface.viewers.IStructuredSelection)2 Rectangle (org.eclipse.draw2d.geometry.Rectangle)1 Command (org.eclipse.gef.commands.Command)1 IAction (org.eclipse.jface.action.IAction)1 Separator (org.eclipse.jface.action.Separator)1 StructuredSelection (org.eclipse.jface.viewers.StructuredSelection)1 IColumn (org.jboss.tools.hibernate.runtime.spi.IColumn)1 IProperty (org.jboss.tools.hibernate.runtime.spi.IProperty)1 ChangeGuideCommand (org.jboss.tools.hibernate.ui.diagram.editors.command.ChangeGuideCommand)1 ShapeSetConstraintCommand (org.jboss.tools.hibernate.ui.diagram.editors.command.ShapeSetConstraintCommand)1