1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- //from "sdl_touch.h"
- type
- PPSDL_TouchID = ^PSDL_TouchID;
- PSDL_TouchID = ^TSDL_TouchID;
- TSDL_TouchID = type cint64;
- PPSDL_FingerID = ^PSDL_FingerID;
- PSDL_FingerID = ^TSDL_FingerID;
- TSDL_FingerID = type cint64;
- PPSDL_TouchDeviceType = ^PSDL_TouchDeviceType;
- PSDL_TouchDeviceType = ^TSDL_TouchDeviceType;
- TSDL_TouchDeviceType = type cint;
- const
- SDL_TOUCH_DEVICE_INVALID = TSDL_TouchDeviceType(-1);
- SDL_TOUCH_DEVICE_DIRECT = TSDL_TouchDeviceType(0); {* touch screen with window-relative coordinates *}
- SDL_TOUCH_DEVICE_INDIRECT_ABSOLUTE = TSDL_TouchDeviceType(1); {* trackpad with absolute device coordinates *}
- SDL_TOUCH_DEVICE_INDIRECT_RELATIVE = TSDL_TouchDeviceType(2); {* trackpad with relative device coordinates *}
- type
- PPSDL_Finger = ^PSDL_Finger;
- PSDL_Finger = ^TSDL_Finger;
- TSDL_Finger = record
- id: TSDL_FingerID;
- x: cfloat;
- y: cfloat;
- pressure: cfloat;
- end;
- const
- {* Used as the device ID for mouse events simulated with touch input *}
- SDL_TOUCH_MOUSEID = cuint32(-1);
- {* Used as the SDL_TouchID for touch events simulated with mouse input *}
- SDL_MOUSE_TOUCHID = TSDL_TouchID(-1);
- {* Function prototypes *}
- {**
- * Get the number of registered touch devices.
- *}
- function SDL_GetNumTouchDevices(): cint; cdecl;
- external {$IFDEF DYNAMIC_LINK}SDL_LibName{$ENDIF} {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumTouchDevices' {$ENDIF} {$ENDIF};
- {**
- * Get the touch ID with the given index, or 0 if the index is invalid.
- *}
- function SDL_GetTouchDevice(index: cint): TSDL_TouchID; cdecl;
- external {$IFDEF DYNAMIC_LINK}SDL_LibName{$ENDIF} {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTouchDevice' {$ENDIF} {$ENDIF};
- {**
- * Get the touch device name as reported from the driver,
- * or NIL if the index is invalid.
- *
- * \since This function is available since SDL 2.0.22.
- *}
- function SDL_GetTouchName(index: cint): PAnsiChar; cdecl;
- external {$IFDEF DYNAMIC_LINK}SDL_LibName{$ENDIF} {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTouchName' {$ENDIF} {$ENDIF};
- {**
- * Get the type of the given touch device.
- *
- * \since This function is available since SDL 2.0.10.
- *}
- function SDL_GetTouchDeviceType(touchID: TSDL_TouchID): TSDL_TouchDeviceType; cdecl;
- external {$IFDEF DYNAMIC_LINK}SDL_LibName{$ENDIF} {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTouchDeviceType' {$ENDIF} {$ENDIF};
- {**
- * Get the number of active fingers for a given touch device.
- *}
- function SDL_GetNumTouchFingers(touchID: TSDL_TouchID): cint; cdecl;
- external {$IFDEF DYNAMIC_LINK}SDL_LibName{$ENDIF} {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetNumTouchFingers' {$ENDIF} {$ENDIF};
- {**
- * Get the finger object of the given touch, with the given index.
- *}
- function SDL_GetTouchFinger(touchID: TSDL_TouchID; index: cint): PSDL_Finger; cdecl;
- external {$IFDEF DYNAMIC_LINK}SDL_LibName{$ENDIF} {$IFDEF DELPHI} {$IFDEF MACOS} name '_SDL_GetTouchFinger' {$ENDIF} {$ENDIF};
|