Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemWin32.h
| Show First 20 Lines • Show All 305 Lines • ▼ Show 20 Lines | protected: | ||||
| /** | /** | ||||
| * Creates a window event. | * Creates a window event. | ||||
| * \param type The type of event to create. | * \param type The type of event to create. | ||||
| * \param window The window receiving the event (the active window). | * \param window The window receiving the event (the active window). | ||||
| * \return The event created. | * \return The event created. | ||||
| */ | */ | ||||
| static GHOST_Event *processWindowEvent(GHOST_TEventType type, GHOST_WindowWin32 *window); | static GHOST_Event *processWindowEvent(GHOST_TEventType type, GHOST_WindowWin32 *window); | ||||
| #ifdef WITH_INPUT_IME | #ifdef WITH_IM_ONTHESPOT | ||||
| /** | /** | ||||
| * Creates a IME event. | * Creates a IME event. | ||||
| * \param type The type of event to create. | * \param type The type of event to create. | ||||
| * \param window The window receiving the event (the active window). | * \param window The window receiving the event (the active window). | ||||
| * \param data IME data. | * \param data IME data. | ||||
| * \return The event created. | * \return The event created. | ||||
| */ | */ | ||||
| static GHOST_Event *processImeEvent(GHOST_TEventType type, GHOST_WindowWin32 *window, GHOST_TEventImeData *data); | static GHOST_Event *processImeEvent(GHOST_TEventType type, GHOST_WindowWin32 *window, GHOST_TEventIMData *data); | ||||
| #endif // WITH_INPUT_IME | #endif // WITH_IM_ONTHESPOT | ||||
| /** | /** | ||||
| * Handles minimum window size. | * Handles minimum window size. | ||||
| * \param minmax The MINMAXINFO structure. | * \param minmax The MINMAXINFO structure. | ||||
| */ | */ | ||||
| static void processMinMaxInfo(MINMAXINFO *minmax); | static void processMinMaxInfo(MINMAXINFO *minmax); | ||||
| #ifdef WITH_INPUT_NDOF | #ifdef WITH_INPUT_NDOF | ||||
| ▲ Show 20 Lines • Show All 98 Lines • Show Last 20 Lines | |||||