Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/wm_event_types.h
| Show First 20 Lines • Show All 76 Lines • ▼ Show 20 Lines | enum { | ||||
| /* mapped with userdef */ | /* mapped with userdef */ | ||||
| WHEELINMOUSE = 0x000c, | WHEELINMOUSE = 0x000c, | ||||
| WHEELOUTMOUSE = 0x000d, | WHEELOUTMOUSE = 0x000d, | ||||
| /* Successive MOUSEMOVE's are converted to this, so we can easily | /* Successive MOUSEMOVE's are converted to this, so we can easily | ||||
| * ignore all but the most recent MOUSEMOVE (for better performance), | * ignore all but the most recent MOUSEMOVE (for better performance), | ||||
| * paint and drawing tools however will want to handle these. */ | * paint and drawing tools however will want to handle these. */ | ||||
| INBETWEEN_MOUSEMOVE = 0x0011, | INBETWEEN_MOUSEMOVE = 0x0011, | ||||
| /* IME event, GHOST_kEventImeCompositionStart in ghost */ | /* IM event, GHOST_kEventIMCompositionStart in ghost */ | ||||
| WM_IME_COMPOSITE_START = 0x0014, | WM_IM_COMPOSITE_START = 0x0014, | ||||
| /* IME event, GHOST_kEventImeComposition in ghost */ | /* IM event, GHOST_kEventIMComposition in ghost */ | ||||
| WM_IME_COMPOSITE_EVENT = 0x0015, | WM_IM_COMPOSITE_EVENT = 0x0015, | ||||
| /* IME event, GHOST_kEventImeCompositionEnd in ghost */ | /* IM event, GHOST_kEventIMCompositionEnd in ghost */ | ||||
| WM_IME_COMPOSITE_END = 0x0016, | WM_IM_COMPOSITE_END = 0x0016, | ||||
| /* Tablet/Pen Specific Events */ | /* Tablet/Pen Specific Events */ | ||||
| TABLET_STYLUS = 0x001a, | TABLET_STYLUS = 0x001a, | ||||
| TABLET_ERASER = 0x001b, | TABLET_ERASER = 0x001b, | ||||
| /* *** Start of keyboard codes. *** */ | /* *** Start of keyboard codes. *** */ | ||||
| /* standard keyboard. | /* standard keyboard. | ||||
| ▲ Show 20 Lines • Show All 357 Lines • Show Last 20 Lines | |||||