mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 16:35:27 +00:00
98bf228a3d
Multiple keyboards correctly reported under Windows (Raw input driver). Corrected some key maps in X11 and Windows Raw keyboards.
26 lines
663 B
C#
26 lines
663 B
C#
#region --- License ---
|
|
/* Copyright (c) 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
using System;
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
public interface IKeyboard : IInputDevice
|
|
{
|
|
bool this[Key k] { get; }
|
|
int NumberOfKeys { get; }
|
|
int NumberOfFunctionKeys { get; }
|
|
int NumberOfLeds { get; }
|
|
IntPtr DeviceID { get; }
|
|
bool KeyRepeat { get; set; }
|
|
|
|
event KeyDownEvent KeyDown;
|
|
event KeyUpEvent KeyUp;
|
|
}
|
|
|
|
public delegate void KeyDownEvent(IKeyboard sender, Key key);
|
|
public delegate void KeyUpEvent(IKeyboard sender, Key key);
|
|
} |