X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcinelerra.git;a=blobdiff_plain;f=cinelerra-5.1%2Fcinelerra%2Fedl.h;h=80aadb2c4f708a07387ff688adc5e40af32a0a2d;hp=8656c6080c2f95e44c70a90ef5e329c8582f4a62;hb=28225c37859a74d59211f584abd785860eef9c13;hpb=5d8a7826b0f80f00622e46baf75453995a76e343 diff --git a/cinelerra-5.1/cinelerra/edl.h b/cinelerra-5.1/cinelerra/edl.h index 8656c608..80aadb2c 100644 --- a/cinelerra-5.1/cinelerra/edl.h +++ b/cinelerra-5.1/cinelerra/edl.h @@ -25,6 +25,7 @@ #include #include +#include "arraylist.h" #include "asset.inc" #include "assets.inc" #include "autoconf.inc" @@ -47,7 +48,7 @@ #include "pluginserver.h" #include "preferences.inc" #include "recordlabel.inc" -#include "sharedlocation.inc" +#include "sharedlocation.h" #include "theme.inc" #include "tracks.inc" #include "vedit.inc" @@ -222,6 +223,9 @@ public: RecordLabels *labels = 0); // Insert the clip at a point in the EDL int insert_clips(ArrayList *new_edls, int load_mode, Track *first_track = 0); +// copy/paste group of effects + int collect_effects(EDL *&group); + int insert_effects(EDL *group, Track *first_track=0); // Add a copy of EDL* to the clip array. Returns the copy. EDL* add_clip(EDL *edl); EDL *selected_edits_to_clip(int packed, @@ -302,4 +306,12 @@ public: EDL *parent_edl; }; +// remap plugin shares in collect/paste effects +class edl_shared : public ArrayList { public: int trk; }; +class edl_shared_list : public ArrayList {}; +class edl_SharedLocations : public ArrayList { +public: + void add(int trk, int plg); +}; + #endif