2007-08-05 09:03:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
using OpenTK.Input;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform.X11
|
|
|
|
|
{
|
2007-08-05 13:42:31 +00:00
|
|
|
|
/// <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
|
2007-08-05 09:03:22 +00:00
|
|
|
|
{
|
2007-08-05 13:42:31 +00:00
|
|
|
|
internal X11Keyboard(WindowInfo windowHandle)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2007-08-05 09:03:22 +00:00
|
|
|
|
#region --- IKeyboardDriver Members ---
|
|
|
|
|
|
|
|
|
|
public IList<Keyboard> Keyboard
|
|
|
|
|
{
|
|
|
|
|
get { throw new Exception("The method or operation is not implemented."); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|