Class DragZoomingTool

GoJS® Diagramming Components
version 3.0.0
by Northwoods Software®

This is an extension and not part of the main GoJS library. Note that the API for this class may change at any time. If you intend to use an extension in production, you should copy the code to your own source directory. See the Extensions intro page for more information.

Hierarchy

The DragZoomingTool lets the user zoom into a diagram by stretching a box to indicate the new contents of the diagram's viewport (the area of the model shown by the Diagram). Hold down the Shift key in order to zoom out.

The default drag selection box is a magenta rectangle. You can modify the box to customize its appearance.

The diagram that is zoomed by this tool is specified by the zoomedDiagram property. If the value is null, the tool zooms its own go.Tool.diagram.

You can use this tool in a modal manner by executing:

  diagram.currentTool = new DragZoomingTool();

Use this tool in a mode-less manner by executing:

  myDiagram.toolManager.mouseMoveTools.insertAt(2, new DragZoomingTool());

However when used mode-lessly as a mouse-move tool, in go.ToolManager.mouseMoveTools, this cannot start running unless there has been a motionless delay after the mouse-down event of at least delay milliseconds.

This tool does not utilize any go.Adornments or tool handles, but it does temporarily add the box part to the diagram. This tool does not modify the model or conduct any transaction.

If you want to experiment with this extension, try the Drag Zooming sample.

Index

Constructors

Accessors

  • Gets or sets the go.Part used as the "rubber-band zoom box" that is stretched to follow the mouse, as feedback for what area will be passed to zoomToRect upon a mouse-up.

    Initially this is a go.Part containing only a simple magenta rectangular go.Shape. The object to be resized should be named "SHAPE". Setting this property does not raise any events.

    Modifying this property while this tool go.Tool.isActive might have no effect.

  • Gets or sets the time in milliseconds for which the mouse must be stationary before this tool can be started.

    The default value is 175 milliseconds. Setting this property does not raise any events.

Methods

  • This tool can run when there has been a mouse-drag, far enough away not to be a click, and there has been delay of at least delay milliseconds after the mouse-down before a mouse-move.

    Returns boolean

  • This just returns a go.Rect stretching from the mouse-down point to the current mouse point while maintaining the aspect ratio of the zoomedDiagram.

    Returns Rect

    a go.Rect in document coordinates.

  • Capture the mouse and show the box.

    Returns void

  • Release the mouse and remove any box.

    Returns void

  • Update the box's position and size according to the value of computeBoxBounds.

    Returns void

  • This method is called to change the zoomedDiagram's viewport to match the given rectangle.

    Parameters

    • r: Rect

      a rectangular bounds in document coordinates.

    Returns void