Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_screen_types.h
| Show First 20 Lines • Show All 187 Lines • ▼ Show 20 Lines | typedef struct uiList { /* some list UI data need to be saved in file */ | ||||
| /* Custom sub-classes properties. */ | /* Custom sub-classes properties. */ | ||||
| IDProperty *properties; | IDProperty *properties; | ||||
| /* Dynamic data (runtime). */ | /* Dynamic data (runtime). */ | ||||
| uiListDyn *dyn_data; | uiListDyn *dyn_data; | ||||
| } uiList; | } uiList; | ||||
| typedef struct TransformOrientation { | |||||
| struct TransformOrientation *next, *prev; | |||||
| char name[64]; /* MAX_NAME */ | |||||
| float mat[3][3]; | |||||
| int pad; | |||||
| } TransformOrientation; | |||||
| typedef struct uiPreview { /* some preview UI data need to be saved in file */ | typedef struct uiPreview { /* some preview UI data need to be saved in file */ | ||||
| struct uiPreview *next, *prev; | struct uiPreview *next, *prev; | ||||
| char preview_id[64]; /* defined as UI_MAX_NAME_STR */ | char preview_id[64]; /* defined as UI_MAX_NAME_STR */ | ||||
| short height; | short height; | ||||
| short pad1[3]; | short pad1[3]; | ||||
| } uiPreview; | } uiPreview; | ||||
| ▲ Show 20 Lines • Show All 212 Lines • Show Last 20 Lines | |||||