Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_internal_types.h
| Show First 20 Lines • Show All 457 Lines • ▼ Show 20 Lines | typedef struct EnumPropertyRNA { | ||||
| PropEnumItemFunc item_fn; | PropEnumItemFunc item_fn; | ||||
| PropEnumGetFuncEx get_ex; | PropEnumGetFuncEx get_ex; | ||||
| PropEnumSetFuncEx set_ex; | PropEnumSetFuncEx set_ex; | ||||
| const EnumPropertyItem *item; | const EnumPropertyItem *item; | ||||
| int totitem; | int totitem; | ||||
| /** Cached order for binary search. */ | |||||
| EnumPropertyItem_Order item_order; | |||||
| int defaultvalue; | int defaultvalue; | ||||
| const char *native_enum_type; | const char *native_enum_type; | ||||
| } EnumPropertyRNA; | } EnumPropertyRNA; | ||||
| typedef struct PointerPropertyRNA { | typedef struct PointerPropertyRNA { | ||||
| PropertyRNA property; | PropertyRNA property; | ||||
| PropPointerGetFunc get; | PropPointerGetFunc get; | ||||
| ▲ Show 20 Lines • Show All 109 Lines • Show Last 20 Lines | |||||