Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemWin32.h
| Show First 20 Lines • Show All 401 Lines • ▼ Show 20 Lines | #ifdef WITH_INPUT_NDOF | ||||
| * with the GHOST_NDOFManager. | * with the GHOST_NDOFManager. | ||||
| * \param raw: RawInput structure with detailed info about the NDOF event. | * \param raw: RawInput structure with detailed info about the NDOF event. | ||||
| * \return Whether an event was generated and sent. | * \return Whether an event was generated and sent. | ||||
| */ | */ | ||||
| bool processNDOF(RAWINPUT const &raw); | bool processNDOF(RAWINPUT const &raw); | ||||
| #endif | #endif | ||||
| /** | /** | ||||
| * Drives Direct Manipulation update. | |||||
| */ | |||||
| void driveTrackpad(); | |||||
| /** | |||||
| * Creates trackpad events for the active window. | |||||
| */ | |||||
| void processTrackpad(); | |||||
| /** | |||||
| * Returns the local state of the modifier keys (from the message queue). | * Returns the local state of the modifier keys (from the message queue). | ||||
| * \param keys: The state of the keys. | * \param keys: The state of the keys. | ||||
| */ | */ | ||||
| inline void retrieveModifierKeys(GHOST_ModifierKeys &keys) const; | inline void retrieveModifierKeys(GHOST_ModifierKeys &keys) const; | ||||
| /** | /** | ||||
| * Stores the state of the modifier keys locally. | * Stores the state of the modifier keys locally. | ||||
| * For internal use only! | * For internal use only! | ||||
| ▲ Show 20 Lines • Show All 77 Lines • Show Last 20 Lines | |||||