Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesrna/intern/rna_space.c
- This file is larger than 256 KB, so syntax highlighting is disabled by default.
| Show First 20 Lines • Show All 458 Lines • ▼ Show 20 Lines | static const EnumPropertyItem fileselectparams_recursion_level_items[] = { | ||||
| "ALL_3", | "ALL_3", | ||||
| 0, | 0, | ||||
| "Three Levels", | "Three Levels", | ||||
| "List all sub-directories' content, three levels of recursion"}, | "List all sub-directories' content, three levels of recursion"}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| const EnumPropertyItem rna_enum_file_sort_items[] = { | const EnumPropertyItem rna_enum_file_sort_items[] = { | ||||
| {FILE_SORT_ALPHA, | {FILE_SORT_ALPHA, "FILE_SORT_ALPHA", ICON_NONE, "Name", "Sort the file list alphabetically"}, | ||||
| "FILE_SORT_ALPHA", | |||||
| ICON_SORTALPHA, | |||||
| "Name", | |||||
| "Sort the file list alphabetically"}, | |||||
| {FILE_SORT_EXTENSION, | {FILE_SORT_EXTENSION, | ||||
| "FILE_SORT_EXTENSION", | "FILE_SORT_EXTENSION", | ||||
| ICON_SORTBYEXT, | ICON_NONE, | ||||
| "Extension", | "Extension", | ||||
| "Sort the file list by extension/type"}, | "Sort the file list by extension/type"}, | ||||
| {FILE_SORT_TIME, | {FILE_SORT_TIME, | ||||
| "FILE_SORT_TIME", | "FILE_SORT_TIME", | ||||
| ICON_SORTTIME, | ICON_NONE, | ||||
| "Modified Date", | "Modified Date", | ||||
| "Sort files by modification time"}, | "Sort files by modification time"}, | ||||
| {FILE_SORT_SIZE, "FILE_SORT_SIZE", ICON_SORTSIZE, "Size", "Sort files by size"}, | {FILE_SORT_SIZE, "FILE_SORT_SIZE", ICON_NONE, "Size", "Sort files by size"}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| }; | }; | ||||
| static const EnumPropertyItem rna_enum_curve_display_handle_items[] = { | static const EnumPropertyItem rna_enum_curve_display_handle_items[] = { | ||||
| {CURVE_HANDLE_NONE, "NONE", 0, "None", ""}, | {CURVE_HANDLE_NONE, "NONE", 0, "None", ""}, | ||||
| {CURVE_HANDLE_SELECTED, "SELECTED", 0, "Selected", ""}, | {CURVE_HANDLE_SELECTED, "SELECTED", 0, "Selected", ""}, | ||||
| {CURVE_HANDLE_ALL, "ALL", 0, "All", ""}, | {CURVE_HANDLE_ALL, "ALL", 0, "All", ""}, | ||||
| {0, NULL, 0, NULL, NULL}, | {0, NULL, 0, NULL, NULL}, | ||||
| ▲ Show 20 Lines • Show All 6,154 Lines • Show Last 20 Lines | |||||