Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Show First 20 Lines • Show All 317 Lines • ▼ Show 20 Lines | typedef enum eSpaceOutliner_Filter { | ||||
| SO_FILTER_SEARCH = (1 << 0), /* Run-time flag. */ | SO_FILTER_SEARCH = (1 << 0), /* Run-time flag. */ | ||||
| SO_FILTER_CLEARED_1 = (1 << 1), | SO_FILTER_CLEARED_1 = (1 << 1), | ||||
| SO_FILTER_NO_LIB_OVERRIDE = SO_FILTER_CLEARED_1, /* re-use */ | SO_FILTER_NO_LIB_OVERRIDE = SO_FILTER_CLEARED_1, /* re-use */ | ||||
| SO_FILTER_NO_OBJECT = (1 << 2), | SO_FILTER_NO_OBJECT = (1 << 2), | ||||
| SO_FILTER_NO_OB_CONTENT = (1 << 3), /* Not only mesh, but modifiers, constraints, ... */ | SO_FILTER_NO_OB_CONTENT = (1 << 3), /* Not only mesh, but modifiers, constraints, ... */ | ||||
| SO_FILTER_NO_CHILDREN = (1 << 4), | SO_FILTER_NO_CHILDREN = (1 << 4), | ||||
| SO_FILTER_UNUSED_5 = (1 << 5), /* cleared */ | SO_FILTER_UNUSED_5 = (1 << 5), /* cleared */ | ||||
| /** Show overrides that are defined/controlled by Blender. */ | |||||
| SO_FILTER_SHOW_SYSTEM_OVERRIDES = SO_FILTER_UNUSED_5, /* re-use */ | |||||
| SO_FILTER_NO_OB_MESH = (1 << 6), | SO_FILTER_NO_OB_MESH = (1 << 6), | ||||
| SO_FILTER_NO_OB_ARMATURE = (1 << 7), | SO_FILTER_NO_OB_ARMATURE = (1 << 7), | ||||
| SO_FILTER_NO_OB_EMPTY = (1 << 8), | SO_FILTER_NO_OB_EMPTY = (1 << 8), | ||||
| SO_FILTER_NO_OB_LAMP = (1 << 9), | SO_FILTER_NO_OB_LAMP = (1 << 9), | ||||
| SO_FILTER_NO_OB_CAMERA = (1 << 10), | SO_FILTER_NO_OB_CAMERA = (1 << 10), | ||||
| SO_FILTER_NO_OB_OTHERS = (1 << 11), | SO_FILTER_NO_OB_OTHERS = (1 << 11), | ||||
| SO_FILTER_OB_STATE_SELECTABLE = (1 << 12), /* Not set via DNA. */ | SO_FILTER_OB_STATE_SELECTABLE = (1 << 12), /* Not set via DNA. */ | ||||
| ▲ Show 20 Lines • Show All 52 Lines • ▼ Show 20 Lines | typedef enum eSpaceOutliner_Mode { | ||||
| /* SO_VERSE_SESSION = 8, */ /* deprecated! */ | /* SO_VERSE_SESSION = 8, */ /* deprecated! */ | ||||
| /* SO_VERSE_MS = 9, */ /* deprecated! */ | /* SO_VERSE_MS = 9, */ /* deprecated! */ | ||||
| SO_SEQUENCE = 10, | SO_SEQUENCE = 10, | ||||
| SO_DATA_API = 11, | SO_DATA_API = 11, | ||||
| /* SO_USERDEF = 12, */ /* deprecated! */ | /* SO_USERDEF = 12, */ /* deprecated! */ | ||||
| /* SO_KEYMAP = 13, */ /* deprecated! */ | /* SO_KEYMAP = 13, */ /* deprecated! */ | ||||
| SO_ID_ORPHANS = 14, | SO_ID_ORPHANS = 14, | ||||
| SO_VIEW_LAYER = 15, | SO_VIEW_LAYER = 15, | ||||
| SO_OVERRIDES_LIBRARY = 16, | |||||
| } eSpaceOutliner_Mode; | } eSpaceOutliner_Mode; | ||||
| /* SpaceOutliner.storeflag */ | /* SpaceOutliner.storeflag */ | ||||
| typedef enum eSpaceOutliner_StoreFlag { | typedef enum eSpaceOutliner_StoreFlag { | ||||
| /* cleanup tree */ | /* cleanup tree */ | ||||
| SO_TREESTORE_CLEANUP = (1 << 0), | SO_TREESTORE_CLEANUP = (1 << 0), | ||||
| SO_TREESTORE_UNUSED_1 = (1 << 1), /* cleared */ | SO_TREESTORE_UNUSED_1 = (1 << 1), /* cleared */ | ||||
| /* rebuild the tree, similar to cleanup, | /* rebuild the tree, similar to cleanup, | ||||
| ▲ Show 20 Lines • Show All 1,541 Lines • Show Last 20 Lines | |||||