Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/RNA_define.h
| Show First 20 Lines • Show All 171 Lines • ▼ Show 20 Lines | |||||
| void RNA_def_property_ui_text(PropertyRNA *prop, const char *name, const char *description); | void RNA_def_property_ui_text(PropertyRNA *prop, const char *name, const char *description); | ||||
| void RNA_def_property_ui_range(PropertyRNA *prop, double min, double max, double step, int precision); | void RNA_def_property_ui_range(PropertyRNA *prop, double min, double max, double step, int precision); | ||||
| void RNA_def_property_ui_icon(PropertyRNA *prop, int icon, bool consecutive); | void RNA_def_property_ui_icon(PropertyRNA *prop, int icon, bool consecutive); | ||||
| void RNA_def_property_update(PropertyRNA *prop, int noteflag, const char *updatefunc); | void RNA_def_property_update(PropertyRNA *prop, int noteflag, const char *updatefunc); | ||||
| void RNA_def_property_editable_func(PropertyRNA *prop, const char *editable); | void RNA_def_property_editable_func(PropertyRNA *prop, const char *editable); | ||||
| void RNA_def_property_editable_array_func(PropertyRNA *prop, const char *editable); | void RNA_def_property_editable_array_func(PropertyRNA *prop, const char *editable); | ||||
| void RNA_def_property_override_funcs(PropertyRNA *prop, const char *diff, const char *store, const char *apply); | |||||
| void RNA_def_property_update_runtime(PropertyRNA *prop, const void *func); | void RNA_def_property_update_runtime(PropertyRNA *prop, const void *func); | ||||
| void RNA_def_property_poll_runtime(PropertyRNA *prop, const void *func); | void RNA_def_property_poll_runtime(PropertyRNA *prop, const void *func); | ||||
| void RNA_def_property_dynamic_array_funcs(PropertyRNA *prop, const char *getlength); | void RNA_def_property_dynamic_array_funcs(PropertyRNA *prop, const char *getlength); | ||||
| void RNA_def_property_boolean_funcs(PropertyRNA *prop, const char *get, const char *set); | void RNA_def_property_boolean_funcs(PropertyRNA *prop, const char *get, const char *set); | ||||
| void RNA_def_property_int_funcs(PropertyRNA *prop, const char *get, const char *set, const char *range); | void RNA_def_property_int_funcs(PropertyRNA *prop, const char *get, const char *set, const char *range); | ||||
| void RNA_def_property_float_funcs(PropertyRNA *prop, const char *get, const char *set, const char *range); | void RNA_def_property_float_funcs(PropertyRNA *prop, const char *get, const char *set, const char *range); | ||||
| void RNA_def_property_enum_funcs(PropertyRNA *prop, const char *get, const char *set, const char *item); | void RNA_def_property_enum_funcs(PropertyRNA *prop, const char *get, const char *set, const char *item); | ||||
| ▲ Show 20 Lines • Show All 71 Lines • Show Last 20 Lines | |||||