Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Context not available. | |||||
| char search_string[32]; | char search_string[32]; | ||||
| struct TreeStoreElem search_tse; | struct TreeStoreElem search_tse; | ||||
| int hideflag, pad; | |||||
| short flag, outlinevis, storeflag, search_flags; | short flag, outlinevis, storeflag, search_flags; | ||||
| /* pointers to treestore elements, grouped by (id, type, nr) in hashtable for faster searching */ | /* pointers to treestore elements, grouped by (id, type, nr) in hashtable for faster searching */ | ||||
| Context not available. | |||||
| SO_SKIP_SORT_ALPHA = (1 << 4), | SO_SKIP_SORT_ALPHA = (1 << 4), | ||||
| } eSpaceOutliner_Flag; | } eSpaceOutliner_Flag; | ||||
| /* SpaceOops->hideflag */ | |||||
| typedef enum eSpaceOutliner_HideFlag { | |||||
| /* Objects */ | |||||
| SO_HIDE_MESH = (1 << 0), | |||||
| SO_HIDE_CURVE = (1 << 1), | |||||
| SO_HIDE_SURF = (1 << 2), | |||||
| SO_HIDE_MBALL = (1 << 3), | |||||
| SO_HIDE_ARMATURE = (1 << 4), | |||||
| SO_HIDE_LATTICE = (1 << 5), | |||||
| SO_HIDE_EMPTY = (1 << 6), | |||||
| SO_HIDE_SPEAKER = (1 << 7), | |||||
| SO_HIDE_CAMERA = (1 << 8), | |||||
| SO_HIDE_LAMP = (1 << 9), | |||||
| /* Object Data */ | |||||
| SO_HIDE_OBDATA = (1 << 10), | |||||
| SO_HIDE_OBDATA_EXTRAS = (1 << 11), | |||||
| SO_HIDE_OB_GROUPS = (1 << 12), | |||||
| SO_HIDE_OB_EXTRAS = (1 << 13), | |||||
| SO_HIDE_BONES = (1 << 14), | |||||
| /* Shading */ | |||||
| SO_HIDE_MATERIALS = (1 << 15), | |||||
| SO_HIDE_TEXTURES = (1 << 16), | |||||
| SO_HIDE_IMAGES = (1 << 17), | |||||
| /* Animation */ | |||||
| SO_HIDE_ANIMDATA = (1 << 18), | |||||
| SO_HIDE_SHAPEKEYS = (1 << 19), | |||||
| SO_HIDE_GPDATA = (1 << 20), | |||||
| } eSpaceOutliner_HideFlag; | |||||
| /* SpaceOops->outlinevis */ | /* SpaceOops->outlinevis */ | ||||
| typedef enum eSpaceOutliner_Mode { | typedef enum eSpaceOutliner_Mode { | ||||
| SO_ALL_SCENES = 0, | SO_ALL_SCENES = 0, | ||||
| Context not available. | |||||