Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/dna_workspace_types.h
| Show First 20 Lines • Show All 48 Lines • ▼ Show 20 Lines | |||||
| typedef struct WorkSpace { | typedef struct WorkSpace { | ||||
| ID id; | ID id; | ||||
| ListBase layouts; /* WorkSpaceLayout */ | ListBase layouts; /* WorkSpaceLayout */ | ||||
| /* Store for each hook (so for each window) which layout has | /* Store for each hook (so for each window) which layout has | ||||
| * been activated the last time this workspace was visible. */ | * been activated the last time this workspace was visible. */ | ||||
| ListBase hook_layout_relations; /* WorkSpaceDataRelation */ | ListBase hook_layout_relations; /* WorkSpaceDataRelation */ | ||||
| /* Custom transform orientations */ | |||||
| ListBase transform_orientations; | |||||
| int object_mode; /* enum ObjectMode */ | int object_mode; /* enum ObjectMode */ | ||||
| int pad; | int pad; | ||||
| struct SceneLayer *render_layer; | struct SceneLayer *render_layer; | ||||
| } WorkSpace; | } WorkSpace; | ||||
| /** | /** | ||||
| * Generic (and simple/primitive) struct for storing a history of assignments/relations | * Generic (and simple/primitive) struct for storing a history of assignments/relations | ||||
| ▲ Show 20 Lines • Show All 43 Lines • Show Last 20 Lines | |||||