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 { | |||||
| SO_HIDE_GPDATA = (1 << 0), | |||||
| SO_HIDE_ANIMDATA = (1 << 1), | |||||
| /* propably not useful to hide all object types? */ | |||||
| /*SO_HIDE_GR_OBJECT = (1 << 2), */ | |||||
| SO_HIDE_MESH = (1 << 3), | |||||
| SO_HIDE_CURVE = (1 << 4), | |||||
| SO_HIDE_SURF = (1 << 5), | |||||
| SO_HIDE_MBALL = (1 << 6), | |||||
| SO_HIDE_ARMATURE = (1 << 7), | |||||
| SO_HIDE_LATTICE = (1 << 8), | |||||
| SO_HIDE_EMPTY = (1 << 9), | |||||
| SO_HIDE_SPEAKER = (1 << 10), | |||||
| SO_HIDE_CAMERA = (1 << 11), | |||||
| SO_HIDE_LAMP = (1 << 12), | |||||
| SO_HIDE_FORCEFIELD = (1 << 13), | |||||
| SO_HIDE_GROUPINSTANCE = (1 << 14), | |||||
| SO_HIDE_GR_OBDATA = (1 << 15), | |||||
| SO_HIDE_SHAPEKEYS = (1 << 16), | |||||
| SO_HIDE_MODIFIERS = (1 << 17), | |||||
| SO_HIDE_CONSTRAINTS = (1 << 18), | |||||
| SO_HIDE_VERTEXGROUPS = (1 << 19), | |||||
| SO_HIDE_OBDATA = (1 << 20), | |||||
| SO_HIDE_BONES = (1 << 21), | |||||
| SO_HIDE_BONEGROUPS = (1 << 22), | |||||
| SO_HIDE_DUPLIGROUPS = (1 << 23), | |||||
| SO_HIDE_GR_MATERIALS = (1 << 24), | |||||
| SO_HIDE_MATERIALS = (1 << 25), | |||||
| SO_HIDE_TEXTURES = (1 << 26), | |||||
| SO_HIDE_IMAGES = (1 << 27), | |||||
| SO_HIDE_GR_RENDER = (1 << 28), | |||||
| SO_HIDE_RENDERLAYERS = (1 << 29), | |||||
| SO_HIDE_RENDERPASSES = (1 << 30), | |||||
| } 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. | |||||