Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-05-28 18:00:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-05-28 18:05:22 +0300
commitd6643b57bcd9ca536bb9e6eb4cebd83a58578123 (patch)
treed2f4e92ea089c508d0eb50c58e64840d75140972 /source/blender/windowmanager/WM_types.h
parent916c2d0e7f31c71082fdadbe35d809c0802b4063 (diff)
Cleanup: use doxy comments for wmOperatoType.flag
Diffstat (limited to 'source/blender/windowmanager/WM_types.h')
-rw-r--r--source/blender/windowmanager/WM_types.h42
1 files changed, 25 insertions, 17 deletions
diff --git a/source/blender/windowmanager/WM_types.h b/source/blender/windowmanager/WM_types.h
index e6e7b7d1577..f3771ea22a4 100644
--- a/source/blender/windowmanager/WM_types.h
+++ b/source/blender/windowmanager/WM_types.h
@@ -135,31 +135,39 @@ typedef struct wmGenericCallback {
/* ************** wmOperatorType ************************ */
-/* flag */
+/** #wmOperatorType.flag */
enum {
- OPTYPE_REGISTER = (1 << 0), /* register operators in stack after finishing */
- OPTYPE_UNDO = (1 << 1), /* do undo push after after */
- OPTYPE_BLOCKING = (1 << 2), /* let blender grab all input from the WM (X11) */
+ /** Register operators in stack after finishing (needed for redo). */
+ OPTYPE_REGISTER = (1 << 0),
+ /** Do an undo push after the operator runs. */
+ OPTYPE_UNDO = (1 << 1),
+ /** Let Blender grab all input from the WM (X11) */
+ OPTYPE_BLOCKING = (1 << 2),
OPTYPE_MACRO = (1 << 3),
- /* grabs the cursor and optionally enables continuous cursor wrapping. */
+ /** Grabs the cursor and optionally enables continuous cursor wrapping. */
OPTYPE_GRAB_CURSOR_XY = (1 << 4),
- OPTYPE_GRAB_CURSOR_X = (1 << 5), /* Only X axis. */
- OPTYPE_GRAB_CURSOR_Y = (1 << 6), /* Only Y axis. */
+ /** Only warp on the X axis. */
+ OPTYPE_GRAB_CURSOR_X = (1 << 5),
+ /** Only warp on the Y axis. */
+ OPTYPE_GRAB_CURSOR_Y = (1 << 6),
- OPTYPE_PRESET = (1 << 7), /* show preset menu */
+ /** Show preset menu. */
+ OPTYPE_PRESET = (1 << 7),
- /* some operators are mainly for internal use
- * and don't make sense to be accessed from the
- * search menu, even if poll() returns true.
- * currently only used for the search toolbox */
+ /**
+ * Some operators are mainly for internal use and don't make sense
+ * to be accessed from the search menu, even if poll() returns true.
+ * Currently only used for the search toolbox.
+ */
OPTYPE_INTERNAL = (1 << 8),
- OPTYPE_LOCK_BYPASS = (1 << 9), /* Allow operator to run when interface is locked */
- OPTYPE_UNDO_GROUPED =
- (1 << 10), /* Special type of undo which doesn't store itself multiple times */
- OPTYPE_USE_EVAL_DATA =
- (1 << 11), /* Need evaluated data (i.e. a valid, up-to-date depsgraph for current context) */
+ /** Allow operator to run when interface is locked. */
+ OPTYPE_LOCK_BYPASS = (1 << 9),
+ /** Special type of undo which doesn't store itself multiple times. */
+ 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. */