File size: 20,153 Bytes
b1b3bae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
//============================================================================
//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>
[Serializable]
abstract public class GraphObj : ISerializable, ICloneable
{
#region Fields
/// <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;
#endregion
#region Defaults
/// <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;
}
#endregion
#region Properties
/// <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;
}
}
#endregion
#region Constructors
/// <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 );
}
#endregion
#region Serialization
/// <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>
[SecurityPermissionAttribute(SecurityAction.Demand,SerializationFormatter=true)]
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 );
}
#endregion
#region Rendering Methods
/// <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 );
#endregion
}
}
|