40add1aaef
Added keymap to X11/X11Keyboard.cs (not complete). Added GetKeyboardMapping(), DisplayFlags() and XKey enum to OpenTK.Platform.X11.API.cs
17 lines
No EOL
400 B
C#
17 lines
No EOL
400 B
C#
#region --- License ---
|
|
/* Copyright (c) 2007 Stefanos Apostolopoulos
|
|
* See license.txt for license info
|
|
*/
|
|
#endregion
|
|
|
|
namespace OpenTK.Input
|
|
{
|
|
public interface IKeyboard : IInputDevice
|
|
{
|
|
bool this[Key k] { get; }
|
|
int NumberOfKeys { get; }
|
|
int NumberOfFunctionKeys { get; }
|
|
int NumberOfLeds { get; }
|
|
long DeviceID { get; }
|
|
}
|
|
} |