ZoomState.cs
6.1 KB
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
//============================================================================
//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 Lesser 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
//Lesser General Public License for more details.
//
//You should have received a copy of the GNU Lesser 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
//=============================================================================
#region Using directives
using System;
using System.Text;
#endregion
namespace ZedGraph
{
/// <summary>
/// A class that captures all the scale range settings for a <see cref="GraphPane"/>.
/// </summary>
/// <remarks>
/// This class is used to store scale ranges in order to allow zooming out to
/// prior scale range states. <see cref="ZoomState"/> objects are maintained in the
/// <see cref="ZoomStateStack"/> collection. The <see cref="ZoomState"/> object holds
/// a <see cref="ScaleState"/> object for each of the three axes; the <see cref="XAxis"/>,
/// the <see cref="YAxis"/>, and the <see cref="Y2Axis"/>.
/// </remarks>
/// <author> John Champion </author>
/// <version> $Revision: 3.15 $ $Date: 2007/04/16 00:03:07 $ </version>
public class ZoomState : ICloneable
{
/// <summary>
/// An enumeration that describes whether a given state is the result of a Pan or Zoom
/// operation.
/// </summary>
public enum StateType
{
/// <summary>
/// Indicates the <see cref="ZoomState"/> object is from a Zoom operation
/// </summary>
Zoom,
/// <summary>
/// Indicates the <see cref="ZoomState"/> object is from a Wheel Zoom operation
/// </summary>
WheelZoom,
/// <summary>
/// Indicates the <see cref="ZoomState"/> object is from a Pan operation
/// </summary>
Pan,
/// <summary>
/// Indicates the <see cref="ZoomState"/> object is from a Scroll operation
/// </summary>
Scroll
}
/// <summary>
/// <see cref="ScaleState"/> objects to store the state data from the axes.
/// </summary>
private ScaleState _xAxis, _x2Axis;
private ScaleStateList _yAxis, _y2Axis;
/// <summary>
/// An enum value indicating the type of adjustment being made to the
/// scale range state.
/// </summary>
private StateType _type;
/// <summary>
/// Gets a <see cref="StateType" /> value indicating the type of action (zoom or pan)
/// saved by this <see cref="ZoomState" />.
/// </summary>
public StateType Type
{
get { return _type; }
}
/// <summary>
/// Gets a string representing the type of adjustment that was made when this scale
/// state was saved.
/// </summary>
/// <value>A string representation for the state change type; typically
/// "Pan", "Zoom", or "Scroll".</value>
public string TypeString
{
get
{
switch ( _type )
{
case StateType.Pan:
return "Pan";
case StateType.WheelZoom:
return "WheelZoom";
case StateType.Zoom:
default:
return "Zoom";
case StateType.Scroll:
return "Scroll";
}
}
}
/// <summary>
/// Construct a <see cref="ZoomState"/> object from the scale ranges settings contained
/// in the specified <see cref="GraphPane"/>.
/// </summary>
/// <param name="pane">The <see cref="GraphPane"/> from which to obtain the scale
/// range values.
/// </param>
/// <param name="type">A <see cref="StateType"/> enumeration that indicates whether
/// this saved state is from a pan or zoom.</param>
public ZoomState( GraphPane pane, StateType type )
{
_xAxis = new ScaleState( pane.XAxis );
_x2Axis = new ScaleState( pane.X2Axis );
_yAxis = new ScaleStateList( pane.YAxisList );
_y2Axis = new ScaleStateList( pane.Y2AxisList );
_type = type;
}
/// <summary>
/// The Copy Constructor
/// </summary>
/// <param name="rhs">The <see cref="ZoomState"/> object from which to copy</param>
public ZoomState( ZoomState rhs )
{
_xAxis = new ScaleState( rhs._xAxis );
_x2Axis = new ScaleState( rhs._x2Axis );
_yAxis = new ScaleStateList( rhs._yAxis );
_y2Axis = new ScaleStateList( rhs._y2Axis );
}
/// <summary>
/// Implement the <see cref="ICloneable" /> interface in a typesafe manner by just
/// calling the typed version of <see cref="Clone" />
/// </summary>
/// <returns>A deep copy of this object</returns>
object ICloneable.Clone()
{
return this.Clone();
}
/// <summary>
/// Typesafe, deep-copy clone method.
/// </summary>
/// <returns>A new, independent copy of this class</returns>
public ZoomState Clone()
{
return new ZoomState( this );
}
/// <summary>
/// Copy the properties from this <see cref="ZoomState"/> out to the specified <see cref="GraphPane"/>.
/// </summary>
/// <param name="pane">The <see cref="GraphPane"/> to which the scale range properties should be
/// copied.</param>
public void ApplyState( GraphPane pane )
{
_xAxis.ApplyScale( pane.XAxis );
_x2Axis.ApplyScale( pane.X2Axis );
_yAxis.ApplyScale( pane.YAxisList );
_y2Axis.ApplyScale( pane.Y2AxisList );
}
/// <summary>
/// Determine if the state contained in this <see cref="ZoomState"/> object is different from
/// the state of the specified <see cref="GraphPane"/>.
/// </summary>
/// <param name="pane">The <see cref="GraphPane"/> object with which to compare states.</param>
/// <returns>true if the states are different, false otherwise</returns>
public bool IsChanged( GraphPane pane )
{
return _xAxis.IsChanged( pane.XAxis ) ||
_x2Axis.IsChanged( pane.X2Axis ) ||
_yAxis.IsChanged( pane.YAxisList ) ||
_y2Axis.IsChanged( pane.Y2AxisList );
}
}
}