Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_space.c
| Show First 20 Lines • Show All 992 Lines • ▼ Show 20 Lines | |||||
| /* Categories */ | /* Categories */ | ||||
| {FILTER_ID_SCE, "category_scene", ICON_SCENE_DATA, "Scenes", "Show scenes"}, | {FILTER_ID_SCE, "category_scene", ICON_SCENE_DATA, "Scenes", "Show scenes"}, | ||||
| {FILTER_ID_AC, "category_animation", ICON_ANIM_DATA, "Animations", "Show animation data"}, | {FILTER_ID_AC, "category_animation", ICON_ANIM_DATA, "Animations", "Show animation data"}, | ||||
| {FILTER_ID_OB | FILTER_ID_GR, | {FILTER_ID_OB | FILTER_ID_GR, | ||||
| "category_object", | "category_object", | ||||
| ICON_OUTLINER_COLLECTION, | ICON_OUTLINER_COLLECTION, | ||||
| "Objects & Collections", | "Objects & Collections", | ||||
| "Show objects and collections"}, | "Show objects and collections"}, | ||||
| {FILTER_ID_AR | FILTER_ID_CU | FILTER_ID_LT | FILTER_ID_MB | FILTER_ID_ME | FILTER_ID_HA | | {FILTER_ID_AR | FILTER_ID_CU | FILTER_ID_LT | FILTER_ID_MB | FILTER_ID_ME | FILTER_ID_CV | | ||||
| FILTER_ID_PT | FILTER_ID_VO, | FILTER_ID_PT | FILTER_ID_VO, | ||||
| "category_geometry", | "category_geometry", | ||||
| ICON_NODETREE, | ICON_NODETREE, | ||||
| "Geometry", | "Geometry", | ||||
| "Show meshes, curves, lattice, armatures and metaballs data"}, | "Show meshes, curves, lattice, armatures and metaballs data"}, | ||||
| {FILTER_ID_LS | FILTER_ID_MA | FILTER_ID_NT | FILTER_ID_TE, | {FILTER_ID_LS | FILTER_ID_MA | FILTER_ID_NT | FILTER_ID_TE, | ||||
| "category_shading", | "category_shading", | ||||
| ICON_MATERIAL_DATA, | ICON_MATERIAL_DATA, | ||||
| ▲ Show 20 Lines • Show All 1,710 Lines • ▼ Show 20 Lines | |||||
| int type_mask; | int type_mask; | ||||
| const char *identifier[2]; | const char *identifier[2]; | ||||
| } info[] = { | } info[] = { | ||||
| {"Mesh", (1 << OB_MESH), {"show_object_viewport_mesh", "show_object_select_mesh"}}, | {"Mesh", (1 << OB_MESH), {"show_object_viewport_mesh", "show_object_select_mesh"}}, | ||||
| {"Curve", (1 << OB_CURVE), {"show_object_viewport_curve", "show_object_select_curve"}}, | {"Curve", (1 << OB_CURVE), {"show_object_viewport_curve", "show_object_select_curve"}}, | ||||
| {"Surface", (1 << OB_SURF), {"show_object_viewport_surf", "show_object_select_surf"}}, | {"Surface", (1 << OB_SURF), {"show_object_viewport_surf", "show_object_select_surf"}}, | ||||
| {"Meta", (1 << OB_MBALL), {"show_object_viewport_meta", "show_object_select_meta"}}, | {"Meta", (1 << OB_MBALL), {"show_object_viewport_meta", "show_object_select_meta"}}, | ||||
| {"Font", (1 << OB_FONT), {"show_object_viewport_font", "show_object_select_font"}}, | {"Font", (1 << OB_FONT), {"show_object_viewport_font", "show_object_select_font"}}, | ||||
| {"Hair", (1 << OB_HAIR), {"show_object_viewport_hair", "show_object_select_hair"}}, | {"Hair", (1 << OB_CURVES), {"show_object_viewport_hair", "show_object_select_hair"}}, | ||||
| {"Point Cloud", | {"Point Cloud", | ||||
| (1 << OB_POINTCLOUD), | (1 << OB_POINTCLOUD), | ||||
| {"show_object_viewport_pointcloud", "show_object_select_pointcloud"}}, | {"show_object_viewport_pointcloud", "show_object_select_pointcloud"}}, | ||||
| {"Volume", (1 << OB_VOLUME), {"show_object_viewport_volume", "show_object_select_volume"}}, | {"Volume", (1 << OB_VOLUME), {"show_object_viewport_volume", "show_object_select_volume"}}, | ||||
| {"Armature", | {"Armature", | ||||
| (1 << OB_ARMATURE), | (1 << OB_ARMATURE), | ||||
| {"show_object_viewport_armature", "show_object_select_armature"}}, | {"show_object_viewport_armature", "show_object_select_armature"}}, | ||||
| {"Lattice", | {"Lattice", | ||||
| ▲ Show 20 Lines • Show All 992 Lines • Show Last 20 Lines | |||||