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>2009-12-07 03:16:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-12-07 03:16:57 +0300
commit750764f411d18b5f57cac3857cf201d4e9425521 (patch)
treee0de3ecab9cefe266080f9962a848e32c6e58c0f /source/blender/makesrna/RNA_types.h
parent85773c72303962f03c2a2d62bb26e042da8dd4b7 (diff)
rna flag PROP_ENUM_FLAG which makes rna props a tuple of enums when converted into a PyObject
only used by wm.invoke_props_popup() currently
Diffstat (limited to 'source/blender/makesrna/RNA_types.h')
-rw-r--r--source/blender/makesrna/RNA_types.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/makesrna/RNA_types.h b/source/blender/makesrna/RNA_types.h
index 27dd1069c1c..8743bb39d57 100644
--- a/source/blender/makesrna/RNA_types.h
+++ b/source/blender/makesrna/RNA_types.h
@@ -87,6 +87,8 @@ typedef enum PropertyUnit {
#define RNA_SUBTYPE_UNIT(subtype) (subtype & 0x00FF0000)
#define RNA_SUBTYPE_UNIT_VALUE(subtype) (subtype>>16)
+#define RNA_ENUM_BITFLAG_SIZE 32
+
/* also update rna_property_subtypename when you change this */
typedef enum PropertySubType {
PROP_NONE = 0,
@@ -161,6 +163,9 @@ typedef enum PropertyFlag {
PROP_ID_SELF_CHECK = 1<<20,
PROP_NEVER_NULL = 1<<18,
+ /* flag contains multiple enums */
+ PROP_ENUM_FLAG = 1<<21,
+
/* internal flags */
PROP_BUILTIN = 1<<7,
PROP_EXPORT = 1<<8,