mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 05:05:31 +00:00
23403362e9
Updated everything to not use raw window handles, but rather WindowInfo objects. Added code that (hopefully) creates an invisible input window for X11.
29 lines
672 B
C#
29 lines
672 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
using OpenTK.Input;
|
|
|
|
namespace OpenTK.Platform.X11
|
|
{
|
|
/// <summary>
|
|
/// Drives the Keyboard devices on X11.
|
|
/// This class supports OpenTK, and is not intended for use by OpenTK programs.
|
|
/// </summary>
|
|
internal class X11Keyboard : IKeyboardDriver
|
|
{
|
|
internal X11Keyboard(WindowInfo windowHandle)
|
|
{
|
|
}
|
|
|
|
#region --- IKeyboardDriver Members ---
|
|
|
|
public IList<Keyboard> Keyboard
|
|
{
|
|
get { throw new Exception("The method or operation is not implemented."); }
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|