Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_space_types.h
| Show First 20 Lines • Show All 176 Lines • ▼ Show 20 Lines | typedef enum eSpaceButtons_Context { | ||||
| BCONTEXT_PARTICLE = 7, | BCONTEXT_PARTICLE = 7, | ||||
| BCONTEXT_PHYSICS = 8, | BCONTEXT_PHYSICS = 8, | ||||
| BCONTEXT_BONE = 9, | BCONTEXT_BONE = 9, | ||||
| BCONTEXT_MODIFIER = 10, | BCONTEXT_MODIFIER = 10, | ||||
| BCONTEXT_CONSTRAINT = 11, | BCONTEXT_CONSTRAINT = 11, | ||||
| BCONTEXT_BONE_CONSTRAINT = 12, | BCONTEXT_BONE_CONSTRAINT = 12, | ||||
| BCONTEXT_RENDER_LAYER = 13, | BCONTEXT_RENDER_LAYER = 13, | ||||
| BCONTEXT_COLLECTION = 14, | BCONTEXT_COLLECTION = 14, | ||||
| BCONTEXT_WORKSPACE = 15, | |||||
| /* always as last... */ | /* always as last... */ | ||||
| BCONTEXT_TOT | BCONTEXT_TOT | ||||
| } eSpaceButtons_Context; | } eSpaceButtons_Context; | ||||
| /* sbuts->flag */ | /* sbuts->flag */ | ||||
| typedef enum eSpaceButtons_Flag { | typedef enum eSpaceButtons_Flag { | ||||
| SB_PRV_OSA = (1 << 0), | SB_PRV_OSA = (1 << 0), | ||||
| ▲ Show 20 Lines • Show All 300 Lines • ▼ Show 20 Lines | typedef struct SpaceSeq { | ||||
| int spacetype; | int spacetype; | ||||
| float blockscale DNA_DEPRECATED; | float blockscale DNA_DEPRECATED; | ||||
| short blockhandler[8] DNA_DEPRECATED; | short blockhandler[8] DNA_DEPRECATED; | ||||
| View2D v2d DNA_DEPRECATED; /* deprecated, copied to region */ | View2D v2d DNA_DEPRECATED; /* deprecated, copied to region */ | ||||
| float xof DNA_DEPRECATED, yof DNA_DEPRECATED; /* deprecated: offset for drawing the image preview */ | float xof DNA_DEPRECATED, yof DNA_DEPRECATED; /* deprecated: offset for drawing the image preview */ | ||||
| short mainb; /* weird name for the sequencer subtype (seq, image, luma... etc) */ | short mainb; /* weird name for the sequencer subtype (seq, image, luma... etc) */ | ||||
| short render_size; /* eSpaceSeq_Proxy_RenderSize */ | short render_size; /* eSpaceSeq_Proxy_RenderSize */ | ||||
| short chanshown; | short chanshown; | ||||
| short zebra; | short zebra; | ||||
| int flag; | int flag; | ||||
| float zoom DNA_DEPRECATED; /* deprecated, handled by View2D now */ | float zoom DNA_DEPRECATED; /* deprecated, handled by View2D now */ | ||||
| int view; /* see SEQ_VIEW_* below */ | int view; /* see SEQ_VIEW_* below */ | ||||
| int overlay_type; | int overlay_type; | ||||
| int draw_flag; /* overlay an image of the editing on below the strips */ | int draw_flag; /* overlay an image of the editing on below the strips */ | ||||
| int pad; | int pad; | ||||
campbellbarton: Why is this needed? (from quick look seems its not) | |||||
| struct bGPdata *gpd; /* grease-pencil data */ | struct bGPdata *gpd; /* grease-pencil data */ | ||||
| struct SequencerScopes scopes; /* different scoped displayed in space */ | struct SequencerScopes scopes; /* different scoped displayed in space */ | ||||
| char multiview_eye; /* multiview current eye - for internal use */ | char multiview_eye; /* multiview current eye - for internal use */ | ||||
| char pad2[7]; | char pad2[7]; | ||||
| } SpaceSeq; | } SpaceSeq; | ||||
| ▲ Show 20 Lines • Show All 870 Lines • Show Last 20 Lines | |||||
Why is this needed? (from quick look seems its not)