Make WinWindowInfo public.

Fixed X11WindowInfo line endings.
This commit is contained in:
the_fiddler 2008-05-19 20:57:36 +00:00
parent 601f6d8caa
commit 43aaa02745
2 changed files with 4 additions and 5 deletions

View file

@ -4,9 +4,8 @@ using System.Text;
namespace OpenTK.Platform.Windows
{
/// <internal />
/// <summary>Describes a win32 window.</summary>
internal sealed class WinWindowInfo : IWindowInfo
public sealed class WinWindowInfo : IWindowInfo
{
IntPtr handle, dc;
WinWindowInfo parent;

View file

@ -56,9 +56,9 @@ namespace OpenTK.Platform.X11
public IntPtr RootWindow { get { return rootWindow; } set { rootWindow = value; } }
/// <summary>Gets or sets the connection to the X11 display.</summary>
public IntPtr Display { get { return display; } set { display = value; } }
/// <summary>Gets or sets the X11 screen.</summary>
public int Screen { get { return screen; } set { screen = value; } }
//{ get { return Functions.XRRRootToScreen(display, rootWindow); } set { } }
/// <summary>Gets or sets the X11 screen.</summary>
public int Screen { get { return screen; } set { screen = value; } }
//{ get { return Functions.XRRRootToScreen(display, rootWindow); } set { } }
//public int Screen { get { return screen; } set { screen = value; } }
/// <summary>Gets or sets the X11 VisualInfo.</summary>
public XVisualInfo VisualInfo { get { return visualInfo; } set { visualInfo = value; } }