Changeset View
Changeset View
Standalone View
Standalone View
source/blender/windowmanager/WM_types.h
| Show First 20 Lines • Show All 174 Lines • ▼ Show 20 Lines | enum { | ||||
| * Currently only used for the search toolbox. | * Currently only used for the search toolbox. | ||||
| */ | */ | ||||
| OPTYPE_INTERNAL = (1 << 8), | OPTYPE_INTERNAL = (1 << 8), | ||||
| /** Allow operator to run when interface is locked. */ | /** Allow operator to run when interface is locked. */ | ||||
| OPTYPE_LOCK_BYPASS = (1 << 9), | OPTYPE_LOCK_BYPASS = (1 << 9), | ||||
| /** Special type of undo which doesn't store itself multiple times. */ | /** Special type of undo which doesn't store itself multiple times. */ | ||||
| OPTYPE_UNDO_GROUPED = (1 << 10), | OPTYPE_UNDO_GROUPED = (1 << 10), | ||||
| /** Need evaluated data (i.e. a valid, up-to-date depsgraph for current context). */ | |||||
| OPTYPE_USE_EVAL_DATA = (1 << 11), | |||||
| }; | }; | ||||
| /** For #WM_cursor_grab_enable wrap axis. */ | /** For #WM_cursor_grab_enable wrap axis. */ | ||||
| enum { | enum { | ||||
| WM_CURSOR_WRAP_NONE = 0, | WM_CURSOR_WRAP_NONE = 0, | ||||
| WM_CURSOR_WRAP_X, | WM_CURSOR_WRAP_X, | ||||
| WM_CURSOR_WRAP_Y, | WM_CURSOR_WRAP_Y, | ||||
| WM_CURSOR_WRAP_XY, | WM_CURSOR_WRAP_XY, | ||||
| ▲ Show 20 Lines • Show All 732 Lines • Show Last 20 Lines | |||||