Click here to Skip to main content
Click here to Skip to main content

Drawing Library

By , 10 Dec 2007
 

Screenshot - Painter.JPG

Introduction

This is a generic library for drawing (work in progress). It is composed of some base tools and shapes. It allows you to draw shapes that you want to create, and develop tools to manage your figures.

Using the code

This piece of code describes the implementation of a derived class from Shape and a a derived class from Tool.

public class Ellipse : Shape
{
    public Ellipse()
    {
        Geometric.AddEllipse(new System.Drawing.Rectangle(0, 0, 1, 1));
    }

    public Ellipse(Ellipse ellipse) : base(ellipse)
    {
    }

    public override object Clone()
    {
        return new Ellipse(this);
    }
}
// ....


public class Select : Tool    
{
    .....

    // Override IActions Interface functions

    public override void MouseDown(IDocument document, MouseEventArgs e)
    {
        base.MouseDown(document, e);

        if (SelectShape(document.Shapes, e.Location) == HitPositions.None)
            Select.UnselectAll(document.Shapes);

        if (SelectedShapes != null)
            SelectedShapes(this, Select.GetSelectedShapes(document.Shapes));
    }

    public override void MouseUp(IDocument document, MouseEventArgs e)
    {
        base.MouseUp(document, e);

        document.ActiveCursor = Cursors.Default;
    }
    
    .....
}

It is very important to implement the copy constructor and the function Clone for every new shape, while it is convenient to override the IActions interface during the implementation of a new tool.

Main schemes

In the documentation, there are these schemes:

  • Orange color describes a hot spot class (interface or abstract class usually).
  • Yellow color describes active classes.
  • Blue color describes passive classes (data containers or structs usually).
  • Light grey color describes classes of the framework but not important in the current scheme.
  • Dark grey color describes classes external to the framework.

This scheme represents the actual shapes hierarchy:

Shapes hierarchy

This scheme represents the actual tools hierarchy:

Tools hierarchy

This scheme represents the communication channel between the drawing panel, tools, and shapes:

Hooking Tools-Shapes

The IActions interface contains all the panel actions used by the tools; for example, mouse down and mouse move, and also the paint function. IDocument is an interface, but it is blue because it is only a connection point between tools and shapes, and so it is a passive class.

The following scheme represents the relation between transformers and shapes. Transformers are used to handle shapes moving, so if you want to add any new move, you must only derive two classes, Transformer and CompositeTransformer, and not all the classes in the shapes hierarchy.

Hooking Transformers-Shapes

This scheme represents the actual appearances hierarchy:

Appearances hierarchy

Other schemes are available in the documentation.

Points of interest

To rotate a shape, choose the rotate tool and select the shape. Do a mouse click down and move. To rotate relative to a non-center point, select a shape, click the Ctrl key, do mouse click down, and move.

Rotate example

To deform a shape, change the property Marked to true, and choose the deform tool, do a mouse click down on a marker, and move. Try to group shapes and do the same operations above.

Deform example

Serialization

The serialization operations are made by XmlSerializer. The performance is not very great.

Updates

  • Zoom functionality.
  • Grid on panel.
  • DrawFreeLine tool with possibility to decide the minimum offset between two consecutive points.

Grid example and DrawFreeLine tool

See the Layout options for the Bring To Front and Send To Back functionalities.

Last updates

Added possibility to move shapes with arrows and Control key.

Bug fixes

Modified setter methods of the Text shape to maintain the text state after rotation.

Known bugs

  • Deform tool is not precise on shape border markers.
  • A problem with resize tool and grid enabled.
  • The Undo-Redo mechanism is not precise.

Future developments

  • Improvement of tools (for example, resize).
  • Improvement of performance.
  • Development of other tools.

References

For documentation:

For object-oriented and color theory and other software development information:

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

jonnynolimits
Software Developer
Italy Italy
I am a biomedical engineer. I work in Genoa as software developer. I developed MFC ActiveX controls for industrial automation for 2 years and packages for Visual Studio 2005 for 1 year. Currently I'm working in .NET 3.5 in biomedical area.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberHerre Kuijpers14-Dec-12 21:53 
QuestionCould You please tell me how you create the class diagram ?memberSia_Mak3-Dec-12 11:39 
AnswerRe: Could You please tell me how you create the class diagram ?memberjonnynolimits10-Dec-12 2:01 
QuestionMultiSelect Flicker when going from bottom to topmemberScottGBlood22-Mar-12 1:14 
GeneralMy vote of 5membermanoj kumar choubey26-Feb-12 21:15 
QuestionMove with resizememberAhmad Saffarini3-Jul-11 21:40 
Generalhi! i want to create object flash for run file swfmemberthangnx5-May-11 23:58 
GeneralMy vote of 5memberthichngaodu30-Oct-10 21:14 
Generalpublic Line(PointF start, PointF end)memberhotthoughtguy9-Apr-10 9:00 
JokeCoolmembericcb101314-Mar-10 22:31 
QuestionImage resizingmemberKevin Platt29-Jul-09 14:18 
AnswerRe: Image resizingmemberjonnynolimits25-Aug-09 2:05 
GeneralZoom bugmemberProfesjocom9-Mar-09 14:31 
GeneralRe: Zoom bugmemberProfesjocom9-Mar-09 15:30 
Generalproblem with modify size by textboxmemberProfesjocom20-Feb-09 11:31 
GeneralRe: problem with modify size by textboxmemberjonnynolimits5-Mar-09 5:42 
GeneralRe: problem with modify size by textboxmemberProfesjocom7-Mar-09 10:26 
GeneralRe: problem with modify size by textboxmemberjonnynolimits8-Mar-09 22:46 
GeneralRe: problem with modify size by textboxmemberProfesjocom9-Mar-09 13:59 
GeneralRe: problem with modify size by textboxmemberjonnynolimits10-Mar-09 2:03 
GeneralExcellentmember]Whatever[21-Jan-09 3:53 
GeneralRe: Excellentmemberjonnynolimits23-Jan-09 5:46 
GeneralScrollBar Left and Rightmemberleqdangs19-Feb-08 21:23 
GeneralRe: ScrollBar Left and Rightmemberjonnynolimits22-Feb-08 0:47 
Generalchange Background.memberleqdangs10-Jan-08 7:08 
GeneralRe: change Background.memberjonnynolimits11-Jan-08 4:29 
GeneralRe: change Background.memberleqdangs11-Jan-08 5:32 
GeneralRe: change Background.memberjonnynolimits14-Jan-08 20:41 
QuestionBroken images?memberFabrizio Camera10-Dec-07 2:37 
AnswerRe: Broken images?memberFrancesco Pratolongo10-Dec-07 4:45 
AnswerRe: Broken images?memberjonnynolimits10-Dec-07 4:48 
Questionabout ISerializable interfacememberaishar21-Nov-07 5:35 
AnswerRe: about ISerializable interfacememberjonnynolimits21-Nov-07 20:51 
QuestionHow can I do that pleasememberaishar20-Nov-07 23:14 
AnswerRe: How can I do that pleasememberjonnynolimits21-Nov-07 5:15 
QuestionHow create shape with fixed dimensionmemberetiennegaloup16-Oct-07 21:06 
AnswerRe: How create shape with fixed dimensionmemberjonnynolimits16-Oct-07 21:37 
GeneralRe: How create shape with fixed dimensionmemberetiennegaloup16-Oct-07 22:41 
GeneralRe: How create shape with fixed dimensionmemberjonnynolimits16-Oct-07 23:16 
GeneralRe: How create shape with fixed dimension [modified]memberetiennegaloup17-Oct-07 0:32 
GeneralMoving Shapememberymagirdici2-Aug-07 21:28 
GeneralRe: Moving Shapememberymagirdici8-Sep-07 11:40 
GeneralRe: Moving Shapememberjonnynolimits10-Sep-07 1:02 
GeneralRe: Moving Shapememberleqdangs4-Jan-08 17:23 
GeneralRe: Moving Shapememberjonnynolimits6-Jan-08 20:37 
GeneralRe: Moving Shapememberleqdangs6-Jan-08 21:21 
Generalghost shapememberRicardo Fig27-Jul-07 1:34 
GeneralRe: ghost shapememberjonnynolimits30-Jul-07 2:16 
GeneralrotationmemberRicardo Fig25-Jul-07 3:20 
GeneralRe: rotationmemberjonnynolimits25-Jul-07 21:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130619.1 | Last Updated 10 Dec 2007
Article Copyright 2006 by jonnynolimits
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid