Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_outliner_types.h
| Show First 20 Lines • Show All 97 Lines • ▼ Show 20 Lines | |||||
| #define TSE_RNA_PROPERTY 31 /* NO ID */ | #define TSE_RNA_PROPERTY 31 /* NO ID */ | ||||
| #define TSE_RNA_ARRAY_ELEM 32 /* NO ID */ | #define TSE_RNA_ARRAY_ELEM 32 /* NO ID */ | ||||
| #define TSE_NLA_TRACK 33 /* NO ID */ | #define TSE_NLA_TRACK 33 /* NO ID */ | ||||
| #define TSE_KEYMAP 34 /* NO ID */ | #define TSE_KEYMAP 34 /* NO ID */ | ||||
| #define TSE_KEYMAP_ITEM 35 /* NO ID */ | #define TSE_KEYMAP_ITEM 35 /* NO ID */ | ||||
| #define TSE_ID_BASE 36 /* NO ID */ | #define TSE_ID_BASE 36 /* NO ID */ | ||||
| #define TSE_GP_LAYER 37 /* NO ID */ | #define TSE_GP_LAYER 37 /* NO ID */ | ||||
| #define TSE_LAYER_COLLECTION 38 | #define TSE_LAYER_COLLECTION 38 | ||||
| #define TSE_SCENE_COLLECTION 39 | #define TSE_SCENE_COLLECTION_BASE 39 | ||||
| #define TSE_LAYER_COLLECTION_BASE 40 | #define TSE_VIEW_COLLECTION_BASE 40 | ||||
| #define TSE_SCENE_OBJECTS_BASE 41 | #define TSE_SCENE_OBJECTS_BASE 41 | ||||
| /* Check whether given TreeStoreElem should have a real ID in its ->id member. */ | /* Check whether given TreeStoreElem should have a real ID in its ->id member. */ | ||||
| #define TSE_IS_REAL_ID(_tse) \ | #define TSE_IS_REAL_ID(_tse) \ | ||||
| (!ELEM((_tse)->type, TSE_NLA, TSE_NLA_TRACK, TSE_DRIVER_BASE, \ | (!ELEM((_tse)->type, TSE_NLA, TSE_NLA_TRACK, TSE_DRIVER_BASE, \ | ||||
| TSE_SEQUENCE, TSE_SEQ_STRIP, TSE_SEQUENCE_DUP, \ | TSE_SEQUENCE, TSE_SEQ_STRIP, TSE_SEQUENCE_DUP, \ | ||||
| TSE_RNA_STRUCT, TSE_RNA_PROPERTY, TSE_RNA_ARRAY_ELEM, \ | TSE_RNA_STRUCT, TSE_RNA_PROPERTY, TSE_RNA_ARRAY_ELEM, \ | ||||
| TSE_KEYMAP, TSE_KEYMAP_ITEM, TSE_ID_BASE, TSE_GP_LAYER)) | TSE_KEYMAP, TSE_KEYMAP_ITEM, TSE_ID_BASE, TSE_GP_LAYER)) | ||||
| #endif | #endif | ||||