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>2008-12-27 17:52:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-12-27 17:52:49 +0300
commit0714d28236e66b258de90bcbb8a1a821ee424a71 (patch)
treef7b99bdec9e093e0e2ecf1b00229f37d1ca2687c /source/blender/makesdna
parent86886cbc55c036af44833fd861cfd276fbec256a (diff)
python operators (in bpy_opwrapper.*)
This means you can define an operator in python that is called from C or Python - like any other operator. Python functions for invoke and exec can be registered with an operator name. keywords are read from the python exec() function, then used to create operator properties. The default python values are used to set the property type and defaults. def exec(size=2.0, text="blah"): ... is equivalent to... prop = RNA_def_property(ot->srna, "size", PROP_FLOAT, PROP_NONE); RNA_def_property_float_default(prop, 2.0f); prop = RNA_def_property(ot->srna, "size", PROP_STRING, PROP_NONE); RNA_def_property_string_default(prop, "blah"); TODO - * make use of events * return OPERATOR_CANCELLED/OPERATOR_FINISHED.. etc * add support for array args * more testing
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_windowmanager_types.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_windowmanager_types.h b/source/blender/makesdna/DNA_windowmanager_types.h
index 41123361b16..05ed8ab77c4 100644
--- a/source/blender/makesdna/DNA_windowmanager_types.h
+++ b/source/blender/makesdna/DNA_windowmanager_types.h
@@ -137,6 +137,10 @@ typedef struct wmOperatorType {
short flag;
+ /* only used for operators defined with python
+ * use to store pointers to python functions */
+ void *pyop_data;
+
} wmOperatorType;
#define OP_MAX_TYPENAME 64