2014-04-27 07:20:33 +00:00
|
|
|
|
#region License
|
|
|
|
|
//
|
|
|
|
|
// NativeWindowBase.cs
|
|
|
|
|
//
|
|
|
|
|
// Author:
|
|
|
|
|
// Stefanos A. <stapostol@gmail.com>
|
|
|
|
|
//
|
|
|
|
|
// Copyright (c) 2006-2014 Stefanos Apostolopoulos
|
|
|
|
|
//
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
//
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
|
//
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
//
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2014-04-27 07:39:18 +00:00
|
|
|
|
using System.ComponentModel;
|
2014-04-27 07:20:33 +00:00
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
using OpenTK.Input;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform
|
|
|
|
|
{
|
2014-05-02 12:18:40 +00:00
|
|
|
|
// Common base class for all INativeWindow implementations
|
2014-04-27 07:20:33 +00:00
|
|
|
|
abstract class NativeWindowBase : INativeWindow
|
|
|
|
|
{
|
2014-05-02 14:52:11 +00:00
|
|
|
|
readonly LegacyInputDriver LegacyInputDriver;
|
|
|
|
|
|
2014-05-03 23:29:55 +00:00
|
|
|
|
readonly MouseButtonEventArgs MouseDownArgs = new MouseButtonEventArgs();
|
|
|
|
|
readonly MouseButtonEventArgs MouseUpArgs = new MouseButtonEventArgs();
|
|
|
|
|
readonly MouseMoveEventArgs MouseMoveArgs = new MouseMoveEventArgs();
|
|
|
|
|
readonly MouseWheelEventArgs MouseWheelArgs = new MouseWheelEventArgs();
|
2014-05-02 14:52:11 +00:00
|
|
|
|
|
2014-05-03 23:29:55 +00:00
|
|
|
|
protected readonly KeyboardKeyEventArgs KeyDownArgs = new KeyboardKeyEventArgs();
|
|
|
|
|
protected readonly KeyboardKeyEventArgs KeyUpArgs = new KeyboardKeyEventArgs();
|
|
|
|
|
protected readonly KeyPressEventArgs KeyPressArgs = new KeyPressEventArgs((char)0);
|
2014-05-02 14:52:11 +00:00
|
|
|
|
|
2014-05-03 14:47:03 +00:00
|
|
|
|
// In order to simplify mouse event implementation,
|
|
|
|
|
// we can store the current mouse state here.
|
|
|
|
|
protected MouseState MouseState = new MouseState();
|
2014-05-03 23:29:55 +00:00
|
|
|
|
MouseState PreviousMouseState = new MouseState();
|
2014-05-03 14:47:03 +00:00
|
|
|
|
|
2014-05-02 14:52:11 +00:00
|
|
|
|
internal NativeWindowBase()
|
|
|
|
|
{
|
|
|
|
|
LegacyInputDriver = new LegacyInputDriver(this);
|
2014-05-03 23:29:55 +00:00
|
|
|
|
MouseState.SetIsConnected(true);
|
|
|
|
|
PreviousMouseState.SetIsConnected(true);
|
2014-05-02 14:52:11 +00:00
|
|
|
|
}
|
2014-04-27 07:20:33 +00:00
|
|
|
|
|
2014-04-27 07:39:18 +00:00
|
|
|
|
#region Protected Members
|
|
|
|
|
|
|
|
|
|
protected void OnMove(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Move(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnResize(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Resize(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnClosing(CancelEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Closing(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnClosed(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Closed(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnDisposed(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
Disposed(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnIconChanged(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
IconChanged(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnTitleChanged(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
TitleChanged(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnVisibleChanged(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
VisibleChanged(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnFocusedChanged(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
FocusedChanged(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnWindowBorderChanged(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
WindowBorderChanged(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnWindowStateChanged(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
WindowStateChanged(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnKeyDown(KeyboardKeyEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
KeyDown(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnKeyPress(KeyPressEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
KeyPress(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnKeyUp(KeyboardKeyEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
KeyUp(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnMouseLeave(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
MouseLeave(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnMouseEnter(EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
MouseEnter(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-03 23:29:55 +00:00
|
|
|
|
protected void OnMouseDown()
|
2014-05-02 12:18:40 +00:00
|
|
|
|
{
|
2014-05-03 23:29:55 +00:00
|
|
|
|
var e = MouseDownArgs;
|
|
|
|
|
e.Mouse = MouseState;
|
|
|
|
|
|
|
|
|
|
// Find which button caused this event
|
|
|
|
|
for (MouseButton b = MouseButton.Left; b < MouseButton.LastButton; b++)
|
|
|
|
|
{
|
|
|
|
|
if (!PreviousMouseState[b] && MouseState[b])
|
|
|
|
|
{
|
|
|
|
|
e.Button = b;
|
|
|
|
|
PreviousMouseState = MouseState;
|
|
|
|
|
MouseDown(this, e);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Debug.WriteLine("OnMouseDown called without pressing a button");
|
2014-05-02 12:18:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-03 23:29:55 +00:00
|
|
|
|
protected void OnMouseUp()
|
2014-05-02 12:18:40 +00:00
|
|
|
|
{
|
2014-05-03 23:29:55 +00:00
|
|
|
|
var e = MouseUpArgs;
|
|
|
|
|
e.Mouse = MouseState;
|
|
|
|
|
|
|
|
|
|
// Find which button caused this event
|
|
|
|
|
for (MouseButton b = MouseButton.Left; b < MouseButton.LastButton; b++)
|
|
|
|
|
{
|
|
|
|
|
if (PreviousMouseState[b] && !MouseState[b])
|
|
|
|
|
{
|
|
|
|
|
e.Button = b;
|
|
|
|
|
PreviousMouseState = MouseState;
|
|
|
|
|
MouseUp(this, e);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Debug.WriteLine("OnMouseUp called without pressing a button");
|
2014-05-02 12:18:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-03 23:29:55 +00:00
|
|
|
|
protected void OnMouseMove()
|
2014-05-02 12:18:40 +00:00
|
|
|
|
{
|
2014-05-03 23:29:55 +00:00
|
|
|
|
var e = MouseMoveArgs;
|
|
|
|
|
e.Mouse = MouseState;
|
|
|
|
|
e.XDelta = MouseState.X - PreviousMouseState.X;
|
|
|
|
|
e.YDelta = MouseState.Y - PreviousMouseState.Y;
|
|
|
|
|
|
|
|
|
|
if (e.XDelta == 0 && e.YDelta == 0)
|
|
|
|
|
{
|
|
|
|
|
Debug.WriteLine("OnMouseMove called without moving the mouse");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PreviousMouseState = MouseState;
|
2014-05-02 12:18:40 +00:00
|
|
|
|
MouseMove(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-03 23:29:55 +00:00
|
|
|
|
protected void OnMouseWheel()
|
2014-05-02 12:18:40 +00:00
|
|
|
|
{
|
2014-05-03 23:29:55 +00:00
|
|
|
|
var e = MouseWheelArgs;
|
|
|
|
|
e.Mouse = MouseState;
|
|
|
|
|
e.ValuePrecise = MouseState.Scroll.Y;
|
|
|
|
|
e.DeltaPrecise = MouseState.Scroll.Y - PreviousMouseState.Scroll.Y;
|
|
|
|
|
|
|
|
|
|
if (e.DeltaPrecise == 0)
|
|
|
|
|
{
|
|
|
|
|
Debug.WriteLine("OnMouseWheel called without moving the mouse wheel.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PreviousMouseState = MouseState;
|
2014-05-02 12:18:40 +00:00
|
|
|
|
MouseWheel(this, e);
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-27 07:39:18 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region INativeWindow Members
|
|
|
|
|
|
2014-04-27 07:20:33 +00:00
|
|
|
|
public event EventHandler<EventArgs> Move = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> Resize = delegate { };
|
|
|
|
|
public event EventHandler<System.ComponentModel.CancelEventArgs> Closing = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> Closed = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> Disposed = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> IconChanged = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> TitleChanged = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> VisibleChanged = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> FocusedChanged = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> WindowBorderChanged = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> WindowStateChanged = delegate { };
|
|
|
|
|
public event EventHandler<KeyboardKeyEventArgs> KeyDown = delegate { };
|
|
|
|
|
public event EventHandler<KeyPressEventArgs> KeyPress = delegate { };
|
|
|
|
|
public event EventHandler<KeyboardKeyEventArgs> KeyUp = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> MouseLeave = delegate { };
|
|
|
|
|
public event EventHandler<EventArgs> MouseEnter = delegate { };
|
2014-05-02 12:18:40 +00:00
|
|
|
|
public event EventHandler<MouseButtonEventArgs> MouseDown = delegate { };
|
|
|
|
|
public event EventHandler<MouseButtonEventArgs> MouseUp = delegate { };
|
|
|
|
|
public event EventHandler<MouseMoveEventArgs> MouseMove = delegate { };
|
|
|
|
|
public event EventHandler<MouseWheelEventArgs> MouseWheel = delegate { };
|
2014-04-27 07:20:33 +00:00
|
|
|
|
|
|
|
|
|
public abstract void Close();
|
|
|
|
|
|
|
|
|
|
public abstract void ProcessEvents();
|
|
|
|
|
|
|
|
|
|
public abstract Point PointToClient(Point point);
|
|
|
|
|
|
|
|
|
|
public abstract Point PointToScreen(Point point);
|
|
|
|
|
|
|
|
|
|
public abstract Icon Icon { get; set; }
|
|
|
|
|
|
|
|
|
|
public abstract string Title { get; set; }
|
|
|
|
|
|
|
|
|
|
public abstract bool Focused { get; }
|
|
|
|
|
|
|
|
|
|
public abstract bool Visible { get; set; }
|
|
|
|
|
|
2014-04-27 07:39:18 +00:00
|
|
|
|
public abstract bool Exists { get; }
|
2014-04-27 07:20:33 +00:00
|
|
|
|
|
|
|
|
|
public abstract IWindowInfo WindowInfo { get; }
|
|
|
|
|
|
|
|
|
|
public abstract WindowState WindowState { get; set; }
|
|
|
|
|
|
|
|
|
|
public abstract WindowBorder WindowBorder { get; set; }
|
|
|
|
|
|
|
|
|
|
public abstract Rectangle Bounds { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual Point Location
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Bounds.Location;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Bounds = new Rectangle(value, Bounds.Size);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 12:18:40 +00:00
|
|
|
|
public virtual Size Size
|
2014-04-27 07:20:33 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Bounds.Size;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Bounds = new Rectangle(Bounds.Location, value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int X
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Bounds.X;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Rectangle old = Bounds;
|
|
|
|
|
Bounds = new Rectangle(value, old.Y, old.Width, old.Height);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Y
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Bounds.Y;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Rectangle old = Bounds;
|
|
|
|
|
Bounds = new Rectangle(old.X, value, old.Width, old.Height);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Width
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return ClientSize.Width;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Rectangle old = ClientRectangle;
|
|
|
|
|
ClientRectangle = new Rectangle(old.X, old.Y, value, old.Height);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Height
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return ClientSize.Height;
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
Rectangle old = ClientRectangle;
|
|
|
|
|
Bounds = new Rectangle(old.X, old.Y, old.Width, value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Rectangle ClientRectangle
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return new Rectangle(Point.Empty, ClientSize);
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
ClientSize = value.Size;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public abstract Size ClientSize { get; set; }
|
|
|
|
|
|
|
|
|
|
public virtual IInputDriver InputDriver
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return LegacyInputDriver;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public abstract bool CursorVisible { get; set; }
|
|
|
|
|
|
2014-05-02 12:18:40 +00:00
|
|
|
|
public abstract MouseCursor Cursor { get; set; }
|
|
|
|
|
|
2014-04-27 07:39:18 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region IDisposable Members
|
|
|
|
|
|
2014-04-27 07:20:33 +00:00
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
Dispose(true);
|
2014-04-27 07:39:18 +00:00
|
|
|
|
GC.SuppressFinalize(this);
|
2014-04-27 07:20:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected abstract void Dispose(bool disposing);
|
|
|
|
|
|
|
|
|
|
~NativeWindowBase()
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("NativeWindowBase leaked, did you forget to call Dispose()?");
|
|
|
|
|
Dispose(false);
|
|
|
|
|
}
|
2014-04-27 07:39:18 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
2014-04-27 07:20:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|