2012-11-14 08:37:38 +00:00
|
|
|
|
#region Using Statements
|
|
|
|
|
using ANX.Framework.NonXNA;
|
2012-09-25 08:07:12 +00:00
|
|
|
|
using ANX.Framework.NonXNA.InputSystem;
|
2012-11-14 08:37:38 +00:00
|
|
|
|
using ANX.Framework.NonXNA.Development;
|
|
|
|
|
|
|
|
|
|
#endregion
|
2012-09-25 08:07:12 +00:00
|
|
|
|
|
|
|
|
|
// This file is part of the ANX.Framework created by the
|
|
|
|
|
// "ANX.Framework developer group" and released under the Ms-PL license.
|
|
|
|
|
// For details see: http://anxframework.codeplex.com/license
|
|
|
|
|
|
|
|
|
|
namespace ANX.InputDevices.Windows.ModernUI
|
|
|
|
|
{
|
2012-11-14 08:37:38 +00:00
|
|
|
|
[PercentageComplete(100)]
|
|
|
|
|
[TestState(TestStateAttribute.TestState.Tested)]
|
|
|
|
|
[Developer("Glatzemann")]
|
|
|
|
|
public class MouseCreator : IMouseCreator
|
2012-09-25 08:07:12 +00:00
|
|
|
|
{
|
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return "ModernUI.Mouse";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int Priority
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return 10;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-11-14 08:37:38 +00:00
|
|
|
|
|
|
|
|
|
public IMouse CreateDevice()
|
|
|
|
|
{
|
|
|
|
|
return new Mouse();
|
|
|
|
|
}
|
2015-10-18 13:37:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public string Provider
|
|
|
|
|
{
|
|
|
|
|
get { return "XInput"; }
|
|
|
|
|
}
|
2012-09-25 08:07:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|