Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/GHOST_Types.h
| Show First 20 Lines • Show All 406 Lines • ▼ Show 20 Lines | typedef struct { | ||||
| GHOST_TInt32 z; | GHOST_TInt32 z; | ||||
| } GHOST_TEventWheelData; | } GHOST_TEventWheelData; | ||||
| typedef enum { | typedef enum { | ||||
| GHOST_kTrackpadEventUnknown = 0, | GHOST_kTrackpadEventUnknown = 0, | ||||
| GHOST_kTrackpadEventScroll, | GHOST_kTrackpadEventScroll, | ||||
| GHOST_kTrackpadEventRotate, | GHOST_kTrackpadEventRotate, | ||||
| GHOST_kTrackpadEventSwipe, /* Reserved, not used for now */ | GHOST_kTrackpadEventSwipe, /* Reserved, not used for now */ | ||||
| GHOST_kTrackpadEventMagnify | GHOST_kTrackpadEventMagnify, | ||||
| GHOST_kTrackpadEventUntouch, | |||||
| } GHOST_TTrackpadEventSubTypes; | } GHOST_TTrackpadEventSubTypes; | ||||
| typedef struct { | typedef struct { | ||||
| /** The event subtype */ | /** The event subtype */ | ||||
| GHOST_TTrackpadEventSubTypes subtype; | GHOST_TTrackpadEventSubTypes subtype; | ||||
| /** The x-location of the trackpad event */ | /** The x-location of the trackpad event */ | ||||
| GHOST_TInt32 x; | GHOST_TInt32 x; | ||||
| ▲ Show 20 Lines • Show All 131 Lines • Show Last 20 Lines | |||||