Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Show First 20 Lines • Show All 92 Lines • ▼ Show 20 Lines | |||||
| void *poin; | void *poin; | ||||
| struct ImBuf *image; | struct ImBuf *image; | ||||
| /* Tags are for info only, most of filtering is done in asset engine. */ | /* Tags are for info only, most of filtering is done in asset engine. */ | ||||
| char **tags; | char **tags; | ||||
| int nbr_tags; | int nbr_tags; | ||||
| short status; | short status; | ||||
| short flags; | /* File attributes defined in BLI_fileops.h */ | ||||
| int attributes; | |||||
| ListBase variants; | ListBase variants; | ||||
| int nbr_variants; | int nbr_variants; | ||||
| int act_variant; | int act_variant; | ||||
| } FileDirEntry; | } FileDirEntry; | ||||
| /** | /** | ||||
| * Array of direntries. | * Array of direntries. | ||||
| Show All 21 Lines | |||||
| } FileDirEntryArr; | } FileDirEntryArr; | ||||
| /* FileDirEntry.status */ | /* FileDirEntry.status */ | ||||
| enum { | enum { | ||||
| ASSET_STATUS_LOCAL = 1 << 0, /* If active uuid is available locally/immediately. */ | ASSET_STATUS_LOCAL = 1 << 0, /* If active uuid is available locally/immediately. */ | ||||
| ASSET_STATUS_LATEST = 1 << 1, /* If active uuid is latest available version. */ | ASSET_STATUS_LATEST = 1 << 1, /* If active uuid is latest available version. */ | ||||
| }; | }; | ||||
| /* FileDirEntry.flags */ | |||||
| enum { | |||||
| FILE_ENTRY_INVALID_PREVIEW = 1 << 0, /* The preview for this entry could not be generated. */ | |||||
| }; | |||||
| /** \} */ | /** \} */ | ||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /** \name Image/UV Editor | /** \name Image/UV Editor | ||||
| * \{ */ | * \{ */ | ||||
| /* Image/UV Editor */ | /* Image/UV Editor */ | ||||
| typedef struct SpaceImage { | typedef struct SpaceImage { | ||||
| ▲ Show 20 Lines • Show All 92 Lines • Show Last 20 Lines | |||||