2007-08-10 11:27:13 +02:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-08-05 11:03:22 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
2007-09-21 22:34:07 +02:00
|
|
|
|
using OpenTK.Input;
|
2007-08-05 11:03:22 +02:00
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform.X11
|
|
|
|
|
{
|
2007-09-21 22:34:07 +02:00
|
|
|
|
class X11Mouse : IMouseDriver
|
2007-08-05 11:03:22 +02:00
|
|
|
|
{
|
2007-09-21 22:34:07 +02:00
|
|
|
|
#region --- IMouseDriver Members ---
|
|
|
|
|
|
|
|
|
|
public IList<Mouse> Mouse
|
|
|
|
|
{
|
|
|
|
|
get { throw new Exception("The method or operation is not implemented."); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int RegisterDevices()
|
|
|
|
|
{
|
|
|
|
|
throw new Exception("The method or operation is not implemented.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
2007-08-05 11:03:22 +02:00
|
|
|
|
}
|
|
|
|
|
}
|