Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/RNA_access.h
| Show First 20 Lines • Show All 782 Lines • ▼ Show 20 Lines | |||||
| bool RNA_struct_idprops_check(StructRNA *srna); | bool RNA_struct_idprops_check(StructRNA *srna); | ||||
| bool RNA_struct_idprops_register_check(const StructRNA *type); | bool RNA_struct_idprops_register_check(const StructRNA *type); | ||||
| bool RNA_struct_idprops_datablock_allowed(const StructRNA *type); | bool RNA_struct_idprops_datablock_allowed(const StructRNA *type); | ||||
| bool RNA_struct_idprops_contains_datablock(const StructRNA *type); | bool RNA_struct_idprops_contains_datablock(const StructRNA *type); | ||||
| bool RNA_struct_idprops_unset(PointerRNA *ptr, const char *identifier); | bool RNA_struct_idprops_unset(PointerRNA *ptr, const char *identifier); | ||||
| PropertyRNA *RNA_struct_find_property(PointerRNA *ptr, const char *identifier); | PropertyRNA *RNA_struct_find_property(PointerRNA *ptr, const char *identifier); | ||||
| bool RNA_struct_contains_property(PointerRNA *ptr, PropertyRNA *prop_test); | bool RNA_struct_contains_property(PointerRNA *ptr, PropertyRNA *prop_test); | ||||
| unsigned int RNA_struct_count_properties(StructRNA *srna); | |||||
| /* lower level functions for access to type properties */ | /* lower level functions for access to type properties */ | ||||
| const struct ListBase *RNA_struct_type_properties(StructRNA *srna); | const struct ListBase *RNA_struct_type_properties(StructRNA *srna); | ||||
| PropertyRNA *RNA_struct_type_find_property(StructRNA *srna, const char *identifier); | PropertyRNA *RNA_struct_type_find_property(StructRNA *srna, const char *identifier); | ||||
| FunctionRNA *RNA_struct_find_function(StructRNA *srna, const char *identifier); | FunctionRNA *RNA_struct_find_function(StructRNA *srna, const char *identifier); | ||||
| const struct ListBase *RNA_struct_type_functions(StructRNA *srna); | const struct ListBase *RNA_struct_type_functions(StructRNA *srna); | ||||
| ▲ Show 20 Lines • Show All 448 Lines • Show Last 20 Lines | |||||