Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/RNA_access.h
| Show First 20 Lines • Show All 153 Lines • ▼ Show 20 Lines | |||||
| PropertyType RNA_property_type(PropertyRNA *prop); | PropertyType RNA_property_type(PropertyRNA *prop); | ||||
| PropertySubType RNA_property_subtype(PropertyRNA *prop); | PropertySubType RNA_property_subtype(PropertyRNA *prop); | ||||
| PropertyUnit RNA_property_unit(PropertyRNA *prop); | PropertyUnit RNA_property_unit(PropertyRNA *prop); | ||||
| PropertyScaleType RNA_property_ui_scale(PropertyRNA *prop); | PropertyScaleType RNA_property_ui_scale(PropertyRNA *prop); | ||||
| int RNA_property_flag(PropertyRNA *prop); | int RNA_property_flag(PropertyRNA *prop); | ||||
| int RNA_property_override_flag(PropertyRNA *prop); | int RNA_property_override_flag(PropertyRNA *prop); | ||||
| /** | /** | ||||
| * Get the tags set for \a prop as int bitfield. | * Get the tags set for \a prop as int bit-field. | ||||
| * \note Doesn't perform any validity check on the set bits. #RNA_def_property_tags does this | * \note Doesn't perform any validity check on the set bits. #RNA_def_property_tags does this | ||||
| * in debug builds (to avoid performance issues in non-debug builds), which should be | * in debug builds (to avoid performance issues in non-debug builds), which should be | ||||
| * the only way to set tags. Hence, at this point we assume the tag bitfield to be valid. | * the only way to set tags. Hence, at this point we assume the tag bit-field to be valid. | ||||
| */ | */ | ||||
| int RNA_property_tags(PropertyRNA *prop); | int RNA_property_tags(PropertyRNA *prop); | ||||
| bool RNA_property_builtin(PropertyRNA *prop); | bool RNA_property_builtin(PropertyRNA *prop); | ||||
| void *RNA_property_py_data_get(PropertyRNA *prop); | void *RNA_property_py_data_get(PropertyRNA *prop); | ||||
| int RNA_property_array_length(PointerRNA *ptr, PropertyRNA *prop); | int RNA_property_array_length(PointerRNA *ptr, PropertyRNA *prop); | ||||
| bool RNA_property_array_check(PropertyRNA *prop); | bool RNA_property_array_check(PropertyRNA *prop); | ||||
| /** | /** | ||||
| ▲ Show 20 Lines • Show All 740 Lines • Show Last 20 Lines | |||||