Package org.openbp.cockpit.modeler.tools

Examples of org.openbp.cockpit.modeler.tools.RotationTracker


      tool.setToolCursor(ModelerGraphics.createDataLinkCursor);
      tool.setToolHintMsg(ModelerGraphics.getMsg("msg.param"));
      toolSupport.addToolDecisionTableEntry(tool, ParamFigure.class, 0);
    }

    tool = new RotationTracker(toolSupport);
    tool.setToolCursor(ModelerGraphics.moveTextCursor);
    tool.setToolHintMsg(ModelerGraphics.getMsg("msg.tag"));
    toolSupport.addToolDecisionTableEntry(tool, SimpleTextTagFigure.class, 0);

    // CTRL Socket -> rotate
    tool = new RotationTracker(toolSupport);
    tool.setToolCursor(ModelerGraphics.moveSocketCursor);
    tool.setToolHintMsg(ModelerGraphics.getMsg("msg.socket"));
    toolSupport.addToolDecisionTableEntry(tool, SocketFigure.class, InputState.CTRL);

    if (isModeler)
View Full Code Here

TOP

Related Classes of org.openbp.cockpit.modeler.tools.RotationTracker

Copyright © 2018 www.massapicom. 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.