#region License
//
// The Open Toolkit Library License
//
// Copyright (c) 2006 - 2009 the Open Toolkit library.
//
// 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;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace OpenTK.Platform.Windows
{
/// \internal
/// Describes a win32 window.
sealed class WinWindowInfo : IWindowInfo
{
IntPtr handle, dc;
WinWindowInfo parent;
bool disposed;
#region --- Constructors ---
///
/// Constructs a new instance.
///
public WinWindowInfo()
{
}
///
/// Constructs a new instance with the specified window handle and paren.t
///
/// The window handle for this instance.
/// The parent window of this instance (may be null).
public WinWindowInfo(IntPtr handle, WinWindowInfo parent)
{
this.handle = handle;
this.parent = parent;
}
#endregion
#region --- Public Methods ---
///
/// Gets or sets the handle of the window.
///
public IntPtr WindowHandle { get { return handle; } set { handle = value; } }
///
/// Gets or sets the Parent of the window (may be null).
///
public WinWindowInfo Parent { get { return parent; } set { parent = value; } }
///
/// Gets the device context for this window instance.
///
public IntPtr DeviceContext
{
get
{
if (dc == IntPtr.Zero)
dc = Functions.GetDC(this.WindowHandle);
//dc = Functions.GetWindowDC(this.WindowHandle);
return dc;
}
}
#region public override string ToString()
/// Returns a System.String that represents the current window.
/// A System.String that represents the current window.
public override string ToString()
{
return String.Format("Windows.WindowInfo: Handle {0}, Parent ({1})",
this.WindowHandle, this.Parent != null ? this.Parent.ToString() : "null");
}
/// Checks if this and obj reference the same win32 window.
/// The object to check against.
/// True if this and obj reference the same win32 window; false otherwise.
public override bool Equals(object obj)
{
if (obj == null) return false;
if (this.GetType() != obj.GetType()) return false;
WinWindowInfo info = (WinWindowInfo)obj;
if (info == null) return false;
// TODO: Assumes windows will always have unique handles.
return handle.Equals(info.handle);
}
/// Returns the hash code for this instance.
/// A hash code for the current WinWindowInfo.
public override int GetHashCode()
{
return handle.GetHashCode();
}
#endregion
#endregion
#region --- IDisposable ---
#region public void Dispose()
/// Releases the unmanaged resources consumed by this instance.
public void Dispose()
{
this.Dispose(true);
GC.SuppressFinalize(this);
}
#endregion
#region void Dispose(bool manual)
void Dispose(bool manual)
{
if (!disposed)
{
if (this.dc != IntPtr.Zero)
if (!Functions.ReleaseDC(this.handle, this.dc))
Debug.Print("[Warning] Failed to release device context {0}. Windows error: {1}.", this.dc, Marshal.GetLastWin32Error());
if (manual)
{
if (parent != null)
parent.Dispose();
}
disposed = true;
}
}
#endregion
#region ~WinWindowInfo()
~WinWindowInfo()
{
this.Dispose(false);
}
#endregion
#endregion
}
}