File size: 16,510 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 |
//============================================================================
//ZedGraph Class Library - A Flexible Line Graph/Bar Graph Library in C#
//Copyright � 2007 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.Runtime.Serialization;
using System.Security.Permissions;
namespace ZedGraph
{
/// <summary>
/// A class that handles the basic attributes of a line segment.
/// </summary>
/// <remarks>
/// This is the base class for <see cref="Line" /> and <see cref="Border" /> classes.
/// </remarks>
/// <author> John Champion </author>
/// <version> $Revision: 3.2 $ $Date: 2007-03-17 18:43:44 $ </version>
[Serializable]
public class LineBase : ICloneable, ISerializable
{
#region Fields
/// <summary>
/// Private field that stores the pen width for this line.
/// Use the public property <see cref="Width"/> to access this value.
/// </summary>
internal float _width;
/// <summary>
/// Private field that stores the <see cref="DashStyle"/> for this
/// line. Use the public
/// property <see cref="Style"/> to access this value.
/// </summary>
internal DashStyle _style;
/// <summary>
/// private field that stores the "Dash On" length for drawing the line. Use the
/// public property <see cref="DashOn" /> to access this value.
/// </summary>
internal float _dashOn;
/// <summary>
/// private field that stores the "Dash Off" length for drawing the line. Use the
/// public property <see cref="DashOff" /> to access this value.
/// </summary>
internal float _dashOff;
/// <summary>
/// Private field that stores the visibility of this line. Use the public
/// property <see cref="IsVisible"/> to access this value.
/// </summary>
internal bool _isVisible;
/// <summary>
/// private field that determines if the line is drawn using
/// Anti-Aliasing capabilities from the <see cref="Graphics" /> class.
/// Use the public property <see cref="IsAntiAlias" /> to access
/// this value.
/// </summary>
internal bool _isAntiAlias;
/// <summary>
/// Private field that stores the color of this line. Use the public
/// property <see cref="Color"/> to access this value. If this value is
/// false, the line will not be shown (but the <see cref="Symbol"/> may
/// still be shown).
/// </summary>
internal Color _color;
/// <summary>
/// Internal field that stores a custom <see cref="Fill" /> class. This
/// fill is used strictly for <see cref="FillType.GradientByX" />,
/// <see cref="FillType.GradientByY" />, <see cref="FillType.GradientByZ" />,
/// and <see cref="FillType.GradientByColorValue" /> calculations to determine
/// the color of the line.
/// </summary>
internal Fill _gradientFill;
#endregion
#region Defaults
/// <summary>
/// A simple struct that defines the
/// default property values for the <see cref="LineBase"/> class.
/// </summary>
public struct Default
{
/// <summary>
/// The default mode for displaying line segments (<see cref="LineBase.IsVisible"/>
/// property). True to show the line segments, false to hide them.
/// </summary>
public static bool IsVisible = true;
/// <summary>
/// The default width for line segments (<see cref="LineBase.Width"/> property).
/// Units are points (1/72 inch).
/// </summary>
public static float Width = 1;
/// <summary>
/// The default value for the <see cref="LineBase.IsAntiAlias"/>
/// property.
/// </summary>
public static bool IsAntiAlias = false;
/// <summary>
/// The default drawing style for line segments (<see cref="LineBase.Style"/> property).
/// This is defined with the <see cref="DashStyle"/> enumeration.
/// </summary>
public static DashStyle Style = DashStyle.Solid;
/// <summary>
/// The default "dash on" size for drawing the line
/// (<see cref="LineBase.DashOn"/> property). Units are in points (1/72 inch).
/// </summary>
public static float DashOn = 1.0F;
/// <summary>
/// The default "dash off" size for drawing the the line
/// (<see cref="LineBase.DashOff"/> property). Units are in points (1/72 inch).
/// </summary>
public static float DashOff = 1.0F;
/// <summary>
/// The default color for the line.
/// This is the default value for the <see cref="LineBase.Color"/> property.
/// </summary>
public static Color Color = Color.Black;
}
#endregion
#region Properties
/// <summary>
/// The color of the <see cref="Line"/>. Note that this color value can be
/// overridden if the <see cref="Fill.Type">GradientFill.Type</see> is one of the
/// <see cref="FillType.GradientByX" />,
/// <see cref="FillType.GradientByY" />, <see cref="FillType.GradientByZ" />,
/// and <see cref="FillType.GradientByColorValue" /> types.
/// </summary>
/// <seealso cref="GradientFill"/>
public Color Color
{
get { return _color; }
set { _color = value; }
}
/// <summary>
/// The style of the <see cref="Line"/>, defined as a <see cref="DashStyle"/> enum.
/// This allows the line to be solid, dashed, or dotted.
/// </summary>
/// <seealso cref="Default.Style"/>
/// <seealso cref="DashOn" />
/// <seealso cref="DashOff" />
public DashStyle Style
{
get { return _style; }
set { _style = value; }
}
/// <summary>
/// The "Dash On" mode for drawing the line.
/// </summary>
/// <remarks>
/// This is the distance, in points (1/72 inch), of the dash segments that make up
/// the dashed grid lines. This setting is only valid if
/// <see cref="Style" /> is set to <see cref="DashStyle.Custom" />.
/// </remarks>
/// <value>The dash on length is defined in points (1/72 inch)</value>
/// <seealso cref="DashOff"/>
/// <seealso cref="IsVisible"/>
/// <seealso cref="Default.DashOn"/>.
public float DashOn
{
get { return _dashOn; }
set { _dashOn = value; }
}
/// <summary>
/// The "Dash Off" mode for drawing the line.
/// </summary>
/// <remarks>
/// This is the distance, in points (1/72 inch), of the spaces between the dash
/// segments that make up the dashed grid lines. This setting is only valid if
/// <see cref="Style" /> is set to <see cref="DashStyle.Custom" />.
/// </remarks>
/// <value>The dash off length is defined in points (1/72 inch)</value>
/// <seealso cref="DashOn"/>
/// <seealso cref="IsVisible"/>
/// <seealso cref="Default.DashOff"/>.
public float DashOff
{
get { return _dashOff; }
set { _dashOff = value; }
}
/// <summary>
/// The pen width used to draw the <see cref="Line"/>, in points (1/72 inch)
/// </summary>
/// <seealso cref="Default.Width"/>
public float Width
{
get { return _width; }
set { _width = value; }
}
/// <summary>
/// Gets or sets a property that shows or hides the <see cref="Line"/>.
/// </summary>
/// <value>true to show the line, false to hide it</value>
/// <seealso cref="Default.IsVisible"/>
public bool IsVisible
{
get { return _isVisible; }
set { _isVisible = value; }
}
/// <summary>
/// Gets or sets a value that determines if the lines are drawn using
/// Anti-Aliasing capabilities from the <see cref="Graphics" /> class.
/// </summary>
/// <remarks>
/// If this value is set to true, then the <see cref="Graphics.SmoothingMode" />
/// property will be set to <see cref="SmoothingMode.HighQuality" /> only while
/// this <see cref="Line" /> is drawn. A value of false will leave the value of
/// <see cref="Graphics.SmoothingMode" /> unchanged.
/// </remarks>
public bool IsAntiAlias
{
get { return _isAntiAlias; }
set { _isAntiAlias = value; }
}
/// <summary>
/// Gets or sets a custom <see cref="Fill" /> class.
/// </summary>
/// <remarks>This fill is used strictly for <see cref="FillType.GradientByX" />,
/// <see cref="FillType.GradientByY" />, <see cref="FillType.GradientByZ" />,
/// and <see cref="FillType.GradientByColorValue" /> calculations to determine
/// the color of the line. It overrides the <see cref="Color" /> property if
/// one of the above <see cref="FillType" /> values are selected.
/// </remarks>
/// <seealso cref="Color"/>
public Fill GradientFill
{
get { return _gradientFill; }
set { _gradientFill = value; }
}
#endregion
#region Constructors
/// <summary>
/// Default constructor that sets all <see cref="LineBase"/> properties to default
/// values as defined in the <see cref="Default"/> class.
/// </summary>
public LineBase()
: this( Color.Empty )
{
}
/// <summary>
/// Constructor that sets the color property to the specified value, and sets
/// the remaining <see cref="LineBase"/> properties to default
/// values as defined in the <see cref="Default"/> class.
/// </summary>
/// <param name="color">The color to assign to this new Line object</param>
public LineBase( Color color )
{
_width = Default.Width;
_style = Default.Style;
_dashOn = Default.DashOn;
_dashOff = Default.DashOff;
_isVisible = Default.IsVisible;
_color = color.IsEmpty ? Default.Color : color;
_isAntiAlias = Default.IsAntiAlias;
_gradientFill = new Fill( Color.Red, Color.White );
_gradientFill.Type = FillType.None;
}
/// <summary>
/// The Copy Constructor
/// </summary>
/// <param name="rhs">The LineBase object from which to copy</param>
public LineBase( LineBase rhs )
{
_width = rhs._width;
_style = rhs._style;
_dashOn = rhs._dashOn;
_dashOff = rhs._dashOff;
_isVisible = rhs._isVisible;
_color = rhs._color;
_isAntiAlias = rhs._isAntiAlias;
_gradientFill = new Fill( rhs._gradientFill );
}
/// <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>
// /// Typesafe, deep-copy clone method.
// /// </summary>
// /// <returns>A new, independent copy of this class</returns>
//public LineBase Clone()
//{
// return new LineBase( this );
//}
#endregion
#region Serialization
/// <summary>
/// Current schema value that defines the version of the serialized file
/// </summary>
public const int schema0 = 12;
/// <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 LineBase( 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( "schema0" );
_width = info.GetSingle( "width" );
_style = (DashStyle)info.GetValue( "style", typeof( DashStyle ) );
_dashOn = info.GetSingle( "dashOn" );
_dashOff = info.GetSingle( "dashOff" );
_isVisible = info.GetBoolean( "isVisible" );
_isAntiAlias = info.GetBoolean( "isAntiAlias" );
_color = (Color)info.GetValue( "color", typeof( Color ) );
_gradientFill = (Fill)info.GetValue( "gradientFill", typeof( Fill ) );
}
/// <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( "schema0", schema0 );
info.AddValue( "width", _width );
info.AddValue( "style", _style );
info.AddValue( "dashOn", _dashOn );
info.AddValue( "dashOff", _dashOff );
info.AddValue( "isVisible", _isVisible );
info.AddValue( "isAntiAlias", _isAntiAlias );
info.AddValue( "color", _color );
info.AddValue( "gradientFill", _gradientFill );
}
#endregion
#region Methods
/// <summary>
/// Create a <see cref="Pen" /> object based on the properties of this
/// <see cref="LineBase" />.
/// </summary>
/// <param name="pane">The owner <see cref="GraphPane" /> of this
/// <see cref="LineBase" />.
/// </param>
/// <param name="scaleFactor">
/// The scaling factor to be used for rendering objects. This is calculated and
/// passed down by the parent <see cref="GraphPane"/> 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>A <see cref="Pen" /> object with the properties of this <see cref="LineBase" />
/// </returns>
public Pen GetPen( PaneBase pane, float scaleFactor )
{
return GetPen( pane, scaleFactor, null );
}
/// <summary>
/// Create a <see cref="Pen" /> object based on the properties of this
/// <see cref="LineBase" />.
/// </summary>
/// <param name="pane">The owner <see cref="GraphPane" /> of this
/// <see cref="LineBase" />.
/// </param>
/// <param name="scaleFactor">
/// The scaling factor to be used for rendering objects. This is calculated and
/// passed down by the parent <see cref="GraphPane"/> 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>
/// <param name="dataValue">The data value to be used for a value-based
/// color gradient. This is only applicable if <see cref="Fill.Type">GradientFill.Type</see>
/// is one of <see cref="FillType.GradientByX"/>,
/// <see cref="FillType.GradientByY"/>, <see cref="FillType.GradientByZ"/>,
/// or <see cref="FillType.GradientByColorValue" />.
/// </param>
/// <returns>A <see cref="Pen" /> object with the properties of this <see cref="LineBase" />
/// </returns>
public Pen GetPen( PaneBase pane, float scaleFactor, PointPair dataValue )
{
Color color = _color;
if ( _gradientFill.IsGradientValueType )
color = _gradientFill.GetGradientColor( dataValue );
Pen pen = new Pen( color,
pane.ScaledPenWidth( _width, scaleFactor ) );
pen.DashStyle = _style;
if ( _style == DashStyle.Custom )
{
if ( _dashOff > 1e-10 && _dashOn > 1e-10 )
{
pen.DashStyle = DashStyle.Custom;
float[] pattern = new float[2];
pattern[0] = _dashOn;
pattern[1] = _dashOff;
pen.DashPattern = pattern;
}
else
pen.DashStyle = DashStyle.Solid;
}
return pen;
}
#endregion
}
}
|