mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-10-06 12:37:28 -04:00
50 lines
920 B
C#
50 lines
920 B
C#
// ClassicalSharp copyright 2014-2016 UnknownShadow200 | Licensed under MIT
|
|
using System;
|
|
using System.Drawing;
|
|
using OpenTK;
|
|
using OpenTK.Input;
|
|
using OpenTK.Platform;
|
|
|
|
namespace ClassicalSharp {
|
|
|
|
/// <summary> Abstracts away a platform specific window, and input handler mechanism. </summary>
|
|
public interface IPlatformWindow {
|
|
|
|
int Width { get; }
|
|
|
|
int Height { get; }
|
|
|
|
bool VSync { get; set; }
|
|
|
|
bool Exists { get; }
|
|
|
|
bool Focused { get; }
|
|
|
|
bool CursorVisible { get; set; }
|
|
|
|
Point DesktopCursorPos { get; set; }
|
|
|
|
MouseDevice Mouse { get; }
|
|
|
|
KeyboardDevice Keyboard { get; }
|
|
|
|
Point PointToScreen( Point coords );
|
|
|
|
WindowState WindowState { get; set; }
|
|
|
|
IWindowInfo WindowInfo { get; }
|
|
|
|
string ClipboardText { get; set; }
|
|
|
|
void LoadIcon();
|
|
|
|
void Run();
|
|
|
|
void SwapBuffers();
|
|
|
|
void Exit();
|
|
|
|
event EventHandler<KeyPressEventArgs> KeyPress;
|
|
}
|
|
}
|