Changeset View
Changeset View
Standalone View
Standalone View
source/blender/sequencer/SEQ_clipboard.h
| Show All 27 Lines | |||||
| #endif | #endif | ||||
| struct ListBase; | struct ListBase; | ||||
| struct Main; | struct Main; | ||||
| struct Scene; | struct Scene; | ||||
| struct Sequence; | struct Sequence; | ||||
| extern struct ListBase seqbase_clipboard; | extern struct ListBase seqbase_clipboard; | ||||
| extern struct ListBase fcurves_clipboard; | |||||
| extern int seqbase_clipboard_frame; | extern int seqbase_clipboard_frame; | ||||
| void SEQ_clipboard_pointers_store(struct Main *bmain, struct ListBase *seqbase); | void SEQ_clipboard_pointers_store(struct Main *bmain, struct ListBase *seqbase); | ||||
| void SEQ_clipboard_pointers_restore(struct ListBase *seqbase, struct Main *bmain); | void SEQ_clipboard_pointers_restore(struct ListBase *seqbase, struct Main *bmain); | ||||
| void SEQ_clipboard_free(void); | void SEQ_clipboard_free(void); | ||||
| void SEQ_clipboard_active_seq_name_store(struct Scene *scene); | void SEQ_clipboard_active_seq_name_store(struct Scene *scene); | ||||
| /** | /** | ||||
| * Check if strip was active when it was copied. User should restrict this check to pasted strips | * Check if strip was active when it was copied. User should restrict this check to pasted strips | ||||
| * before ensuring original name, because strip name comparison is used to check. | * before ensuring original name, because strip name comparison is used to check. | ||||
| Show All 9 Lines | |||||