From e5bf55564401080493e59fa3c5f0ba10a7d9adf0 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Thu, 28 Feb 2008 13:53:28 +0000 Subject: [PATCH] Obsoleted. --- Source/OpenTK/Platform/IMutableWindowInfo.cs | 4 +-- Source/OpenTK/Platform/IWindowInfoOld.cs | 27 ++++++++++++++++++++ Source/OpenTK/Platform/WindowInfo.cs | 14 +++++----- 3 files changed, 37 insertions(+), 8 deletions(-) create mode 100644 Source/OpenTK/Platform/IWindowInfoOld.cs diff --git a/Source/OpenTK/Platform/IMutableWindowInfo.cs b/Source/OpenTK/Platform/IMutableWindowInfo.cs index a882a860..be8b327e 100644 --- a/Source/OpenTK/Platform/IMutableWindowInfo.cs +++ b/Source/OpenTK/Platform/IMutableWindowInfo.cs @@ -13,8 +13,8 @@ namespace OpenTK.Platform /// /// Provides methods to /// - public interface IMutableWindowInfo : IWindowInfo + public interface IMutableWindowInfo : IWindowInfoOld { - void CopyInfoFrom(IWindowInfo info); + void CopyInfoFrom(IWindowInfoOld info); } } diff --git a/Source/OpenTK/Platform/IWindowInfoOld.cs b/Source/OpenTK/Platform/IWindowInfoOld.cs new file mode 100644 index 00000000..886accbf --- /dev/null +++ b/Source/OpenTK/Platform/IWindowInfoOld.cs @@ -0,0 +1,27 @@ +#region --- License --- +/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos + * See license.txt for license info + */ +#endregion + +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenTK.Platform +{ + /// + /// Provides a platform independent mechanism to interact with System.Windows.Forms.Control, + /// System.Windows.Forms.NativeWindow and OpenTK.GameWindow low-level implementation data. + /// + [Obsolete("Use OpenTK.Platform.IWindowInfo instead.")] + public interface IWindowInfoOld + { + IntPtr Handle { get; } + IWindowInfoOld Parent { get; } + IWindowInfoOld GetInfoFrom(System.Windows.Forms.Control control); + IWindowInfoOld GetInfoFrom(System.Windows.Forms.NativeWindow window); + IWindowInfoOld GetInfoFrom(OpenTK.GameWindow window); + IWindowInfoOld GetInfoFrom(IWindowInfoOld info); + } +} diff --git a/Source/OpenTK/Platform/WindowInfo.cs b/Source/OpenTK/Platform/WindowInfo.cs index fccaa528..86bcc262 100644 --- a/Source/OpenTK/Platform/WindowInfo.cs +++ b/Source/OpenTK/Platform/WindowInfo.cs @@ -11,6 +11,7 @@ using System.Windows.Forms; namespace OpenTK.Platform { +#if false /// /// Describes a Windows.Form.Control, Windows.Forms.NativeWindow or OpenTK.GameWindow. /// @@ -87,7 +88,7 @@ namespace OpenTK.Platform /// /// Gets the parent of the window described by the WindowInfo class. /// - public IWindowInfo Parent + public IWindowInfoOld Parent { get { return implementation.Parent; } } @@ -96,7 +97,7 @@ namespace OpenTK.Platform /// Updates the WindowInfo to describe the specified Control. /// /// The System.Windows.Forms.Control to describe. - public IWindowInfo GetInfoFrom(Control control) + public IWindowInfoOld GetInfoFrom(Control control) { return implementation.GetInfoFrom(control); } @@ -105,7 +106,7 @@ namespace OpenTK.Platform /// Updates the WindowInfo to describe the specified NativeWindow. /// /// The System.Windows.Forms.NativeWindow to describe. - public IWindowInfo GetInfoFrom(NativeWindow window) + public IWindowInfoOld GetInfoFrom(NativeWindow window) { return implementation.GetInfoFrom(window); } @@ -114,7 +115,7 @@ namespace OpenTK.Platform /// Updates the WindowInfo to describe the specified GameWindow. /// /// The OpenTK.GameWindow to describe. - public IWindowInfo GetInfoFrom(GameWindow window) + public IWindowInfoOld GetInfoFrom(GameWindow window) { return implementation.GetInfoFrom(window); } @@ -123,7 +124,7 @@ namespace OpenTK.Platform /// Updates the WindowInfo using the specified IWindowInfo. /// /// The OpenTK.Platform.IWindowInfo to get information from. - public IWindowInfo GetInfoFrom(IWindowInfo info) + public IWindowInfoOld GetInfoFrom(IWindowInfoOld info) { return implementation.GetInfoFrom(info); } @@ -132,7 +133,7 @@ namespace OpenTK.Platform #region --- IMutableWindowInfo Members --- - public void CopyInfoFrom(IWindowInfo info) + void IMutableWindowInfo.CopyInfoFrom(IWindowInfoOld info) { implementation.CopyInfoFrom(info); } @@ -149,4 +150,5 @@ namespace OpenTK.Platform #endregion } +#endif }