Ink Erasing Sample

Ink Erasing Sample

Description of ink erasing sample for the Tablet PC.

This application builds on the Ink Collection sample by demonstrating ink strokes deletion. The sample provides the user with a menu that has four modes to choose from: ink-enabled, erasing at cusps, erasing at intersections, and erasing strokes.

In ink-enabled mode, the InkCollector object collects ink as shown in Ink Collection.

In an erasing mode, segments of existing ink strokes that the user touches with the cursor are erased. Also, the cusps or intersections may be marked with a red circle.

Note: Microsoft® Windows® XP Tablet PC Edition Software Development Kit (SDK) provides versions of this sample written in the following languages: C# and Microsoft Visual Basic® 6.0. The version discussed in this section is C#. The basic concepts are the same between versions.

The most interesting parts of this sample lie in the InkErase form's OnPaint event handler and in the erasing functions that are called from the form's OnMouseMove event handler.

Circling the Cusps and Intersections

The form's OnPaint event handler first paints the strokes, and depending on the application mode, may find and mark all of the cusps or intersections with a small red circle. A cusp marks the point where a stroke changes direction abruptly. An intersection marks a point where one stroke intersects with itself or another stroke.

The Paint Leave Site event occurs whenever a control is redrawn.

Note: The sample forces the form to redraw itself whenever a stroke is erased, or when the application mode changes, using the form's Refresh Leave Site method.

private void InkErase_OnPaint(object sender, PaintEventArgs e)
{
    Strokes strokesToPaint = myInkCollector.Ink.Strokes;

    myInkCollector.Renderer.Draw(e.Graphics, strokesToPaint);

    switch (mode)
    {
        case ApplicationMode.CuspErase:
            PaintCusps(e.Graphics, strokesToPaint);
            break;
        case ApplicationMode.IntersectErase:
            PaintIntersections(e.Graphics, strokesToPaint);
            break;
    }
}

In PaintCusps, the code iterates through each cusp in each stroke, and draws a red circle around it. The stroke's PolylineCusps property returns the indices of the points within a stoke that correspond to cusps. Also, note the Renderer object's InkSpaceToPixel method, which converts the point to coordinates relevant to the DrawEllipse method.

private void PaintCusps(Graphics g, Strokes strokesToPaint)
{
    foreach (Stroke currentStroke in strokesToPaint)
    {
        int[] cusps = currentStroke.PolylineCusps;

        foreach (int i in cusps)
        {
            Point pt = currentStroke.GetPoint(i);

            // Convert the X, Y position to Window based pixel coordinates
            myInkCollector.Renderer.InkSpaceToPixel(g, ref pt);

            // Draw a red circle as the cusp position
            g.DrawEllipse(Pens.Red, pt.X-3, pt.Y-3, 6, 6);
        }
    }
}

In PaintIntersections, the code iterates through each stroke to find its intersections with the entire set of strokes. Note that the stroke's FindIntersections method is passed a Strokes collection, and returns an array of floating point index values representing the intersections. The code then calculates an X-Y coordinate for each intersection, and draws a red circle around it.

private void PaintIntersections(Graphics g, Strokes strokesToPaint)
{
    foreach (Stroke currentStroke in strokesToPaint)
    {
        float[] intersections =            currentStroke.FindIntersections(strokesToPaint);
    }
}

Handling a Pen That Has Two Ends

Three event handlers are defined for the InkCollector object for the CursorDown, NewPackets, and Stroke events. Each event handler checks the Cursor object's Inverted property to see which end of the pen is being used. When the pen is inverted:

  • The myInkCollector_CursorDown method makes the stroke transparent.
  • The myInkCollector_NewPackets method erases strokes.
  • The myInkCollector_Stroke method cancels the event. NewPackets events are generated prior to the Stroke event.

Tracking the Cursor

Whether the user is using a pen or a mouse, MouseMove events are generated. The MouseMove event handler first checks to determine whether the current mode is an erase mode and if any mouse button is pressed, and ignores the event if these states are not present. Then, the event handler converts the pixel coordinates for the cursor into ink space coordinates using the Renderer object's PixelToInkSpace method, and calls one of the code's erase methods depending on the current erase mode.

Erasing Strokes

The EraseStrokes method takes the cursor's location in ink space and generates a collection of strokes that are within HitTestRadius units. The currentStroke parameter specifies a Stroke object that should not be deleted. Then the strokes collection is deleted from the collector, and the form is redrawn.

private void EraseStrokes(Point pt, Stroke currentStroke)
{
    Strokes strokesHit = myInkCollector.Ink.HitTest(pt, HitTestRadius);

    if (null!=currentStroke && strokesHit.Contains(currentStroke))
    {
        strokesHit.Remove(currentStroke);
    }

    myInkCollector.Ink.DeleteStrokes(strokesHit);

    if (strokesHit.Count > 0)
    {
        this.Refresh();
    }
}

Erasing at Intersections

The EraseAtIntersections method iterates over each stroke that falls within the test radius and generates an array of intersections between that stroke and all the other strokes in the collection. If no intersections are found, then that entire stroke is deleted; otherwise, the nearest point on the stroke to the test point is located, and from that, the intersections on either side of the point are located, describing the segment to be removed.

The Stroke object's Split method is used to separate the segment from the rest of the stroke, and then the segment is deleted, leaving the rest of the stroke intact. As in EraseStrokes, the form is redrawn before the method returns.

private void EraseAtIntersections(Point pt)
{
    Strokes strokesHit = myInkCollector.Ink.HitTest(pt, HitTestRadius);

    foreach (Stroke currentStroke in strokesHit)
    {
        float[] intersections = currentStroke.FindIntersections(myInkCollector.Ink.Strokes);
        ...
        float findex = currentStroke.NearestPoint(pt);
        ...
        strokeToDelete = currentStroke.Split(intersections[i]);
        ...
    }
    ...
}

Erasing at Cusps

For each stroke that falls within the test radius, the EraseAtCusps method retrieves the array of cusps from the Stroke object's PolylineCusps method. Each end of the stroke is also a cusp, so if the stroke only has two cusps, then the entire stroke is deleted; otherwise, the nearest point on the stroke to the test point is located, and from that, the intersections on either side of the point are located, describing the segment to be removed.

The Stroke object's Split method is used to separate the segment from the rest of the stroke, and then the segment is deleted, leaving the rest of the stroke intact. As in EraseStrokes, the form is redrawn before the method returns.

private void EraseAtCusps(Point pt)
{
    ...
    strokesHit = myInkCollector.Ink.HitTest(pt, HitTestRadius);

    foreach (Stroke currentStroke in strokesHit)
    {
        int[] cusps = currentStroke.PolylineCusps;
        ...
        float findex = currentStroke.NearestPoint(pt);
        ...
        strokeToDelete = currentStroke.Split(cusps[i]);
        myInkCollector.Ink.DeleteStroke(strokeToDelete);
        ...
    }
    ...
}

Closing the Form

The form's Dispose Leave Site method disposes the InkCollector object, myInkCollector.