Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_space.c
| Context not available. | |||||
| {FILE_LONGDISPLAY, | {FILE_LONGDISPLAY, | ||||
| "LIST_LONG", | "LIST_LONG", | ||||
| ICON_LONGDISPLAY, | ICON_LONGDISPLAY, | ||||
| "Long List", | "Long List", | ||||
| "Display files as a detailed list"}, | "Display files as a detailed list"}, | ||||
| {FILE_IMGDISPLAY, "THUMBNAIL", ICON_IMGDISPLAY, "Thumbnails", "Display files as thumbnails"}, | {FILE_IMGDISPLAY, "THUMBNAIL", ICON_IMGDISPLAY, "Thumbnails", "Display files as thumbnails"}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| static const EnumPropertyItem display_size_items[] = { | static const EnumPropertyItem display_size_items[] = { | ||||
| {32, "TINY", 0, "Tiny", ""}, | {64, "TINY", 0, "Tiny", ""}, | ||||
| {64, "SMALL", 0, "Small", ""}, | {96, "SMALL", 0, "Small", ""}, | ||||
| {128, "NORMAL", 0, "Regular", ""}, | {128, "NORMAL", 0, "Regular", ""}, | ||||
| {256, "LARGE", 0, "Large", ""}, | {192, "LARGE", 0, "Large", ""}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| static const EnumPropertyItem file_filter_idtypes_items[] = { | static const EnumPropertyItem file_filter_idtypes_items[] = { | ||||
| {FILTER_ID_AC, "ACTION", ICON_ANIM_DATA, "Actions", "Show/hide Action data-blocks"}, | {FILTER_ID_AC, "ACTION", ICON_ANIM_DATA, "Actions", "Show/hide Action data-blocks"}, | ||||
| {FILTER_ID_AR, | {FILTER_ID_AR, | ||||
| "ARMATURE", | "ARMATURE", | ||||
| ICON_ARMATURE_DATA, | ICON_ARMATURE_DATA, | ||||
| "Armatures", | "Armatures", | ||||
| "Show/hide Armature data-blocks"}, | "Show/hide Armature data-blocks"}, | ||||
| Context not available. | |||||