Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_fileselect.h
| Show First 20 Lines • Show All 107 Lines • ▼ Show 20 Lines | |||||
| int ED_file_extension_icon(const char *path); | int ED_file_extension_icon(const char *path); | ||||
| void ED_file_read_bookmarks(void); | void ED_file_read_bookmarks(void); | ||||
| void ED_file_change_dir(struct bContext *C); | void ED_file_change_dir(struct bContext *C); | ||||
| /* File menu stuff */ | /* File menu stuff */ | ||||
| /* FSMenuEntry's without paths indicate separators */ | |||||
| typedef struct FSMenuEntry { | |||||
| struct FSMenuEntry *next; | |||||
| char *path; | |||||
| char name[256]; /* FILE_MAXFILE */ | |||||
| short save; | |||||
| short valid; | |||||
| short pad[2]; | |||||
| } FSMenuEntry; | |||||
| typedef enum FSMenuCategory { | typedef enum FSMenuCategory { | ||||
| FS_CATEGORY_SYSTEM, | FS_CATEGORY_SYSTEM, | ||||
| FS_CATEGORY_SYSTEM_BOOKMARKS, | FS_CATEGORY_SYSTEM_BOOKMARKS, | ||||
| FS_CATEGORY_BOOKMARKS, | FS_CATEGORY_BOOKMARKS, | ||||
| FS_CATEGORY_RECENT | FS_CATEGORY_RECENT | ||||
| } FSMenuCategory; | } FSMenuCategory; | ||||
| typedef enum FSMenuInsert { | typedef enum FSMenuInsert { | ||||
| Show All 25 Lines | |||||