Class WindowsTouchInputDriverImp
Input driver implementation supporting Windows 8 touch input as described in https://msdn.microsoft.com/en-us/library/windows/desktop/hh454904(v=vs.85).aspx
Inheritance
Implements
Inherited Members
Namespace: Fusee.Engine.Imp.Graphics.Desktop
Assembly: Fusee.Engine.Imp.Graphics.Desktop.dll
Syntax
public class WindowsTouchInputDriverImp : IInputDriverImp
Constructors
WindowsTouchInputDriverImp(IRenderCanvasImp)
Initializes a new instance of the WindowsTouchInputDriverImp class.
Declaration
public WindowsTouchInputDriverImp(IRenderCanvasImp renderCanvas)
Parameters
Type | Name | Description |
---|---|---|
IRenderCanvasImp | renderCanvas | The render canvas. Internally this must be a Windows canvas with a valid window handle. |
Exceptions
Type | Condition |
---|---|
System.ArgumentNullException | |
System.ArgumentException | RenderCanvas must be of type RenderCanvasImp |
Properties
Devices
Retrieves a list of devices supported by this input driver.
Declaration
public IEnumerable<IInputDeviceImp> Devices { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<IInputDeviceImp> | The list of devices. |
Remarks
The devices yielded represent the current status. At any time other devices can connect or disconnect. Listen to the NewDeviceConnected and DeviceDisconnected events to get informed about new or vanishing devices. Drivers may implement "static" access to devices such that devices are connected at driver instantiation and never disconnected (in this case NewDeviceConnected and DeviceDisconnected are never fired).
DriverDesc
Gets the driver description string.
Declaration
public string DriverDesc { get; }
Property Value
Type | Description |
---|---|
System.String | A human-readable string describing the driver. |
DriverId
Gets the unique driver identifier.
Declaration
public string DriverId { get; }
Property Value
Type | Description |
---|---|
System.String | The driver identifier. |
Events
DeviceDisconnected
Not supported on this driver. Mouse and keyboard are considered to be connected all the time. You can register handlers but they will never get called.
Declaration
public event EventHandler<DeviceImpDisconnectedArgs> DeviceDisconnected
Event Type
Type | Description |
---|---|
System.EventHandler<DeviceImpDisconnectedArgs> |
NewDeviceConnected
Not supported on this driver. Mouse and keyboard are considered to be connected all the time. You can register handlers but they will never get called.
Declaration
public event EventHandler<NewDeviceImpConnectedArgs> NewDeviceConnected
Event Type
Type | Description |
---|---|
System.EventHandler<NewDeviceImpConnectedArgs> |