Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Show First 20 Lines • Show All 851 Lines • ▼ Show 20 Lines | typedef enum eFileSel_File_Types { | ||||
| FILE_TYPE_COLLADA = (1 << 13), | FILE_TYPE_COLLADA = (1 << 13), | ||||
| /** from filter_glob operator property */ | /** from filter_glob operator property */ | ||||
| FILE_TYPE_OPERATOR = (1 << 14), | FILE_TYPE_OPERATOR = (1 << 14), | ||||
| FILE_TYPE_APPLICATIONBUNDLE = (1 << 15), | FILE_TYPE_APPLICATIONBUNDLE = (1 << 15), | ||||
| FILE_TYPE_ALEMBIC = (1 << 16), | FILE_TYPE_ALEMBIC = (1 << 16), | ||||
| /** For all kinds of recognized import/export formats. No need for specialized types. */ | /** For all kinds of recognized import/export formats. No need for specialized types. */ | ||||
| FILE_TYPE_OBJECT_IO = (1 << 17), | FILE_TYPE_OBJECT_IO = (1 << 17), | ||||
| FILE_TYPE_USD = (1 << 18), | FILE_TYPE_USD = (1 << 18), | ||||
| FILE_TYPE_VOLUME = (1 << 19), | |||||
| /** An FS directory (i.e. S_ISDIR on its path is true). */ | /** An FS directory (i.e. S_ISDIR on its path is true). */ | ||||
| FILE_TYPE_DIR = (1 << 30), | FILE_TYPE_DIR = (1 << 30), | ||||
| FILE_TYPE_BLENDERLIB = (1u << 31), | FILE_TYPE_BLENDERLIB = (1u << 31), | ||||
| } eFileSel_File_Types; | } eFileSel_File_Types; | ||||
| /* Selection Flags in filesel: struct direntry, unsigned char selflag */ | /* Selection Flags in filesel: struct direntry, unsigned char selflag */ | ||||
| typedef enum eDirEntry_SelectFlag { | typedef enum eDirEntry_SelectFlag { | ||||
| ▲ Show 20 Lines • Show All 859 Lines • Show Last 20 Lines | |||||