Modified MouseDevice events to follow the class library design guidelines.

Changed Mouse[Move|Button|Wheel]EventArgs into classes that inherit from EventsArgs, in order to follow the event design guidelines.
This commit is contained in:
the_fiddler 2009-09-04 23:13:24 +00:00
parent 7a09bff35d
commit 9de6041fa2

View file

@ -48,6 +48,9 @@ namespace OpenTK.Input
readonly bool[] button_state = new bool[Enum.GetValues(typeof(MouseButton)).Length]; readonly bool[] button_state = new bool[Enum.GetValues(typeof(MouseButton)).Length];
int wheel, last_wheel; int wheel, last_wheel;
Point pos = new Point(), last_pos = new Point(); Point pos = new Point(), last_pos = new Point();
MouseMoveEventArgs move_args = new MouseMoveEventArgs();
MouseButtonEventArgs button_args = new MouseButtonEventArgs();
MouseWheelEventArgs wheel_args = new MouseWheelEventArgs();
#if COMPAT_REV1519 #if COMPAT_REV1519
int wheel_last_accessed = 0; int wheel_last_accessed = 0;
Point pos_last_accessed = new Point(); Point pos_last_accessed = new Point();
@ -136,16 +139,14 @@ namespace OpenTK.Input
internal set internal set
{ {
wheel = value; wheel = value;
if (WheelChanged != null)
WheelChanged( wheel_args.X = pos.X;
this, wheel_args.Y = pos.Y;
new MouseWheelEventArgs( wheel_args.Value = wheel;
pos.X, wheel_args.Delta = wheel - last_wheel;
pos.Y,
wheel, WheelChanged(this, wheel_args );
wheel - last_wheel
)
);
last_wheel = wheel; last_wheel = wheel;
} }
} }
@ -194,11 +195,14 @@ namespace OpenTK.Input
bool previous_state = button_state[(int)button]; bool previous_state = button_state[(int)button];
button_state[(int)button] = value; button_state[(int)button] = value;
MouseButtonEventArgs e = new MouseButtonEventArgs(pos.X, pos.Y, button, value); button_args.X = pos.X;
button_args.Y = pos.Y;
button_args.Button = button;
button_args.IsPressed = value;
if (value && !previous_state) if (value && !previous_state)
ButtonDown(this, e); ButtonDown(this, button_args);
else if (!value && previous_state) else if (!value && previous_state)
ButtonUp(this, e); ButtonUp(this, button_args);
} }
} }
@ -218,7 +222,11 @@ namespace OpenTK.Input
set set
{ {
pos = value; pos = value;
Move(this, new MouseMoveEventArgs(pos.X, pos.Y, pos.X - last_pos.X, pos.Y - last_pos.Y)); move_args.X = pos.X;
move_args.Y = pos.Y;
move_args.XDelta = pos.X - last_pos.X;
move_args.YDelta = pos.Y - last_pos.Y;
Move(this, move_args);
last_pos = pos; last_pos = pos;
} }
} }
@ -232,31 +240,38 @@ namespace OpenTK.Input
/// <summary> /// <summary>
/// Occurs when the mouse's position is moved. /// Occurs when the mouse's position is moved.
/// </summary> /// </summary>
public event MouseMoveEventHandler Move = delegate(object sender, MouseMoveEventArgs e) { }; public event EventHandler<MouseMoveEventArgs> Move = delegate { };
/// <summary> /// <summary>
/// Occurs when a button is pressed. /// Occurs when a button is pressed.
/// </summary> /// </summary>
public event MouseButtonEventHandler ButtonDown = delegate(object sender, MouseButtonEventArgs e) { }; public event EventHandler<MouseButtonEventArgs> ButtonDown = delegate { };
/// <summary> /// <summary>
/// Occurs when a button is released. /// Occurs when a button is released.
/// </summary> /// </summary>
public event MouseButtonEventHandler ButtonUp = delegate(object sender, MouseButtonEventArgs e) { }; public event EventHandler<MouseButtonEventArgs> ButtonUp = delegate { };
/// <summary> /// <summary>
/// Occurs when one of the mouse wheels is moved. /// Occurs when one of the mouse wheels is moved.
/// </summary> /// </summary>
public event MouseWheelEventHandler WheelChanged = delegate(object sender, MouseWheelEventArgs e) { }; public event EventHandler<MouseWheelEventArgs> WheelChanged = delegate { };
#region --- Overrides --- #region --- Overrides ---
/// <summary>
/// Calculates the hash code for this instance.
/// </summary>
/// <returns></returns>
public override int GetHashCode() public override int GetHashCode()
{ {
//return base.GetHashCode();
return (int)(numButtons ^ numWheels ^ id.GetHashCode() ^ description.GetHashCode()); return (int)(numButtons ^ numWheels ^ id.GetHashCode() ^ description.GetHashCode());
} }
/// <summary>
/// Returns a <see cref="System.String"/> that describes this instance.
/// </summary>
/// <returns>A <see cref="System.String"/> that describes this instance.</returns>
public override string ToString() public override string ToString()
{ {
return String.Format("ID: {0} ({1}). Buttons: {2}, Wheels: {3}", return String.Format("ID: {0} ({1}). Buttons: {2}, Wheels: {3}",
@ -332,11 +347,89 @@ namespace OpenTK.Input
#region Event Arguments #region Event Arguments
public struct MouseMoveEventArgs /// <summary>
/// Defines the event data for <see cref="MouseDevice"/> events.
/// </summary>
/// <remarks>
/// <para>
/// Do not cache instances of this type outside their event handler.
/// If necessary, you can clone an instance using the
/// <see cref="MouseEventArgs(MouseEventArgs)"/> constructor.
/// </para>
/// </remarks>
public class MouseEventArgs : EventArgs
{ {
#region Fields #region Fields
int x, y; int x, y;
#endregion
#region Constructors
/// <summary>
/// Constructs a new instance.
/// </summary>
public MouseEventArgs()
{
}
/// <summary>
/// Constructs a new instance.
/// </summary>
/// <param name="x">The X position.</param>
/// <param name="y">The Y position.</param>
public MouseEventArgs(int x, int y)
{
this.x = x;
this.y = y;
}
/// <summary>
/// Constructs a new instance.
/// </summary>
/// <param name="args">The <see cref="MouseEventArgs"/> instance to clone.</param>
public MouseEventArgs(MouseEventArgs args)
: this(args.x, args.y)
{
}
#endregion
#region Public Members
/// <summary>
/// Gets the X position of the mouse for the event.
/// </summary>
public int X { get { return x; } internal set { x = value; } }
/// <summary>
/// Gets the Y position of the mouse for the event.
/// </summary>
public int Y { get { return y; } internal set { y = value; } }
/// <summary>
/// Gets a System.Drawing.Points representing the location of the mouse for the event.
/// </summary>
public Point Position { get { return new Point(x, y); } }
#endregion
}
/// <summary>
/// Defines the event data for <see cref="MouseDevice.Move"/> events.
/// </summary>
/// <remarks>
/// <para>
/// Do not cache instances of this type outside their event handler.
/// If necessary, you can clone an instance using the
/// <see cref="MouseMoveEventArgs(MouseMoveEventArgs)"/> constructor.
/// </para>
/// </remarks>
public class MouseMoveEventArgs : MouseEventArgs
{
#region Fields
int x_delta, y_delta; int x_delta, y_delta;
#endregion #endregion
@ -344,200 +437,181 @@ namespace OpenTK.Input
#region Constructors #region Constructors
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="MouseMoveEventArgs"/> class. /// Constructs a new <see cref="MouseMoveEventArgs"/> instance.
/// </summary>
public MouseMoveEventArgs() { }
/// <summary>
/// Constructs a new <see cref="MouseMoveEventArgs"/> instance.
/// </summary> /// </summary>
/// <param name="x">The X position.</param> /// <param name="x">The X position.</param>
/// <param name="y">The Y position.</param> /// <param name="y">The Y position.</param>
/// <param name="xDelta">The change in X position produced by this event.</param> /// <param name="xDelta">The change in X position produced by this event.</param>
/// <param name="yDelta">The change in Y position produced by this event.</param> /// <param name="yDelta">The change in Y position produced by this event.</param>
public MouseMoveEventArgs(int x, int y, int xDelta, int yDelta) public MouseMoveEventArgs(int x, int y, int xDelta, int yDelta)
: base(x, y)
{
XDelta = xDelta;
YDelta = yDelta;
}
/// <summary>
/// Constructs a new <see cref="MouseMoveEventArgs"/> instance.
/// </summary>
/// <param name="args">The <see cref="MouseMoveEventArgs"/> instance to clone.</param>
public MouseMoveEventArgs(MouseMoveEventArgs args)
: this(args.X, args.Y, args.XDelta, args.YDelta)
{ {
this.x = x;
this.y = y;
this.x_delta = xDelta;
this.y_delta = yDelta;
} }
#endregion #endregion
#region Public Members #region Public Members
/// <summary>
/// Gets the X position of the mouse for the event.
/// </summary>
public int X { get { return x; } }
/// <summary>
/// Gets the Y position of the mouse for the event.
/// </summary>
public int Y { get { return y; } }
/// <summary>
/// Gets a System.Drawing.Points representing the location of the mouse for the event.
/// </summary>
public Point Position { get { return new Point(x, y); } }
/// <summary> /// <summary>
/// Gets the change in X position produced by this event. /// Gets the change in X position produced by this event.
/// </summary> /// </summary>
public int XDelta { get { return x_delta; } } public int XDelta { get { return x_delta; } internal set { x_delta = value; } }
/// <summary> /// <summary>
/// Gets the change in Y position produced by this event. /// Gets the change in Y position produced by this event.
/// </summary> /// </summary>
public int YDelta { get { return y_delta; } } public int YDelta { get { return y_delta; } internal set { y_delta = value; } }
#endregion #endregion
} }
/// <summary> /// <summary>
/// Provides data for the <see cref="MouseDevice.ButtonDown"/> and <see cref="MouseDevice.ButtonUp"/> events. /// Defines the event data for <see cref="MouseDevice.ButtonDown"/> and <see cref="MouseDevice.ButtonUp"/> events.
/// </summary> /// </summary>
public struct MouseButtonEventArgs /// <remarks>
/// <para>
/// Do not cache instances of this type outside their event handler.
/// If necessary, you can clone an instance using the
/// <see cref="MouseButtonEventArgs(MouseButtonEventArgs)"/> constructor.
/// </para>
/// </remarks>
public class MouseButtonEventArgs : MouseEventArgs
{ {
#region Fields #region Fields
MouseButton button; MouseButton button;
bool pressed; bool pressed;
int x, y;
#endregion #endregion
#region Constructors #region Constructors
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="MouseButtonEventArgs"/> class. /// Constructs a new <see cref="MouseButtonEventArgs"/> instance.
/// </summary>
public MouseButtonEventArgs() { }
/// <summary>
/// Constructs a new <see cref="MouseButtonEventArgs"/> instance.
/// </summary> /// </summary>
/// <param name="x">The X position.</param> /// <param name="x">The X position.</param>
/// <param name="y">The Y position.</param> /// <param name="y">The Y position.</param>
/// <param name="button">The mouse button for the event.</param> /// <param name="button">The mouse button for the event.</param>
/// <param name="pressed">The current state of the button.</param> /// <param name="pressed">The current state of the button.</param>
internal MouseButtonEventArgs(int x, int y, MouseButton button, bool pressed) public MouseButtonEventArgs(int x, int y, MouseButton button, bool pressed)
: base(x, y)
{ {
this.x = x;
this.y = y;
this.button = button; this.button = button;
this.pressed = pressed; this.pressed = pressed;
} }
/// <summary>
/// Constructs a new <see cref="MouseButtonEventArgs"/> instance.
/// </summary>
/// <param name="args">The <see cref="MouseButtonEventArgs"/> instance to clone.</param>
public MouseButtonEventArgs(MouseButtonEventArgs args)
: this(args.X, args.Y, args.Button, args.IsPressed)
{
}
#endregion #endregion
#region Public Members #region Public Members
/// <summary>
/// Gets the X position of the mouse for the event.
/// </summary>
public int X { get { return x; } }
/// <summary>
/// Gets the Y position of the mouse for the event.
/// </summary>
public int Y { get { return y; } }
/// <summary>
/// Gets a System.Drawing.Points representing the location of the mouse for the event.
/// </summary>
public Point Position { get { return new Point(x, y); } }
/// <summary> /// <summary>
/// The mouse button for the event. /// The mouse button for the event.
/// </summary> /// </summary>
public MouseButton Button { get { return this.button; } } public MouseButton Button { get { return button; } internal set { button = value; } }
/// <summary> /// <summary>
/// Gets a System.Boolean representing the state of the mouse button for the event. /// Gets a System.Boolean representing the state of the mouse button for the event.
/// </summary> /// </summary>
public bool IsPressed { get { return pressed; } } public bool IsPressed { get { return pressed; } internal set { pressed = value; } }
#endregion #endregion
} }
/// <summary> /// <summary>
/// Provides data for the <see cref="MouseDevice.WheelChanged"/> event. /// Defines the event data for <see cref="MouseDevice.WheelChanged"/> events.
/// </summary> /// </summary>
public struct MouseWheelEventArgs /// <remarks>
/// <para>
/// Do not cache instances of this type outside their event handler.
/// If necessary, you can clone an instance using the
/// <see cref="MouseWheelEventArgs(MouseWheelEventArgs)"/> constructor.
/// </para>
/// </remarks>
public class MouseWheelEventArgs : MouseEventArgs
{ {
#region Fields #region Fields
int value; int value;
int delta; int delta;
int x, y;
#endregion #endregion
#region Constructors #region Constructors
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="MouseWheelEventArgs"/> class. /// Constructs a new <see cref="MouseWheelEventArgs"/> instance.
/// </summary>
public MouseWheelEventArgs() { }
/// <summary>
/// Constructs a new <see cref="MouseWheelEventArgs"/> instance.
/// </summary> /// </summary>
/// <param name="x">The X position.</param> /// <param name="x">The X position.</param>
/// <param name="y">The Y position.</param> /// <param name="y">The Y position.</param>
/// <param name="value">The value of the wheel.</param> /// <param name="value">The value of the wheel.</param>
/// <param name="delta">The change in value of the wheel for this event.</param> /// <param name="delta">The change in value of the wheel for this event.</param>
public MouseWheelEventArgs(int x, int y, int value, int delta) public MouseWheelEventArgs(int x, int y, int value, int delta)
: base(x, y)
{ {
this.x = x;
this.y = y;
this.value = value; this.value = value;
this.delta = delta; this.delta = delta;
} }
/// <summary>
/// Constructs a new <see cref="MouseWheelEventArgs"/> instance.
/// </summary>
/// <param name="args">The <see cref="MouseWheelEventArgs"/> instance to clone.</param>
public MouseWheelEventArgs(MouseWheelEventArgs args)
: this(args.X, args.Y, args.Value, args.Delta)
{
}
#endregion #endregion
#region Public Members #region Public Members
/// <summary> /// <summary>
/// Gets the X position of the mouse for the event. /// Gets the value of the wheel.
/// </summary> /// </summary>
public int X { get { return x; } } public int Value { get { return this.value; } internal set { this.value = value; } }
/// <summary> /// <summary>
/// Gets the Y position of the mouse for the event. /// Gets the change in value of the wheel for this event.
/// </summary> /// </summary>
public int Y { get { return y; } } public int Delta { get { return delta; } internal set { delta = value; } }
/// <summary>
/// Gets a System.Drawing.Points representing the location of the mouse for the event.
/// </summary>
public Point Position { get { return new Point(x, y); } }
/// <summary>
/// The value of the wheel.
/// </summary>
public int Value { get { return value; } }
/// <summary>
/// The change in value of the wheel for this event.
/// </summary>
public int Delta { get { return delta; } }
#endregion #endregion
} }
#endregion #endregion
#region Event Handlers
/// <summary>
/// Defines a <see cref="MouseDevice.Move"/> event.
/// </summary>
/// <param name="sender">The MouseDevice that generated this event.</param>
/// <param name="e">A <see cref="MouseMoveEventArgs"/> that contains the event data.</param>
public delegate void MouseMoveEventHandler(object sender, MouseMoveEventArgs e);
/// <summary>
/// Defines a <see cref="MouseDevice.WheelChanged"/> event.
/// </summary>
/// <param name="sender">The MouseDevice that generated this event.</param>
/// <param name="e">A <see>MouseWheelEventArgs</see> that contains the event data.</param>
public delegate void MouseWheelEventHandler(object sender, MouseWheelEventArgs e);
/// <summary>
/// Defines the <see cref="MouseDevice.ButtonDown"/> and <see cref="MouseDevice.ButtonUp"/> events.
/// </summary>
/// <param name="sender">The MouseDevice that generated this event.</param>
/// <param name="e">A <see cref="MouseButtonEventArgs"/> that contains the event data.</param>
public delegate void MouseButtonEventHandler(object sender, MouseButtonEventArgs e);
#endregion
} }