Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/intern/GHOST_SystemWin32.h
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| * \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, | static GHOST_Event *processImeEvent(GHOST_TEventType type, | ||||
| GHOST_WindowWin32 *window, | GHOST_WindowWin32 *window, | ||||
| GHOST_TEventImeData *data); | GHOST_TEventImeData *data); | ||||
| /** | |||||
| * Creates an IME Keydown event. | |||||
| * \param window: The window receiving the event (the active window). | |||||
| * \param wParam: The wParam from the wndproc. | |||||
| * \param lParam: The lParam from the wndproc. | |||||
| * \return The event created. | |||||
| */ | |||||
| static GHOST_Event *processImeKeyEvent(GHOST_WindowWin32 *window, WPARAM wParam, LPARAM lParam); | |||||
| #endif // WITH_INPUT_IME | #endif // WITH_INPUT_IME | ||||
| /** | /** | ||||
| * 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); | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||