| //============================================================================ | |
| //ZedGraph Class Library - A Flexible Line Graph/Bar Graph Library in C# | |
| //Copyright � 2004 John Champion | |
| // | |
| //This library is free software; you can redistribute it and/or | |
| //modify it under the terms of the GNU General Public | |
| //License as published by the Free Software Foundation; either | |
| //version 2.1 of the License, or (at your option) any later version. | |
| // | |
| //This library is distributed in the hope that it will be useful, | |
| //but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| //MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| //General Public License for more details. | |
| // | |
| //You should have received a copy of the GNU General Public | |
| //License along with this library; if not, write to the Free Software | |
| //Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| //============================================================================= | |
| using System; | |
| using System.Drawing; | |
| using System.Drawing.Drawing2D; | |
| using System.Collections; | |
| using System.Runtime.Serialization; | |
| using System.Security.Permissions; | |
| namespace ZedGraph | |
| { | |
| /// <summary> | |
| /// An abstract base class that represents a text object on the graph. A list of | |
| /// <see cref="GraphObj"/> objects is maintained by the | |
| /// <see cref="GraphObjList"/> collection class. | |
| /// </summary> | |
| /// | |
| /// <author> John Champion </author> | |
| /// <version> $Revision: 3.1 $ $Date: 2006-06-24 20:26:44 $ </version> | |
| [] | |
| abstract public class GraphObj : ISerializable, ICloneable | |
| { | |
| /// <summary> | |
| /// Protected field that stores the location of this <see cref="GraphObj"/>. | |
| /// Use the public property <see cref="Location"/> to access this value. | |
| /// </summary> | |
| protected Location _location; | |
| /// <summary> | |
| /// Protected field that determines whether or not this <see cref="GraphObj"/> | |
| /// is visible in the graph. Use the public property <see cref="IsVisible"/> to | |
| /// access this value. | |
| /// </summary> | |
| protected bool _isVisible; | |
| /// <summary> | |
| /// Protected field that determines whether or not the rendering of this <see cref="GraphObj"/> | |
| /// will be clipped to the ChartRect. Use the public property <see cref="IsClippedToChartRect"/> to | |
| /// access this value. | |
| /// </summary> | |
| protected bool _isClippedToChartRect; | |
| /// <summary> | |
| /// A tag object for use by the user. This can be used to store additional | |
| /// information associated with the <see cref="GraphObj"/>. ZedGraph does | |
| /// not use this value for any purpose. | |
| /// </summary> | |
| /// <remarks> | |
| /// Note that, if you are going to Serialize ZedGraph data, then any type | |
| /// that you store in <see cref="Tag"/> must be a serializable type (or | |
| /// it will cause an exception). | |
| /// </remarks> | |
| public object Tag; | |
| /// <summary> | |
| /// Internal field that determines the z-order "depth" of this | |
| /// item relative to other graphic objects. Use the public property | |
| /// <see cref="ZOrder"/> to access this value. | |
| /// </summary> | |
| internal ZOrder _zOrder; | |
| /// <summary> | |
| /// Internal field that stores the hyperlink information for this object. | |
| /// </summary> | |
| internal Link _link; | |
| /// <summary> | |
| /// A simple struct that defines the | |
| /// default property values for the <see cref="GraphObj"/> class. | |
| /// </summary> | |
| public struct Default | |
| { | |
| // Default text item properties | |
| /// <summary> | |
| /// Default value for the vertical <see cref="GraphObj"/> | |
| /// text alignment (<see cref="GraphObj.Location"/> property). | |
| /// This is specified | |
| /// using the <see cref="AlignV"/> enum type. | |
| /// </summary> | |
| public static AlignV AlignV = AlignV.Center; | |
| /// <summary> | |
| /// Default value for the horizontal <see cref="GraphObj"/> | |
| /// text alignment (<see cref="GraphObj.Location"/> property). | |
| /// This is specified | |
| /// using the <see cref="AlignH"/> enum type. | |
| /// </summary> | |
| public static AlignH AlignH = AlignH.Center; | |
| /// <summary> | |
| /// The default coordinate system to be used for defining the | |
| /// <see cref="GraphObj"/> location coordinates | |
| /// (<see cref="GraphObj.Location"/> property). | |
| /// </summary> | |
| /// <value> The coordinate system is defined with the <see cref="CoordType"/> | |
| /// enum</value> | |
| public static CoordType CoordFrame = CoordType.AxisXYScale; | |
| /// <summary> | |
| /// The default value for <see cref="GraphObj.IsClippedToChartRect"/>. | |
| /// </summary> | |
| public static bool IsClippedToChartRect = false; | |
| } | |
| /// <summary> | |
| /// The <see cref="ZedGraph.Location"/> struct that describes the location | |
| /// for this <see cref="GraphObj"/>. | |
| /// </summary> | |
| public Location Location | |
| { | |
| get { return _location; } | |
| set { _location = value; } | |
| } | |
| /// <summary> | |
| /// Gets or sets a value that determines the z-order "depth" of this | |
| /// item relative to other graphic objects. | |
| /// </summary> | |
| /// <remarks>Note that this controls the z-order with respect to | |
| /// other elements such as <see cref="CurveItem"/>'s, <see cref="Axis"/> | |
| /// objects, etc. The order of <see cref="GraphObj"/> objects having | |
| /// the same <see cref="ZedGraph.ZOrder"/> value is controlled by their order in | |
| /// the <see cref="GraphObjList"/>. The first <see cref="GraphObj"/> | |
| /// in the list is drawn in front of other <see cref="GraphObj"/> | |
| /// objects having the same <see cref="ZedGraph.ZOrder"/> value.</remarks> | |
| public ZOrder ZOrder | |
| { | |
| get { return _zOrder; } | |
| set { _zOrder = value; } | |
| } | |
| /// <summary> | |
| /// Gets or sets a value that determines if this <see cref="GraphObj"/> will be | |
| /// visible in the graph. true displays the item, false hides it. | |
| /// </summary> | |
| public bool IsVisible | |
| { | |
| get { return _isVisible; } | |
| set { _isVisible = value; } | |
| } | |
| /// <summary> | |
| /// Gets or sets a value that determines whether or not the rendering of this <see cref="GraphObj"/> | |
| /// will be clipped to the <see cref="Chart.Rect"/>. | |
| /// </summary> | |
| /// <value>true to clip the <see cref="GraphObj"/> to the <see cref="Chart.Rect"/> bounds, | |
| /// false to leave it unclipped.</value> | |
| public bool IsClippedToChartRect | |
| { | |
| get { return _isClippedToChartRect; } | |
| set { _isClippedToChartRect = value; } | |
| } | |
| /// <summary> | |
| /// Gets or sets the hyperlink information for this <see cref="GraphObj" />. | |
| /// </summary> | |
| // /// <seealso cref="ZedGraph.Web.IsImageMap" /> | |
| public Link Link | |
| { | |
| get { return _link; } | |
| set { _link = value; } | |
| } | |
| /// <summary> | |
| /// true if the <see cref="ZOrder" /> of this object is set to put it in front | |
| /// of the <see cref="CurveItem" /> data points. | |
| /// </summary> | |
| public bool IsInFrontOfData | |
| { | |
| get | |
| { | |
| return _zOrder == ZOrder.A_InFront || | |
| _zOrder == ZOrder.B_BehindLegend || | |
| _zOrder == ZOrder.C_BehindChartBorder; | |
| } | |
| } | |
| /// <overloads> | |
| /// Constructors for the <see cref="GraphObj"/> class. | |
| /// </overloads> | |
| /// <summary> | |
| /// Default constructor that sets all <see cref="GraphObj"/> properties to default | |
| /// values as defined in the <see cref="Default"/> class. | |
| /// </summary> | |
| public GraphObj() : | |
| this( 0, 0, Default.CoordFrame, Default.AlignH, Default.AlignV ) | |
| { | |
| } | |
| /// <summary> | |
| /// Constructor that sets all <see cref="GraphObj"/> properties to default | |
| /// values as defined in the <see cref="Default"/> class. | |
| /// </summary> | |
| /// <param name="x">The x position of the text. The units | |
| /// of this position are specified by the | |
| /// <see cref="ZedGraph.Location.CoordinateFrame"/> property. The text will be | |
| /// aligned to this position based on the <see cref="AlignH"/> | |
| /// property.</param> | |
| /// <param name="y">The y position of the text. The units | |
| /// of this position are specified by the | |
| /// <see cref="ZedGraph.Location.CoordinateFrame"/> property. The text will be | |
| /// aligned to this position based on the | |
| /// <see cref="AlignV"/> property.</param> | |
| public GraphObj( double x, double y ) : | |
| this( x, y, Default.CoordFrame, Default.AlignH, Default.AlignV ) | |
| { | |
| } | |
| /// <summary> | |
| /// Constructor that creates a <see cref="GraphObj"/> with the specified | |
| /// coordinates and all other properties to defaults as specified | |
| /// in the <see cref="Default"/> class.. | |
| /// </summary> | |
| /// <remarks> | |
| /// The four coordinates define the starting point and ending point for | |
| /// <see cref="ArrowObj"/>'s, or the topleft and bottomright points for | |
| /// <see cref="ImageObj"/>'s. For <see cref="GraphObj"/>'s that only require | |
| /// one point, the <see paramref="x2"/> and <see paramref="y2"/> values | |
| /// will be ignored. The units of the coordinates are specified by the | |
| /// <see cref="ZedGraph.Location.CoordinateFrame"/> property. | |
| /// </remarks> | |
| /// <param name="x">The x position of the item.</param> | |
| /// <param name="y">The y position of the item.</param> | |
| /// <param name="x2">The x2 position of the item.</param> | |
| /// <param name="y2">The x2 position of the item.</param> | |
| public GraphObj( double x, double y, double x2, double y2 ) : | |
| this( x, y, x2, y2, Default.CoordFrame, Default.AlignH, Default.AlignV ) | |
| { | |
| } | |
| /// <summary> | |
| /// Constructor that creates a <see cref="GraphObj"/> with the specified | |
| /// position and <see cref="CoordType"/>. Other properties are set to default | |
| /// values as defined in the <see cref="Default"/> class. | |
| /// </summary> | |
| /// <remarks> | |
| /// The two coordinates define the location point for the object. | |
| /// The units of the coordinates are specified by the | |
| /// <see cref="ZedGraph.Location.CoordinateFrame"/> property. | |
| /// </remarks> | |
| /// <param name="x">The x position of the item. The item will be | |
| /// aligned to this position based on the <see cref="AlignH"/> | |
| /// property.</param> | |
| /// <param name="y">The y position of the item. The item will be | |
| /// aligned to this position based on the | |
| /// <see cref="AlignV"/> property.</param> | |
| /// <param name="coordType">The <see cref="CoordType"/> enum value that | |
| /// indicates what type of coordinate system the x and y parameters are | |
| /// referenced to.</param> | |
| public GraphObj( double x, double y, CoordType coordType ) : | |
| this( x, y, coordType, Default.AlignH, Default.AlignV ) | |
| { | |
| } | |
| /// <summary> | |
| /// Constructor that creates a <see cref="GraphObj"/> with the specified | |
| /// position, <see cref="CoordType"/>, <see cref="AlignH"/>, and <see cref="AlignV"/>. | |
| /// Other properties are set to default values as defined in the <see cref="Default"/> class. | |
| /// </summary> | |
| /// <remarks> | |
| /// The two coordinates define the location point for the object. | |
| /// The units of the coordinates are specified by the | |
| /// <see cref="ZedGraph.Location.CoordinateFrame"/> property. | |
| /// </remarks> | |
| /// <param name="x">The x position of the item. The item will be | |
| /// aligned to this position based on the <see cref="AlignH"/> | |
| /// property.</param> | |
| /// <param name="y">The y position of the text. The units | |
| /// of this position are specified by the | |
| /// <see cref="ZedGraph.Location.CoordinateFrame"/> property. The text will be | |
| /// aligned to this position based on the | |
| /// <see cref="AlignV"/> property.</param> | |
| /// <param name="coordType">The <see cref="CoordType"/> enum value that | |
| /// indicates what type of coordinate system the x and y parameters are | |
| /// referenced to.</param> | |
| /// <param name="alignH">The <see cref="ZedGraph.AlignH"/> enum that specifies | |
| /// the horizontal alignment of the object with respect to the (x,y) location</param> | |
| /// <param name="alignV">The <see cref="ZedGraph.AlignV"/> enum that specifies | |
| /// the vertical alignment of the object with respect to the (x,y) location</param> | |
| public GraphObj( double x, double y, CoordType coordType, AlignH alignH, AlignV alignV ) | |
| { | |
| _isVisible = true; | |
| _isClippedToChartRect = Default.IsClippedToChartRect; | |
| this.Tag = null; | |
| _zOrder = ZOrder.A_InFront; | |
| _location = new Location( x, y, coordType, alignH, alignV ); | |
| _link = new Link(); | |
| } | |
| /// <summary> | |
| /// Constructor that creates a <see cref="GraphObj"/> with the specified | |
| /// position, <see cref="CoordType"/>, <see cref="AlignH"/>, and <see cref="AlignV"/>. | |
| /// Other properties are set to default values as defined in the <see cref="Default"/> class. | |
| /// </summary> | |
| /// <remarks> | |
| /// The four coordinates define the starting point and ending point for | |
| /// <see cref="ArrowObj"/>'s, or the topleft and bottomright points for | |
| /// <see cref="ImageObj"/>'s. For <see cref="GraphObj"/>'s that only require | |
| /// one point, the <see paramref="x2"/> and <see paramref="y2"/> values | |
| /// will be ignored. The units of the coordinates are specified by the | |
| /// <see cref="ZedGraph.Location.CoordinateFrame"/> property. | |
| /// </remarks> | |
| /// <param name="x">The x position of the item.</param> | |
| /// <param name="y">The y position of the item.</param> | |
| /// <param name="x2">The x2 position of the item.</param> | |
| /// <param name="y2">The x2 position of the item.</param> | |
| /// <param name="coordType">The <see cref="CoordType"/> enum value that | |
| /// indicates what type of coordinate system the x and y parameters are | |
| /// referenced to.</param> | |
| /// <param name="alignH">The <see cref="ZedGraph.AlignH"/> enum that specifies | |
| /// the horizontal alignment of the object with respect to the (x,y) location</param> | |
| /// <param name="alignV">The <see cref="ZedGraph.AlignV"/> enum that specifies | |
| /// the vertical alignment of the object with respect to the (x,y) location</param> | |
| public GraphObj( double x, double y, double x2, double y2, CoordType coordType, | |
| AlignH alignH, AlignV alignV ) | |
| { | |
| _isVisible = true; | |
| _isClippedToChartRect = Default.IsClippedToChartRect; | |
| this.Tag = null; | |
| _zOrder = ZOrder.A_InFront; | |
| _location = new Location( x, y, x2, y2, coordType, alignH, alignV ); | |
| _link = new Link(); | |
| } | |
| /// <summary> | |
| /// The Copy Constructor | |
| /// </summary> | |
| /// <param name="rhs">The <see cref="GraphObj"/> object from which to copy</param> | |
| public GraphObj( GraphObj rhs ) | |
| { | |
| // Copy value types | |
| _isVisible = rhs.IsVisible; | |
| _isClippedToChartRect = rhs._isClippedToChartRect; | |
| _zOrder = rhs.ZOrder; | |
| // copy reference types by cloning | |
| if ( rhs.Tag is ICloneable ) | |
| this.Tag = ((ICloneable) rhs.Tag).Clone(); | |
| else | |
| this.Tag = rhs.Tag; | |
| _location = rhs.Location.Clone(); | |
| _link = rhs._link.Clone(); | |
| } | |
| /// <summary> | |
| /// Implement the <see cref="ICloneable" /> interface in a typesafe manner by just | |
| /// calling the typed version of Clone. | |
| /// </summary> | |
| /// <remarks> | |
| /// Note that this method must be called with an explicit cast to ICloneable, and | |
| /// that it is inherently virtual. For example: | |
| /// <code> | |
| /// ParentClass foo = new ChildClass(); | |
| /// ChildClass bar = (ChildClass) ((ICloneable)foo).Clone(); | |
| /// </code> | |
| /// Assume that ChildClass is inherited from ParentClass. Even though foo is declared with | |
| /// ParentClass, it is actually an instance of ChildClass. Calling the ICloneable implementation | |
| /// of Clone() on foo actually calls ChildClass.Clone() as if it were a virtual function. | |
| /// </remarks> | |
| /// <returns>A deep copy of this object</returns> | |
| object ICloneable.Clone() | |
| { | |
| throw new NotImplementedException( "Can't clone an abstract base type -- child types must implement ICloneable" ); | |
| //return new PaneBase( this ); | |
| } | |
| /// <summary> | |
| /// Current schema value that defines the version of the serialized file | |
| /// </summary> | |
| /// <remarks> | |
| /// schema changed to 2 when isClippedToChartRect was added. | |
| /// </remarks> | |
| public const int schema = 10; | |
| /// <summary> | |
| /// Constructor for deserializing objects | |
| /// </summary> | |
| /// <param name="info">A <see cref="SerializationInfo"/> instance that defines the serialized data | |
| /// </param> | |
| /// <param name="context">A <see cref="StreamingContext"/> instance that contains the serialized data | |
| /// </param> | |
| protected GraphObj( SerializationInfo info, StreamingContext context ) | |
| { | |
| // The schema value is just a file version parameter. You can use it to make future versions | |
| // backwards compatible as new member variables are added to classes | |
| int sch = info.GetInt32( "schema" ); | |
| _location = (Location) info.GetValue( "location", typeof(Location) ); | |
| _isVisible = info.GetBoolean( "isVisible" ); | |
| Tag = info.GetValue( "Tag", typeof(object) ); | |
| _zOrder = (ZOrder) info.GetValue( "zOrder", typeof(ZOrder) ); | |
| _isClippedToChartRect = info.GetBoolean( "isClippedToChartRect" ); | |
| _link = (Link) info.GetValue( "link", typeof( Link ) ); | |
| } | |
| /// <summary> | |
| /// Populates a <see cref="SerializationInfo"/> instance with the data needed to serialize the target object | |
| /// </summary> | |
| /// <param name="info">A <see cref="SerializationInfo"/> instance that defines the serialized data</param> | |
| /// <param name="context">A <see cref="StreamingContext"/> instance that contains the serialized data</param> | |
| [] | |
| public virtual void GetObjectData( SerializationInfo info, StreamingContext context ) | |
| { | |
| info.AddValue( "schema", schema ); | |
| info.AddValue( "location", _location ); | |
| info.AddValue( "isVisible", _isVisible ); | |
| info.AddValue( "Tag", Tag ); | |
| info.AddValue( "zOrder", _zOrder ); | |
| info.AddValue( "isClippedToChartRect", _isClippedToChartRect ); | |
| info.AddValue( "link", _link ); | |
| } | |
| /// <summary> | |
| /// Render this <see cref="GraphObj"/> object to the specified <see cref="Graphics"/> device. | |
| /// </summary> | |
| /// <remarks> | |
| /// This method is normally only called by the Draw method | |
| /// of the parent <see cref="GraphObjList"/> collection object. | |
| /// </remarks> | |
| /// <param name="g"> | |
| /// A graphic device object to be drawn into. This is normally e.Graphics from the | |
| /// PaintEventArgs argument to the Paint() method. | |
| /// </param> | |
| /// <param name="pane"> | |
| /// A reference to the <see cref="PaneBase"/> object that is the parent or | |
| /// owner of this object. | |
| /// </param> | |
| /// <param name="scaleFactor"> | |
| /// The scaling factor to be used for rendering objects. This is calculated and | |
| /// passed down by the parent <see cref="PaneBase"/> object using the | |
| /// <see cref="PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust | |
| /// font sizes, etc. according to the actual size of the graph. | |
| /// </param> | |
| abstract public void Draw( Graphics g, PaneBase pane, float scaleFactor ); | |
| /// <summary> | |
| /// Determine if the specified screen point lies inside the bounding box of this | |
| /// <see cref="GraphObj"/>. | |
| /// </summary> | |
| /// <param name="pt">The screen point, in pixels</param> | |
| /// <param name="pane"> | |
| /// A reference to the <see cref="PaneBase"/> object that is the parent or | |
| /// owner of this object. | |
| /// </param> | |
| /// <param name="g"> | |
| /// A graphic device object to be drawn into. This is normally e.Graphics from the | |
| /// PaintEventArgs argument to the Paint() method. | |
| /// </param> | |
| /// <param name="scaleFactor"> | |
| /// The scaling factor to be used for rendering objects. This is calculated and | |
| /// passed down by the parent <see cref="PaneBase"/> object using the | |
| /// <see cref="PaneBase.CalcScaleFactor"/> method, and is used to proportionally adjust | |
| /// font sizes, etc. according to the actual size of the graph. | |
| /// </param> | |
| /// <returns>true if the point lies in the bounding box, false otherwise</returns> | |
| virtual public bool PointInBox( PointF pt, PaneBase pane, Graphics g, float scaleFactor ) | |
| { | |
| GraphPane gPane = pane as GraphPane; | |
| if ( gPane != null && _isClippedToChartRect && !gPane.Chart.Rect.Contains( pt ) ) | |
| return false; | |
| return true; | |
| } | |
| /// <summary> | |
| /// Determines the shape type and Coords values for this GraphObj | |
| /// </summary> | |
| abstract public void GetCoords( PaneBase pane, Graphics g, float scaleFactor, | |
| out string shape, out string coords ); | |
| } | |
| } | |