Changeset View
Changeset View
Standalone View
Standalone View
source/blender/makesdna/DNA_sequence_types.h
| Show All 40 Lines | |||||
| #endif | #endif | ||||
| struct Ipo; | struct Ipo; | ||||
| struct MovieClip; | struct MovieClip; | ||||
| struct Scene; | struct Scene; | ||||
| struct SequenceLookup; | struct SequenceLookup; | ||||
| struct VFont; | struct VFont; | ||||
| struct bSound; | struct bSound; | ||||
| struct GSet; | |||||
| /* -------------------------------------------------------------------- */ | /* -------------------------------------------------------------------- */ | ||||
| /** \name Sequence & Editing Structs | /** \name Sequence & Editing Structs | ||||
| * \{ */ | * \{ */ | ||||
| /* strlens; 256= FILE_MAXFILE, 768= FILE_MAXDIR */ | /* strlens; 256= FILE_MAXFILE, 768= FILE_MAXDIR */ | ||||
| typedef struct StripAnim { | typedef struct StripAnim { | ||||
| ▲ Show 20 Lines • Show All 214 Lines • ▼ Show 20 Lines | typedef struct MetaStack { | ||||
| ListBase *oldbasep; | ListBase *oldbasep; | ||||
| Sequence *parseq; | Sequence *parseq; | ||||
| /* the startdisp/enddisp when entering the meta */ | /* the startdisp/enddisp when entering the meta */ | ||||
| int disp_range[2]; | int disp_range[2]; | ||||
| } MetaStack; | } MetaStack; | ||||
| typedef struct EditingRuntime { | typedef struct EditingRuntime { | ||||
| struct SequenceLookup *sequence_lookup; | struct SequenceLookup *sequence_lookup; | ||||
| struct GSet *seek_failed_strips; | |||||
| struct GSet *seek_failed_strips_ack; | |||||
| } EditingRuntime; | } EditingRuntime; | ||||
| typedef struct Editing { | typedef struct Editing { | ||||
| /** Pointer to the current list of seq's being edited (can be within a meta strip). */ | /** Pointer to the current list of seq's being edited (can be within a meta strip). */ | ||||
| ListBase *seqbasep; | ListBase *seqbasep; | ||||
| /** Pointer to the top-most seq's. */ | /** Pointer to the top-most seq's. */ | ||||
| ListBase seqbase; | ListBase seqbase; | ||||
| ListBase metastack; | ListBase metastack; | ||||
| ▲ Show 20 Lines • Show All 507 Lines • Show Last 20 Lines | |||||