Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Show First 20 Lines • Show All 992 Lines • ▼ Show 20 Lines | |||||
| SpaceLink *next, *prev; | SpaceLink *next, *prev; | ||||
| /** Storage of regions for inactive spaces. */ | /** Storage of regions for inactive spaces. */ | ||||
| ListBase regionbase; | ListBase regionbase; | ||||
| char spacetype; | char spacetype; | ||||
| char link_flag; | char link_flag; | ||||
| char _pad0[6]; | char _pad0[6]; | ||||
| /* End 'SpaceLink' header. */ | /* End 'SpaceLink' header. */ | ||||
| char _pad1[4]; | char gizmo_flag; | ||||
| char _pad1[3]; | |||||
| /** User defined offset, image is centered. */ | /** User defined offset, image is centered. */ | ||||
| float xof, yof; | float xof, yof; | ||||
| /** User defined offset from locked position. */ | /** User defined offset from locked position. */ | ||||
| float xlockof, ylockof; | float xlockof, ylockof; | ||||
| /** User defined zoom level. */ | /** User defined zoom level. */ | ||||
| float zoom; | float zoom; | ||||
| ▲ Show 20 Lines • Show All 84 Lines • ▼ Show 20 Lines | |||||
| } eSpaceClip_View; | } eSpaceClip_View; | ||||
| /** #SpaceClip.gpencil_src */ | /** #SpaceClip.gpencil_src */ | ||||
| typedef enum eSpaceClip_GPencil_Source { | typedef enum eSpaceClip_GPencil_Source { | ||||
| SC_GPENCIL_SRC_CLIP = 0, | SC_GPENCIL_SRC_CLIP = 0, | ||||
| SC_GPENCIL_SRC_TRACK = 1, | SC_GPENCIL_SRC_TRACK = 1, | ||||
| } eSpaceClip_GPencil_Source; | } eSpaceClip_GPencil_Source; | ||||
| /** #SpaceClip.gizmo_flag */ | |||||
| enum { | |||||
| /** All gizmos. */ | |||||
| SCLIP_GIZMO_HIDE = (1 << 0), | |||||
| SCLIP_GIZMO_HIDE_NAVIGATE = (1 << 1), | |||||
| }; | |||||
| /** \} */ | /** \} */ | ||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /** \name Top Bar | /** \name Top Bar | ||||
| * \{ */ | * \{ */ | ||||
| typedef struct SpaceTopBar { | typedef struct SpaceTopBar { | ||||
| SpaceLink *next, *prev; | SpaceLink *next, *prev; | ||||
| ▲ Show 20 Lines • Show All 228 Lines • Show Last 20 Lines | |||||