Table of Contents

Class PolygonDrawingTool

Namespace
Northwoods.Go.Tools.Extensions
Assembly
PolygonDrawingWinForms.dll

The PolygonDrawingTool class lets the user draw a new polygon or polyline shape by clicking where the corners should go.

public class PolygonDrawingTool : Tool
Inheritance
PolygonDrawingTool
Inherited Members

Remarks

Right click or type ENTER to finish the operation.

Set IsPolygon to false if you want this tool to draw open unfilled polyline shapes. Set ArchetypePartData to customize the node data object that is added to the model. Data-bind to those properties in your node template to customize the appearance and behavior of the part.

This tool uses a temporary Shape, TemporaryShape, held by a Part in the "Tool" layer, to show interactively what the user is drawing.

Constructors

PolygonDrawingTool()

Constructs an PolygonDrawingTool and sets the name for the tool.

public PolygonDrawingTool()

Properties

ArchetypePartData

Gets or sets the node data object that is copied and added to the model when the drawing operation completes.

public object ArchetypePartData { get; set; }

Property Value

object

HasArcs

Gets or sets whether this tool draws shapes with quadratic bezier curves for each segment, or just straight lines.

public bool HasArcs { get; set; }

Property Value

bool

Remarks

The default value is false -- only use straight lines.

IsGridSnapEnabled

Gets or sets whether this tool only places the shape's corners on the Diagram"s visible grid.

public bool IsGridSnapEnabled { get; set; }

Property Value

bool

Remarks

The default value is false

IsOrthoOnly

Gets or sets whether this tool draws shapes with only orthogonal segments, or segments in any direction.

public bool IsOrthoOnly { get; set; }

Property Value

bool

Remarks

The default value is false -- draw segments in any direction. This does not restrict the closing segment, which may not be orthogonal.

IsPolygon

Gets or sets whether this tools draws a filled polygon or an unfilled open polyline.

public bool IsPolygon { get; set; }

Property Value

bool

Remarks

The default value is true.

TemporaryShape

Gets or sets the Shape that is used to hold the line as it is being drawn.

public Shape TemporaryShape { get; set; }

Property Value

Shape

Remarks

The default value is a simple Shape drawing an unfilled open thin black line.

Methods

CanStart()

Don't start this tool in a mode-less fashion when the user's mouse-down is on an existing Part.

public override bool CanStart()

Returns

bool

Remarks

When this tool is a mouse-down tool, it requires using the left mouse button in the background of a modifiable Diagram. Modal uses of this tool will not call this canStart predicate.

DoActivate()

Start a transaction, capture the mouse, use a "crosshair" cursor, and start accumulating points in the geometry of the TemporaryShape.

public override void DoActivate()

DoKeyDown()

Typing the "ENTER" key accepts the current geometry (excluding the current mouse point) and creates a new part in the model by calling FinishShape().

Typing the "Z" key causes the previous point to be discarded.

Typing the "ESCAPE" key causes the temporary Shape and its geometry to be discarded and this tool to be stopped.

public override void DoKeyDown()

DoMouseDown()

Add another point to the geometry of the TemporaryShape.

public override void DoMouseDown()

DoMouseMove()

Move the last point of the TemporaryShape's geometry to follow the mouse point.

public override void DoMouseMove()

DoMouseUp()

Do not stop this tool, but continue to accumulate Points via mouse-down events.

public override void DoMouseUp()

DoStart()

Start a transaction, capture the mouse, use a "crosshair" cursor, and start accumulating points in the geometry of the TemporaryShape.

public override void DoStart()

DoStop()

Stop the transaction and clean up.

public override void DoStop()

FinishShape()

Add a new node data object to the model and initialize the Part's position and its Shape's geometry by copying the TemporaryShape's Geometry.

public void FinishShape()

Undo()

Undo: remove the last point and continue the drawing of new points.

public void Undo()