f74bfa0c4972db969cb617c9115d184b7069b548
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / mwindowedit.C
1 /*
2  * CINELERRA
3  * Copyright (C) 1997-2012 Adam Williams <broadcast at earthling dot net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  */
20
21 #include "asset.h"
22 #include "assets.h"
23 #include "awindowgui.h"
24 #include "awindow.h"
25 #include "bcsignals.h"
26 #include "cache.h"
27 #include "clip.h"
28 #include "clipedit.h"
29 #include "commercials.h"
30 #include "cplayback.h"
31 #include "ctimebar.h"
32 #include "cwindow.h"
33 #include "cwindowgui.h"
34 #include "bchash.h"
35 #include "edl.h"
36 #include "edlsession.h"
37 #include "filesystem.h"
38 #include "filexml.h"
39 #include "floatauto.h"
40 #include "floatautos.h"
41 #include "gwindow.h"
42 #include "gwindowgui.h"
43 #include "keyframe.h"
44 #include "language.h"
45 #include "labels.h"
46 #include "levelwindow.h"
47 #include "localsession.h"
48 #include "mainclock.h"
49 #include "maincursor.h"
50 #include "mainerror.h"
51 #include "mainindexes.h"
52 #include "mainmenu.h"
53 #include "mainsession.h"
54 #include "mainundo.h"
55 #include "maskautos.h"
56 #include "mtimebar.h"
57 #include "mwindowgui.h"
58 #include "mwindow.h"
59 #include "panauto.h"
60 #include "patchbay.h"
61 #include "playbackengine.h"
62 #include "pluginset.h"
63 #include "recordlabel.h"
64 #include "samplescroll.h"
65 #include "trackcanvas.h"
66 #include "track.h"
67 #include "trackscroll.h"
68 #include "tracks.h"
69 #include "transition.h"
70 #include "transportque.h"
71 #include "units.h"
72 #include "undostackitem.h"
73 #include "vplayback.h"
74 #include "vwindow.h"
75 #include "vwindowgui.h"
76 #include "zoombar.h"
77 #include "zwindow.h"
78 #include "automation.h"
79 #include "maskautos.h"
80
81 #include <string.h>
82
83 void MWindow::add_audio_track_entry(int above, Track *dst)
84 {
85         undo->update_undo_before();
86         add_audio_track(above, dst);
87         save_backup();
88         undo->update_undo_after(_("add track"), LOAD_ALL);
89
90         restart_brender();
91         gui->update(1, 1, 0, 0, 1, 0, 0);
92         gui->activate_timeline();
93
94 //      gui->get_scrollbars(0);
95 //      gui->canvas->draw();
96 //      gui->patchbay->update();
97 //      gui->cursor->draw(1);
98 //      gui->canvas->flash();
99 //      gui->canvas->activate();
100         cwindow->refresh_frame(CHANGE_EDL);
101 }
102
103 void MWindow::add_video_track_entry(Track *dst)
104 {
105         undo->update_undo_before();
106         add_video_track(1, dst);
107         undo->update_undo_after(_("add track"), LOAD_ALL);
108
109         restart_brender();
110
111         gui->update(1, 1, 0, 0, 1, 0, 0);
112         gui->activate_timeline();
113 //      gui->get_scrollbars(0);
114 //      gui->canvas->draw();
115 //      gui->patchbay->update();
116 //      gui->cursor->draw(1);
117 //      gui->canvas->flash();
118 //      gui->canvas->activate();
119         cwindow->refresh_frame(CHANGE_EDL);
120         save_backup();
121 }
122
123 void MWindow::add_subttl_track_entry(Track *dst)
124 {
125         undo->update_undo_before();
126         add_subttl_track(1, dst);
127         undo->update_undo_after(_("add track"), LOAD_ALL);
128
129         restart_brender();
130
131         gui->update(1, 1, 0, 0, 1, 0, 0);
132         gui->activate_timeline();
133 //      gui->get_scrollbars(0);
134 //      gui->canvas->draw();
135 //      gui->patchbay->update();
136 //      gui->cursor->draw(1);
137 //      gui->canvas->flash();
138 //      gui->canvas->activate();
139         cwindow->refresh_frame(CHANGE_EDL);
140         save_backup();
141 }
142
143
144 int MWindow::add_audio_track(int above, Track *dst)
145 {
146         edl->tracks->add_audio_track(above, dst);
147         edl->tracks->update_y_pixels(theme);
148         save_backup();
149         return 0;
150 }
151
152 int MWindow::add_video_track(int above, Track *dst)
153 {
154         edl->tracks->add_video_track(above, dst);
155         edl->tracks->update_y_pixels(theme);
156         save_backup();
157         return 0;
158 }
159
160 int MWindow::add_subttl_track(int above, Track *dst)
161 {
162         edl->tracks->add_subttl_track(above, dst);
163         edl->tracks->update_y_pixels(theme);
164         save_backup();
165         return 0;
166 }
167
168 void MWindow::asset_to_all()
169 {
170         if( !session->drag_assets->size() ) return;
171         Indexable *indexable = session->drag_assets->get(0);
172
173 //      if( indexable->have_video() )
174         {
175                 int w, h;
176
177                 undo->update_undo_before();
178
179 // Get w and h
180                 w = indexable->get_w();
181                 h = indexable->get_h();
182                 double new_framerate = session->drag_assets->get(0)->get_frame_rate();
183                 double old_framerate = edl->session->frame_rate;
184                 int old_samplerate = edl->session->sample_rate;
185                 int new_samplerate = session->drag_assets->get(0)->get_sample_rate();
186
187
188                 if( indexable->have_video() ) {
189                         edl->session->output_w = w;
190                         edl->session->output_h = h;
191                         edl->session->frame_rate = new_framerate;
192                         create_aspect_ratio(
193                                 edl->session->aspect_w,
194                                 edl->session->aspect_h,
195                                 w, h);
196
197                         for( Track *current=edl->tracks->first; current; current=NEXT ) {
198                                 if( current->data_type == TRACK_VIDEO /* &&
199                                         current->record */  ) {
200                                         current->track_w = w;
201                                         current->track_h = h;
202                                 }
203                         }
204
205
206                         if( ((edl->session->output_w % 4) ||
207                                 (edl->session->output_h % 4)) &&
208                                 edl->session->playback_config->vconfig->driver == PLAYBACK_X11_GL ) {
209                                 MainError::show_error(
210                                         _("This project's dimensions are not multiples of 4 so\n"
211                                         "it can't be rendered by OpenGL."));
212                         }
213
214 // Get aspect ratio
215                         if( defaults->get("AUTOASPECT", 0) ) {
216                                 create_aspect_ratio(
217                                         edl->session->aspect_w,
218                                         edl->session->aspect_h,
219                                         w, h);
220                         }
221                 }
222
223                 if( indexable->have_audio() ) {
224                         edl->session->sample_rate = new_samplerate;
225                         edl->resample(old_framerate, new_framerate, TRACK_VIDEO);
226                         edl->resample(old_samplerate, new_samplerate, TRACK_AUDIO);
227                 }
228
229                 save_backup();
230
231                 undo->update_undo_after(_("asset to all"), LOAD_ALL);
232                 restart_brender();
233                 gui->update(1, 2, 1, 1, 1, 1, 0);
234                 sync_parameters(CHANGE_ALL);
235         }
236 }
237
238 void MWindow::asset_to_size()
239 {
240         if( !session->drag_assets->size() ) return;
241         Indexable *indexable = session->drag_assets->get(0);
242
243         if( indexable->have_video() ) {
244                 int w, h;
245                 undo->update_undo_before();
246
247 // Get w and h
248                 w = indexable->get_w();
249                 h = indexable->get_h();
250                 edl->session->output_w = w;
251                 edl->session->output_h = h;
252
253                 if( ((edl->session->output_w % 4) ||
254                         (edl->session->output_h % 4)) &&
255                         edl->session->playback_config->vconfig->driver == PLAYBACK_X11_GL ) {
256                         MainError::show_error(
257                                 _("This project's dimensions are not multiples of 4 so\n"
258                                 "it can't be rendered by OpenGL."));
259                 }
260
261 // Get aspect ratio
262                 if( defaults->get("AUTOASPECT", 0) ) {
263                         create_aspect_ratio(edl->session->aspect_w,
264                                 edl->session->aspect_h,
265                                 w,
266                                 h);
267                 }
268
269                 save_backup();
270
271                 undo->update_undo_after(_("asset to size"), LOAD_ALL);
272                 restart_brender();
273                 sync_parameters(CHANGE_ALL);
274         }
275 }
276
277
278 void MWindow::asset_to_rate()
279 {
280         if( session->drag_assets->size() &&
281                 session->drag_assets->get(0)->have_video() ) {
282                 double new_framerate = session->drag_assets->get(0)->get_frame_rate();
283                 double old_framerate = edl->session->frame_rate;
284                 undo->update_undo_before();
285
286                 edl->session->frame_rate = new_framerate;
287                 edl->resample(old_framerate, new_framerate, TRACK_VIDEO);
288
289                 save_backup();
290
291                 undo->update_undo_after(_("asset to rate"), LOAD_ALL);
292                 restart_brender();
293                 gui->update(1, 2, 1, 1, 1, 1, 0);
294                 sync_parameters(CHANGE_ALL);
295         }
296 }
297
298
299 void MWindow::clear_entry()
300 {
301         undo->update_undo_before();
302         clear(1);
303
304         edl->optimize();
305         save_backup();
306         undo->update_undo_after(_("clear"), LOAD_EDITS | LOAD_TIMEBAR);
307
308         restart_brender();
309         update_plugin_guis();
310         gui->update(1, 2, 1, 1, 1, 1, 0);
311         cwindow->update(1, 0, 0, 0, 1);
312         cwindow->refresh_frame(CHANGE_EDL);
313 }
314
315 void MWindow::clear(int clear_handle)
316 {
317         double start = edl->local_session->get_selectionstart();
318         double end = edl->local_session->get_selectionend();
319         if( clear_handle || !EQUIV(start, end) ) {
320                 edl->clear(start,
321                         end,
322                         edl->session->labels_follow_edits,
323                         edl->session->plugins_follow_edits,
324                         edl->session->autos_follow_edits);
325         }
326 }
327
328 void MWindow::update_gui(int changed_edl)
329 {
330         restart_brender();
331         update_plugin_guis();
332         if( changed_edl ) {
333                 gui->update(1, 2, 1, 1, 1, 1, 0);
334                 cwindow->update(1, 0, 0, 0, 1);
335                 cwindow->refresh_frame(CHANGE_EDL);
336         }
337         else {
338                 gui->draw_overlays(1);
339                 sync_parameters(CHANGE_PARAMS);
340                 gui->update_patchbay();
341                 cwindow->update(1, 0, 0);
342         }
343 }
344
345 void MWindow::set_automation_mode(int mode)
346 {
347         undo->update_undo_before();
348         speed_before();
349         edl->tracks->set_automation_mode(
350                 edl->local_session->get_selectionstart(),
351                 edl->local_session->get_selectionend(),
352                 mode);
353         int changed_edl = speed_after(1);
354         save_backup();
355         char string[BCSTRLEN];
356         sprintf(string,"set %s", FloatAuto::curve_name(mode));
357         undo->update_undo_after(string,
358                 !changed_edl ? LOAD_AUTOMATION :
359                         LOAD_AUTOMATION + LOAD_EDITS + LOAD_TIMEBAR);
360         update_gui(changed_edl);
361 }
362
363 void MWindow::clear_automation()
364 {
365         undo->update_undo_before();
366         speed_before();
367         edl->tracks->clear_automation(edl->local_session->get_selectionstart(),
368                 edl->local_session->get_selectionend());
369         int changed_edl = speed_after(1);
370         save_backup();
371         undo->update_undo_after(_("clear keyframes"),
372                 !changed_edl ? LOAD_AUTOMATION :
373                         LOAD_AUTOMATION + LOAD_EDITS + LOAD_TIMEBAR);
374         update_gui(changed_edl);
375 }
376
377 int MWindow::clear_default_keyframe()
378 {
379         undo->update_undo_before();
380         speed_before();
381         edl->tracks->clear_default_keyframe();
382         int changed_edl = speed_after(1);
383         save_backup();
384         undo->update_undo_after(_("clear default keyframe"),
385                 !changed_edl ? LOAD_AUTOMATION :
386                         LOAD_AUTOMATION + LOAD_EDITS + LOAD_TIMEBAR);
387         update_gui(changed_edl);
388         return 0;
389 }
390
391 void MWindow::clear_labels()
392 {
393         undo->update_undo_before();
394         clear_labels(edl->local_session->get_selectionstart(),
395                 edl->local_session->get_selectionend());
396         undo->update_undo_after(_("clear labels"), LOAD_TIMEBAR);
397
398         gui->update_timebar(1);
399         cwindow->update(0, 0, 0, 0, 1);
400         save_backup();
401 }
402
403 int MWindow::clear_labels(double start, double end)
404 {
405         edl->labels->clear(start, end, 0);
406         return 0;
407 }
408
409 void MWindow::concatenate_tracks()
410 {
411         undo->update_undo_before();
412         edl->tracks->concatenate_tracks(edl->session->plugins_follow_edits,
413                 edl->session->autos_follow_edits);
414         save_backup();
415         undo->update_undo_after(_("concatenate tracks"), LOAD_EDITS);
416
417         restart_brender();
418         gui->update(1, 1, 0, 0, 1, 0, 0);
419         cwindow->refresh_frame(CHANGE_EDL);
420 }
421
422
423 void MWindow::copy()
424 {
425         copy(edl->local_session->get_selectionstart(),
426                 edl->local_session->get_selectionend());
427 }
428
429 int MWindow::copy(double start, double end)
430 {
431         if( start == end ) return 1;
432
433         FileXML file;
434         edl->copy(start, end, 0, &file, "", 1);
435         const char *file_string = file.string();
436         long file_length = strlen(file_string);
437         gui->to_clipboard(file_string, file_length, BC_PRIMARY_SELECTION);
438         gui->to_clipboard(file_string, file_length, SECONDARY_SELECTION);
439         save_backup();
440         return 0;
441 }
442
443 int MWindow::copy_automation()
444 {
445         FileXML file;
446         double start = edl->local_session->get_selectionstart();
447         double end = edl->local_session->get_selectionend();
448         edl->tracks->copy_automation(start, end, &file, 0, 1);
449         const char *file_string = file.string();
450         long file_length = strlen(file_string);
451         gui->to_clipboard(file_string, file_length, BC_PRIMARY_SELECTION);
452         gui->to_clipboard(file_string, file_length, SECONDARY_SELECTION);
453         return 0;
454 }
455
456 int MWindow::copy_default_keyframe()
457 {
458         FileXML file;
459         double start = edl->local_session->get_selectionstart();
460         double end = edl->local_session->get_selectionend();
461         edl->tracks->copy_automation(start, end, &file, 1, 0);
462         const char *file_string = file.string();
463         long file_length = strlen(file_string);
464         gui->to_clipboard(file_string, file_length, BC_PRIMARY_SELECTION);
465         gui->to_clipboard(file_string, file_length, SECONDARY_SELECTION);
466         return 0;
467 }
468
469
470 // Uses cropping coordinates in edl session to crop and translate video.
471 // We modify the projector since camera automation depends on the track size.
472 void MWindow::crop_video()
473 {
474
475         undo->update_undo_before();
476 // Clamp EDL crop region
477         if( edl->session->crop_x1 > edl->session->crop_x2 ) {
478                 edl->session->crop_x1 ^= edl->session->crop_x2;
479                 edl->session->crop_x2 ^= edl->session->crop_x1;
480                 edl->session->crop_x1 ^= edl->session->crop_x2;
481         }
482         if( edl->session->crop_y1 > edl->session->crop_y2 ) {
483                 edl->session->crop_y1 ^= edl->session->crop_y2;
484                 edl->session->crop_y2 ^= edl->session->crop_y1;
485                 edl->session->crop_y1 ^= edl->session->crop_y2;
486         }
487
488         float old_projector_x = (float)edl->session->output_w / 2;
489         float old_projector_y = (float)edl->session->output_h / 2;
490         float new_projector_x = (float)(edl->session->crop_x1 + edl->session->crop_x2) / 2;
491         float new_projector_y = (float)(edl->session->crop_y1 + edl->session->crop_y2) / 2;
492         float projector_offset_x = -(new_projector_x - old_projector_x);
493         float projector_offset_y = -(new_projector_y - old_projector_y);
494
495         edl->tracks->translate_projector(projector_offset_x, projector_offset_y);
496
497         edl->session->output_w = edl->session->crop_x2 - edl->session->crop_x1;
498         edl->session->output_h = edl->session->crop_y2 - edl->session->crop_y1;
499         edl->session->crop_x1 = 0;
500         edl->session->crop_y1 = 0;
501         edl->session->crop_x2 = edl->session->output_w;
502         edl->session->crop_y2 = edl->session->output_h;
503
504 // Recalculate aspect ratio
505         if( defaults->get("AUTOASPECT", 0) ) {
506                 create_aspect_ratio(edl->session->aspect_w,
507                         edl->session->aspect_h,
508                         edl->session->output_w,
509                         edl->session->output_h);
510         }
511
512         undo->update_undo_after(_("crop"), LOAD_ALL);
513
514         restart_brender();
515         cwindow->refresh_frame(CHANGE_ALL);
516         save_backup();
517 }
518
519 void MWindow::cut()
520 {
521         double start = edl->local_session->get_selectionstart();
522         double end = edl->local_session->get_selectionend();
523         if( EQUIV(start,end) )
524                 blade(start);
525         else
526                 cut(start, end);
527 }
528
529 void MWindow::blade(double position)
530 {
531         undo->update_undo_before();
532         edl->blade(position);
533         edl->optimize();
534         save_backup();
535         undo->update_undo_after(_("blade"), LOAD_EDITS | LOAD_TIMEBAR);
536         restart_brender();
537         update_plugin_guis();
538         gui->update(1, 2, 1, 1, 1, 1, 0);
539         cwindow->update(1, 0, 0, 0, 1);
540         awindow->gui->async_update_assets();
541         cwindow->refresh_frame(CHANGE_EDL);
542 }
543
544 void MWindow::cut(double start, double end, double new_position)
545 {
546         undo->update_undo_before();
547         copy(start, end);
548         edl->clear(start, end,
549                 edl->session->labels_follow_edits,
550                 edl->session->plugins_follow_edits,
551                 edl->session->autos_follow_edits);
552
553         edl->optimize();
554         save_backup();
555         undo->update_undo_after(_("split | cut"), LOAD_EDITS | LOAD_TIMEBAR);
556         if( new_position >= 0 ) {
557                 edl->local_session->set_selectionstart(new_position);
558                 edl->local_session->set_selectionend(new_position);
559         }
560         restart_brender();
561         update_plugin_guis();
562         gui->update(1, 2, 1, 1, 1, 1, 0);
563         cwindow->update(1, 0, 0, 0, 1);
564         awindow->gui->async_update_assets();
565         cwindow->refresh_frame(CHANGE_EDL);
566 }
567
568 void MWindow::cut_left_edit()
569 {
570         double start_pos = edl->local_session->get_selectionstart(1);
571         double position = edl->prev_edit(start_pos);
572         if( position < start_pos )
573                 cut(position, start_pos, position);
574 }
575
576 void MWindow::cut_right_edit()
577 {
578         double end_pos = edl->local_session->get_selectionend(1);
579         double position = edl->next_edit(end_pos);
580         if( end_pos < position )
581                 cut(end_pos, position, end_pos);
582 }
583
584 void MWindow::cut_left_label()
585 {
586         double start_pos = edl->local_session->get_selectionstart(1);
587         Label *left_label = edl->labels->prev_label(start_pos);
588         if( !left_label ) return;
589         double position = left_label->position;
590         if( position < start_pos )
591                 cut(position, start_pos, position);
592 }
593
594 void MWindow::cut_right_label()
595 {
596         double end_pos = edl->local_session->get_selectionend(1);
597         Label *right_label = edl->labels->next_label(end_pos);
598         if( !right_label ) return;
599         double position = right_label->position;
600         if( end_pos < position )
601                 cut(end_pos, position, end_pos);
602 }
603
604 int MWindow::cut_automation()
605 {
606         undo->update_undo_before();
607         speed_before();
608         copy_automation();
609         edl->tracks->clear_automation(edl->local_session->get_selectionstart(),
610                 edl->local_session->get_selectionend());
611         int changed_edl = speed_after(1);
612         save_backup();
613         undo->update_undo_after(_("cut keyframes"),
614                 !changed_edl ? LOAD_AUTOMATION :
615                         LOAD_AUTOMATION + LOAD_EDITS + LOAD_TIMEBAR);
616         update_gui(changed_edl);
617         return 0;
618 }
619
620 int MWindow::cut_default_keyframe()
621 {
622
623         undo->update_undo_before();
624         speed_before();
625         copy_default_keyframe();
626         edl->tracks->clear_default_keyframe();
627         int changed_edl = speed_after(1);
628         save_backup();
629         undo->update_undo_after(_("cut default keyframe"),
630                 !changed_edl ? LOAD_AUTOMATION :
631                         LOAD_AUTOMATION + LOAD_EDITS + LOAD_TIMEBAR);
632         update_gui(changed_edl);
633         return 0;
634 }
635
636
637 void MWindow::delete_track()
638 {
639         if( edl->tracks->last )
640                 delete_track(edl->tracks->last);
641 }
642
643 void MWindow::delete_tracks()
644 {
645         undo->update_undo_before();
646         edl->tracks->delete_tracks();
647         undo->update_undo_after(_("delete tracks"), LOAD_ALL);
648         save_backup();
649
650         restart_brender();
651         update_plugin_states();
652
653         gui->update(1, 1, 1, 0, 1, 0, 0);
654         cwindow->refresh_frame(CHANGE_EDL);
655 }
656
657 void MWindow::delete_track(Track *track)
658 {
659         undo->update_undo_before();
660         edl->tracks->delete_track(track);
661         undo->update_undo_after(_("delete track"), LOAD_ALL);
662
663         restart_brender();
664         update_plugin_states();
665
666         gui->update(1, 1, 1, 0, 1, 0, 0);
667         cwindow->refresh_frame(CHANGE_EDL);
668         save_backup();
669 }
670
671
672 // Insert data from clipboard
673 void MWindow::insert(double position, FileXML *file,
674         int edit_labels, int edit_plugins, int edit_autos,
675         EDL *parent_edl)
676 {
677 // For clipboard pasting make the new edl use a separate session
678 // from the master EDL.  Then it can be resampled to the master rates.
679 // For splice, overwrite, and dragging need same session to get the assets.
680         EDL *edl = new EDL(parent_edl);
681         ArrayList<EDL*> new_edls;
682         uint32_t load_flags = LOAD_ALL;
683
684
685         new_edls.append(edl);
686         edl->create_objects();
687
688
689
690
691         if( parent_edl ) load_flags &= ~LOAD_SESSION;
692         if( !edl->session->autos_follow_edits ) load_flags &= ~LOAD_AUTOMATION;
693         if( !edl->session->labels_follow_edits ) load_flags &= ~LOAD_TIMEBAR;
694
695         edl->load_xml(file, load_flags);
696
697
698 //printf("MWindow::insert %f\n", edl->local_session->clipboard_length);
699
700
701
702         paste_edls(&new_edls, LOADMODE_PASTE, 0, position,
703                 edit_labels, edit_plugins, edit_autos, 0); // overwrite
704 // if( vwindow->edl )
705 // printf("MWindow::insert 5 %f %f\n",
706 // vwindow->edl->local_session->in_point,
707 // vwindow->edl->local_session->out_point);
708         new_edls.remove_all();
709         edl->Garbage::remove_user();
710 //printf("MWindow::insert 6 %p\n", vwindow->get_edl());
711 }
712
713 void MWindow::insert_effects_canvas(double start,
714         double length)
715 {
716         Track *dest_track = session->track_highlighted;
717         if( !dest_track ) return;
718
719         undo->update_undo_before();
720
721         for( int i=0; i<session->drag_pluginservers->total; ++i ) {
722                 PluginServer *plugin = session->drag_pluginservers->values[i];
723                 insert_effect(plugin->title, 0, dest_track,
724                         i == 0 ? session->pluginset_highlighted : 0,
725                         start, length, PLUGIN_STANDALONE);
726         }
727
728         save_backup();
729         undo->update_undo_after(_("insert effect"), LOAD_EDITS | LOAD_PATCHES);
730         restart_brender();
731         sync_parameters(CHANGE_EDL);
732 // GUI updated in TrackCanvas, after current_operations are reset
733 }
734
735 void MWindow::insert_effects_cwindow(Track *dest_track)
736 {
737         if( !dest_track ) return;
738
739         undo->update_undo_before();
740
741         double start = 0;
742         double length = dest_track->get_length();
743
744         if( edl->local_session->get_selectionend() >
745                 edl->local_session->get_selectionstart() ) {
746                 start = edl->local_session->get_selectionstart();
747                 length = edl->local_session->get_selectionend() -
748                         edl->local_session->get_selectionstart();
749         }
750
751         for( int i=0; i<session->drag_pluginservers->total; ++i ) {
752                 PluginServer *plugin = session->drag_pluginservers->values[i];
753                 insert_effect(plugin->title, 0, dest_track, 0,
754                         start, length, PLUGIN_STANDALONE);
755         }
756
757         save_backup();
758         undo->update_undo_after(_("insert effect"), LOAD_EDITS | LOAD_PATCHES);
759         restart_brender();
760         sync_parameters(CHANGE_EDL);
761         gui->update(1, 1, 0, 0, 1, 0, 0);
762 }
763
764 void MWindow::insert_effect(char *title,
765         SharedLocation *shared_location,
766         int data_type,
767         int plugin_type,
768         int single_standalone)
769 {
770         Track *current = edl->tracks->first;
771         SharedLocation shared_location_local;
772         shared_location_local.copy_from(shared_location);
773         int first_track = 1;
774         for( ; current; current=NEXT ) {
775                 if( current->data_type == data_type &&
776                         current->record ) {
777                         insert_effect(title, &shared_location_local,
778                                 current, 0, 0, 0, plugin_type);
779
780                         if( first_track ) {
781                                 if( plugin_type == PLUGIN_STANDALONE && single_standalone ) {
782                                         plugin_type = PLUGIN_SHAREDPLUGIN;
783                                         shared_location_local.module = edl->tracks->number_of(current);
784                                         shared_location_local.plugin = current->plugin_set.total - 1;
785                                 }
786                                 first_track = 0;
787                         }
788                 }
789         }
790 }
791
792
793 void MWindow::insert_effect(char *title,
794         SharedLocation *shared_location,
795         Track *track,
796         PluginSet *plugin_set,
797         double start,
798         double length,
799         int plugin_type)
800 {
801         KeyFrame *default_keyframe = 0;
802         PluginServer *server = 0;
803 // Get default keyframe
804         if( plugin_type == PLUGIN_STANDALONE ) {
805                 default_keyframe = new KeyFrame;
806                 server = new PluginServer(*scan_plugindb(title, track->data_type));
807
808                 server->open_plugin(0, preferences, edl, 0);
809                 server->save_data(default_keyframe);
810         }
811 // Insert plugin object
812         track->insert_effect(title, shared_location,
813                 default_keyframe, plugin_set,
814                 start, length, plugin_type);
815         track->optimize();
816
817         if( plugin_type == PLUGIN_STANDALONE ) {
818                 server->close_plugin();
819                 delete server;
820                 delete default_keyframe;
821         }
822 }
823
824 int MWindow::modify_edithandles()
825 {
826         undo->update_undo_before();
827         edl->modify_edithandles(session->drag_start,
828                 session->drag_position,
829                 session->drag_handle,
830                 edl->session->edit_handle_mode[session->drag_button],
831                 edl->session->labels_follow_edits,
832                 edl->session->plugins_follow_edits,
833                 edl->session->autos_follow_edits);
834
835         finish_modify_handles();
836 //printf("MWindow::modify_handles 1\n");
837         return 0;
838 }
839
840 int MWindow::modify_pluginhandles()
841 {
842         undo->update_undo_before();
843
844         edl->modify_pluginhandles(session->drag_start,
845                 session->drag_position,
846                 session->drag_handle,
847                 edl->session->edit_handle_mode[session->drag_button],
848                 edl->session->labels_follow_edits,
849                 edl->session->autos_follow_edits,
850                 session->trim_edits);
851
852         finish_modify_handles();
853
854         return 0;
855 }
856
857
858 // Common to edithandles and plugin handles
859 void MWindow::finish_modify_handles()
860 {
861         int edit_mode = edl->session->edit_handle_mode[session->drag_button];
862
863         if( (session->drag_handle == 1 && edit_mode != MOVE_NO_EDITS) ||
864                 (session->drag_handle == 0 && edit_mode == MOVE_ONE_EDIT) ) {
865 //printf("MWindow::finish_modify_handles %d\n", __LINE__);
866                 edl->local_session->set_selectionstart(session->drag_position);
867                 edl->local_session->set_selectionend(session->drag_position);
868         }
869         else
870         if( edit_mode != MOVE_NO_EDITS ) {
871 //printf("MWindow::finish_modify_handles %d\n", __LINE__);
872                 edl->local_session->set_selectionstart(session->drag_start);
873                 edl->local_session->set_selectionend(session->drag_start);
874         }
875
876 // clamp the selection to 0
877         if( edl->local_session->get_selectionstart(1) < 0 ) {
878                 edl->local_session->set_selectionstart(0);
879                 edl->local_session->set_selectionend(0);
880         }
881         undo->update_undo_after(_("drag handle"), LOAD_EDITS | LOAD_TIMEBAR);
882
883         save_backup();
884         restart_brender();
885         sync_parameters(CHANGE_EDL);
886         update_plugin_guis();
887         gui->update(1, 2, 1, 1, 1, 1, 0);
888 // label list can be modified
889         awindow->gui->async_update_assets();
890         cwindow->update(1, 0, 0, 0, 1);
891 }
892
893 void MWindow::match_output_size(Track *track)
894 {
895         undo->update_undo_before();
896         track->track_w = edl->session->output_w;
897         track->track_h = edl->session->output_h;
898         save_backup();
899         undo->update_undo_after(_("match output size"), LOAD_ALL);
900
901         restart_brender();
902         sync_parameters(CHANGE_EDL);
903 }
904
905
906 void MWindow::move_edits(ArrayList<Edit*> *edits,
907                 Track *track,
908                 double position,
909                 int behaviour)
910 {
911         undo->update_undo_before();
912
913         edl->tracks->move_edits(edits,
914                 track,
915                 position,
916                 edl->session->labels_follow_edits,
917                 edl->session->plugins_follow_edits,
918                 edl->session->autos_follow_edits,
919                 behaviour);
920
921         save_backup();
922         undo->update_undo_after(_("move edit"), LOAD_ALL);
923
924         restart_brender();
925         cwindow->refresh_frame(CHANGE_EDL);
926
927         update_plugin_guis();
928         gui->update(1, 1,      // 1 for incremental drawing.  2 for full refresh
929                 1, 0, 0, 0, 0);
930 }
931
932 void MWindow::move_effect(Plugin *plugin, Track *track, int64_t position)
933 {
934         undo->update_undo_before();
935         edl->tracks->move_effect(plugin, track, position);
936         save_backup();
937         undo->update_undo_after(_("paste effect"), LOAD_ALL);
938
939         restart_brender();
940         cwindow->refresh_frame(CHANGE_EDL);
941         update_plugin_guis();
942         gui->update(1, 1,      // 1 for incremental drawing.  2 for full refresh
943                 0, 0, 0, 0, 0);
944 }
945
946 void MWindow::move_effect(Plugin *plugin, PluginSet *plugin_set, int64_t position)
947 {
948         undo->update_undo_before();
949         edl->tracks->move_effect(plugin, plugin_set, position);
950         save_backup();
951         undo->update_undo_after(_("move effect"), LOAD_ALL);
952
953         restart_brender();
954         cwindow->refresh_frame(CHANGE_EDL);
955         update_plugin_guis();
956         gui->update(1, 1,      // 1 for incremental drawing.  2 for full refresh
957                 0, 0, 0, 0, 0);
958 }
959
960 void MWindow::move_plugins_up(PluginSet *plugin_set)
961 {
962
963         undo->update_undo_before();
964         plugin_set->track->move_plugins_up(plugin_set);
965
966         save_backup();
967         undo->update_undo_after(_("move effect up"), LOAD_ALL);
968         restart_brender();
969         gui->update(1, 1,      // 1 for incremental drawing.  2 for full refresh
970                 0, 0, 0, 0, 0);
971         sync_parameters(CHANGE_EDL);
972 }
973
974 void MWindow::move_plugins_down(PluginSet *plugin_set)
975 {
976         undo->update_undo_before();
977
978         plugin_set->track->move_plugins_down(plugin_set);
979
980         save_backup();
981         undo->update_undo_after(_("move effect down"), LOAD_ALL);
982         restart_brender();
983         gui->update(1, 1,      // 1 for incremental drawing.  2 for full refresh
984                 0, 0, 0, 0, 0);
985         sync_parameters(CHANGE_EDL);
986 }
987
988 void MWindow::move_track_down(Track *track)
989 {
990         undo->update_undo_before();
991         edl->tracks->move_track_down(track);
992         save_backup();
993         undo->update_undo_after(_("move track down"), LOAD_ALL);
994
995         restart_brender();
996         gui->update(1, 1, 0, 0, 1, 0, 0);
997         sync_parameters(CHANGE_EDL);
998         save_backup();
999 }
1000
1001 void MWindow::move_tracks_down()
1002 {
1003         undo->update_undo_before();
1004         edl->tracks->move_tracks_down();
1005         save_backup();
1006         undo->update_undo_after(_("move tracks down"), LOAD_ALL);
1007
1008         restart_brender();
1009         gui->update(1, 1, 0, 0, 1, 0, 0);
1010         sync_parameters(CHANGE_EDL);
1011         save_backup();
1012 }
1013
1014 void MWindow::move_track_up(Track *track)
1015 {
1016         undo->update_undo_before();
1017         edl->tracks->move_track_up(track);
1018         save_backup();
1019         undo->update_undo_after(_("move track up"), LOAD_ALL);
1020         restart_brender();
1021         gui->update(1, 1, 0, 0, 1, 0, 0);
1022         sync_parameters(CHANGE_EDL);
1023         save_backup();
1024 }
1025
1026 void MWindow::move_tracks_up()
1027 {
1028         undo->update_undo_before();
1029         edl->tracks->move_tracks_up();
1030         save_backup();
1031         undo->update_undo_after(_("move tracks up"), LOAD_ALL);
1032         restart_brender();
1033         gui->update(1, 1, 0, 0, 1, 0, 0);
1034         sync_parameters(CHANGE_EDL);
1035 }
1036
1037
1038 void MWindow::mute_selection()
1039 {
1040         double start = edl->local_session->get_selectionstart();
1041         double end = edl->local_session->get_selectionend();
1042         if( start != end ) {
1043                 undo->update_undo_before();
1044                 edl->clear(start, end, 0,
1045                         edl->session->plugins_follow_edits,
1046                         edl->session->autos_follow_edits);
1047                 edl->local_session->set_selectionend(end);
1048                 edl->local_session->set_selectionstart(start);
1049                 edl->paste_silence(start, end, 0,
1050                         edl->session->plugins_follow_edits,
1051                         edl->session->autos_follow_edits);
1052
1053                 save_backup();
1054                 undo->update_undo_after(_("mute"), LOAD_EDITS);
1055
1056                 restart_brender();
1057                 update_plugin_guis();
1058                 gui->update(1, 2, 1, 1, 1, 1, 0);
1059                 cwindow->refresh_frame(CHANGE_EDL);
1060         }
1061 }
1062
1063
1064 void MWindow::overwrite(EDL *source, int all)
1065 {
1066         FileXML file;
1067
1068         LocalSession *src = source->local_session;
1069         double src_start = all ? 0 :
1070                 src->inpoint_valid() ? src->get_inpoint() :
1071                 src->outpoint_valid() ? 0 :
1072                         src->get_selectionstart();
1073         double src_end = all ? source->tracks->total_length() :
1074                 src->outpoint_valid() ? src->get_outpoint() :
1075                 src->inpoint_valid() ? source->tracks->total_length() :
1076                         src->get_selectionend();
1077         double overwrite_len = src_end - src_start;
1078         double dst_start = edl->local_session->get_selectionstart();
1079         double dst_len = edl->local_session->get_selectionend() - dst_start;
1080
1081         undo->update_undo_before();
1082         if( !EQUIV(dst_len, 0) && (dst_len < overwrite_len) ) {
1083 // in/out points or selection present and shorter than overwrite range
1084 // shorten the copy range
1085                 overwrite_len = dst_len;
1086         }
1087
1088         source->copy(src_start, src_start + overwrite_len, 0, &file, "", 1);
1089
1090 // HACK around paste_edl get_start/endselection on its own
1091 // so we need to clear only when not using both io points
1092 // FIXME: need to write simple overwrite_edl to be used for overwrite function
1093         if( edl->local_session->get_inpoint() < 0 ||
1094                 edl->local_session->get_outpoint() < 0 )
1095                 edl->clear(dst_start, dst_start + overwrite_len, 0, 0, 0);
1096
1097         paste(dst_start, dst_start + overwrite_len,
1098                 &file, 0, 0, 0);
1099
1100         edl->local_session->set_selectionstart(dst_start + overwrite_len);
1101         edl->local_session->set_selectionend(dst_start + overwrite_len);
1102
1103         save_backup();
1104         undo->update_undo_after(_("overwrite"), LOAD_EDITS);
1105
1106         restart_brender();
1107         update_plugin_guis();
1108         gui->update(1, 1, 1, 1, 0, 1, 0);
1109         sync_parameters(CHANGE_EDL);
1110 }
1111
1112 // For splice and overwrite
1113 int MWindow::paste(double start,
1114         double end,
1115         FileXML *file,
1116         int edit_labels,
1117         int edit_plugins,
1118         int edit_autos)
1119 {
1120         clear(0);
1121
1122 // Want to insert with assets shared with the master EDL.
1123         insert(start, file,
1124                 edit_labels, edit_plugins, edit_autos,
1125                 edl);
1126
1127         return 0;
1128 }
1129
1130 // For editing using insertion point
1131 void MWindow::paste()
1132 {
1133         double start = edl->local_session->get_selectionstart();
1134         //double end = edl->local_session->get_selectionend();
1135         int64_t len = gui->clipboard_len(BC_PRIMARY_SELECTION);
1136
1137         if( len ) {
1138                 char *string = new char[len];
1139                 undo->update_undo_before();
1140                 gui->from_clipboard(string, len, BC_PRIMARY_SELECTION);
1141                 FileXML file;
1142                 file.read_from_string(string);
1143                 clear(0);
1144
1145                 insert(start, &file,
1146                         edl->session->labels_follow_edits,
1147                         edl->session->plugins_follow_edits,
1148                         edl->session->autos_follow_edits,
1149                         0);
1150
1151                 edl->optimize();
1152                 delete [] string;
1153
1154                 save_backup();
1155
1156                 undo->update_undo_after(_("paste"), LOAD_EDITS | LOAD_TIMEBAR);
1157                 restart_brender();
1158                 update_plugin_guis();
1159                 gui->update(1, 2, 1, 1, 0, 1, 0);
1160                 awindow->gui->async_update_assets();
1161                 sync_parameters(CHANGE_EDL);
1162         }
1163
1164 }
1165
1166 int MWindow::paste_assets(double position, Track *dest_track, int overwrite)
1167 {
1168         int result = 0;
1169         undo->update_undo_before();
1170
1171         if( session->drag_assets->total ) {
1172                 load_assets(session->drag_assets,
1173                         position, LOADMODE_PASTE, dest_track, 0,
1174                         edl->session->labels_follow_edits,
1175                         edl->session->plugins_follow_edits,
1176                         edl->session->autos_follow_edits,
1177                         overwrite);
1178                 result = 1;
1179         }
1180
1181         if( session->drag_clips->total ) {
1182                 paste_edls(session->drag_clips,
1183                         LOADMODE_PASTE, dest_track, position,
1184                         edl->session->labels_follow_edits,
1185                         edl->session->plugins_follow_edits,
1186                         edl->session->autos_follow_edits,
1187                         overwrite);
1188                 result = 1;
1189         }
1190
1191         save_backup();
1192
1193         undo->update_undo_after(_("paste assets"), LOAD_EDITS);
1194         restart_brender();
1195         gui->update(1, 2, 1, 0, 0, 1, 0);
1196         sync_parameters(CHANGE_EDL);
1197         return result;
1198 }
1199
1200 void MWindow::load_assets(ArrayList<Indexable*> *new_assets,
1201         double position, int load_mode, Track *first_track, RecordLabels *labels,
1202         int edit_labels, int edit_plugins, int edit_autos, int overwrite)
1203 {
1204         if( load_mode == LOADMODE_RESOURCESONLY )
1205                 load_mode = LOADMODE_ASSETSONLY;
1206 const int debug = 0;
1207 if( debug ) printf("MWindow::load_assets %d\n", __LINE__);
1208         if( position < 0 ) position = edl->local_session->get_selectionstart();
1209
1210         ArrayList<EDL*> new_edls;
1211         for( int i=0; i<new_assets->total; ++i ) {
1212                 Indexable *indexable = new_assets->get(i);
1213                 if( indexable->is_asset ) {
1214                         remove_asset_from_caches((Asset*)indexable);
1215                 }
1216                 EDL *new_edl = new EDL;
1217                 new_edl->create_objects();
1218                 new_edl->copy_session(edl);
1219                 if( !indexable->is_asset ) {
1220                         EDL *nested_edl = (EDL*)indexable;
1221                         new_edl->create_nested(nested_edl);
1222                         new_edl->set_path(indexable->path);
1223                 }
1224                 else {
1225                         Asset *asset = (Asset*)indexable;
1226                         asset_to_edl(new_edl, asset);
1227                 }
1228                 new_edls.append(new_edl);
1229
1230                 if( labels ) {
1231                         for( RecordLabel *label=labels->first; label; label=label->next ) {
1232                                 new_edl->labels->toggle_label(label->position, label->position);
1233                         }
1234                 }
1235         }
1236 if( debug ) printf("MWindow::load_assets %d\n", __LINE__);
1237
1238         paste_edls(&new_edls, load_mode, first_track, position,
1239                 edit_labels, edit_plugins, edit_autos, overwrite);
1240 if( debug ) printf("MWindow::load_assets %d\n", __LINE__);
1241
1242         save_backup();
1243         for( int i=0; i<new_edls.size(); ++i )
1244                 new_edls.get(i)->Garbage::remove_user();
1245
1246 if( debug ) printf("MWindow::load_assets %d\n", __LINE__);
1247 }
1248
1249 int MWindow::paste_automation()
1250 {
1251         int64_t len = gui->clipboard_len(BC_PRIMARY_SELECTION);
1252
1253         if( len ) {
1254                 undo->update_undo_before();
1255                 speed_before();
1256                 char *string = new char[len];
1257                 gui->from_clipboard(string, len, BC_PRIMARY_SELECTION);
1258                 FileXML file;
1259                 file.read_from_string(string);
1260                 delete [] string;
1261                 double start = edl->local_session->get_selectionstart();
1262                 double end = edl->local_session->get_selectionend();
1263                 edl->tracks->clear_automation(start, end);
1264                 edl->tracks->paste_automation(start, &file, 0, 1,
1265                         edl->session->typeless_keyframes);
1266                 int changed_edl = speed_after(1);
1267                 save_backup();
1268                 undo->update_undo_after(_("paste keyframes"),
1269                         !changed_edl ? LOAD_AUTOMATION :
1270                                 LOAD_AUTOMATION + LOAD_EDITS + LOAD_TIMEBAR);
1271                 update_gui(changed_edl);
1272         }
1273
1274         return 0;
1275 }
1276
1277 int MWindow::paste_default_keyframe()
1278 {
1279         int64_t len = gui->clipboard_len(BC_PRIMARY_SELECTION);
1280
1281         if( len ) {
1282                 undo->update_undo_before();
1283                 speed_before();
1284                 char *string = new char[len];
1285                 gui->from_clipboard(string, len, BC_PRIMARY_SELECTION);
1286                 FileXML file;
1287                 file.read_from_string(string);
1288                 delete [] string;
1289                 double start = edl->local_session->get_selectionstart();
1290                 edl->tracks->paste_automation(start, &file, 1, 0,
1291                         edl->session->typeless_keyframes);
1292 //              edl->tracks->paste_default_keyframe(&file);
1293                 int changed_edl = speed_after(1);
1294                 undo->update_undo_after(_("paste default keyframe"),
1295                         !changed_edl ? LOAD_AUTOMATION :
1296                                 LOAD_AUTOMATION + LOAD_EDITS + LOAD_TIMEBAR);
1297                 save_backup();
1298                 update_gui(changed_edl);
1299         }
1300
1301         return 0;
1302 }
1303
1304
1305 // Insert edls with project deletion and index file generation.
1306 int MWindow::paste_edls(ArrayList<EDL*> *new_edls, int load_mode,
1307         Track *first_track, double current_position,
1308         int edit_labels, int edit_plugins, int edit_autos,
1309         int overwrite)
1310 {
1311
1312         ArrayList<Track*> destination_tracks;
1313         int need_new_tracks = 0;
1314
1315 //PRINT_TRACE
1316         if( !new_edls->total ) return 0;
1317
1318 //PRINT_TRACE
1319 //      double original_length = edl->tracks->total_length();
1320 //      double original_preview_end = edl->local_session->preview_end;
1321 //PRINT_TRACE
1322
1323 // Delete current project
1324         if( load_mode == LOADMODE_REPLACE ||
1325             load_mode == LOADMODE_REPLACE_CONCATENATE ) {
1326                 reset_caches();
1327                 edl->save_defaults(defaults);
1328                 hide_plugins();
1329                 edl->Garbage::remove_user();
1330                 edl = new EDL;
1331                 edl->create_objects();
1332                 edl->copy_session(new_edls->values[0]);
1333                 edl->copy_mixers(new_edls->values[0]);
1334                 gui->mainmenu->update_toggles(0);
1335                 gui->unlock_window();
1336                 gwindow->gui->update_toggles(1);
1337                 gui->lock_window("MWindow::paste_edls");
1338
1339 // Insert labels for certain modes constitutively
1340                 edit_labels = 1;
1341                 edit_plugins = 1;
1342                 edit_autos = 1;
1343 // Force reset of preview
1344 //              original_length = 0;
1345 //              original_preview_end = -1;
1346         }
1347
1348
1349 //PRINT_TRACE
1350
1351 // Create new tracks in master EDL
1352         if( load_mode == LOADMODE_REPLACE ||
1353             load_mode == LOADMODE_REPLACE_CONCATENATE ||
1354             load_mode == LOADMODE_NEW_TRACKS ) {
1355
1356                 need_new_tracks = 1;
1357                 for( int i=0; i<new_edls->total; ++i ) {
1358                         EDL *new_edl = new_edls->values[i];
1359                         for( Track *current=new_edl->tracks->first; current; current=NEXT ) {
1360                                 switch( current->data_type ) {
1361                                 case TRACK_VIDEO:
1362                                         edl->tracks->add_video_track(0, 0);
1363                                         if( current->draw ) edl->tracks->last->draw = 1;
1364                                         break;
1365                                 case TRACK_AUDIO:
1366                                         edl->tracks->add_audio_track(0, 0);
1367                                         break;
1368                                 case TRACK_SUBTITLE:
1369                                         edl->tracks->add_subttl_track(0, 0);
1370                                         break;
1371                                 default:
1372                                         continue;
1373                                 }
1374                                 destination_tracks.append(edl->tracks->last);
1375                         }
1376
1377 // Base track count on first EDL only for concatenation
1378                         if( load_mode == LOADMODE_REPLACE_CONCATENATE ) break;
1379                 }
1380                 edl->session->highlighted_track = edl->tracks->total() - 1;
1381         }
1382         else
1383 // Recycle existing tracks of master EDL
1384         if( load_mode == LOADMODE_CONCATENATE ||
1385             load_mode == LOADMODE_PASTE ||
1386             load_mode == LOADMODE_NESTED ) {
1387 //PRINT_TRACE
1388
1389 // The point of this is to shift forward labels after the selection so they can
1390 // then be shifted back to their original locations without recursively
1391 // shifting back every paste.
1392                 if( (load_mode == LOADMODE_PASTE || load_mode == LOADMODE_NESTED) &&
1393                     edl->session->labels_follow_edits )
1394                         edl->labels->clear(edl->local_session->get_selectionstart(),
1395                                            edl->local_session->get_selectionend(), 1);
1396
1397                 Track *current = first_track ? first_track : edl->tracks->first;
1398                 for( ; current; current=NEXT ) {
1399                         if( current->record ) {
1400                                 destination_tracks.append(current);
1401                         }
1402                 }
1403 //PRINT_TRACE
1404
1405         }
1406 //PRINT_TRACE
1407         int destination_track = 0;
1408         double *paste_position = new double[destination_tracks.total];
1409
1410 // Iterate through the edls
1411         for( int i=0; i<new_edls->total; ++i ) {
1412
1413                 EDL *new_edl = new_edls->values[i];
1414                 double edl_length = new_edl->local_session->clipboard_length ?
1415                         new_edl->local_session->clipboard_length :
1416                         new_edl->tracks->total_length();
1417 // printf("MWindow::paste_edls 2 %f %f\n",
1418 // new_edl->local_session->clipboard_length,
1419 // new_edl->tracks->total_length());
1420 // new_edl->dump();
1421 //PRINT_TRACE
1422
1423 // Convert EDL to master rates
1424                 new_edl->resample(new_edl->session->sample_rate,
1425                         edl->session->sample_rate,
1426                         TRACK_AUDIO);
1427                 new_edl->resample(new_edl->session->frame_rate,
1428                         edl->session->frame_rate,
1429                         TRACK_VIDEO);
1430 //PRINT_TRACE
1431 // Add assets and prepare index files
1432                 for( Asset *new_asset=new_edl->assets->first;
1433                      new_asset; new_asset=new_asset->next ) {
1434                         mainindexes->add_next_asset(0, new_asset);
1435                 }
1436 // Capture index file status from mainindex test
1437                 edl->update_assets(new_edl);
1438 //PRINT_TRACE
1439 // Get starting point of insertion.  Need this to paste labels.
1440                 switch( load_mode ) {
1441                 case LOADMODE_REPLACE:
1442                 case LOADMODE_NEW_TRACKS:
1443                         current_position = 0;
1444                         break;
1445
1446                 case LOADMODE_CONCATENATE:
1447                 case LOADMODE_REPLACE_CONCATENATE:
1448                         destination_track = 0;
1449                         if( destination_tracks.total )
1450                                 current_position = destination_tracks.values[0]->get_length();
1451                         else
1452                                 current_position = 0;
1453                         break;
1454
1455                 case LOADMODE_PASTE:
1456                 case LOADMODE_NESTED:
1457                         destination_track = 0;
1458                         if( i == 0 ) {
1459                                 for( int j=0; j<destination_tracks.total; ++j ) {
1460                                         paste_position[j] = (current_position >= 0) ?
1461                                                 current_position :
1462                                                 edl->local_session->get_selectionstart();
1463                                 }
1464                         }
1465                         break;
1466
1467                 case LOADMODE_RESOURCESONLY:
1468                         edl->add_clip(new_edl);
1469                         break;
1470                 }
1471 //PRINT_TRACE
1472 // Insert edl
1473                 if( load_mode != LOADMODE_RESOURCESONLY &&
1474                     load_mode != LOADMODE_ASSETSONLY ) {
1475 // Insert labels
1476 //printf("MWindow::paste_edls %f %f\n", current_position, edl_length);
1477                         if( load_mode == LOADMODE_PASTE ||
1478                             load_mode == LOADMODE_NESTED )
1479                                 edl->labels->insert_labels(new_edl->labels,
1480                                         destination_tracks.total ? paste_position[0] : 0.0,
1481                                         edl_length,
1482                                         edit_labels);
1483                         else
1484                                 edl->labels->insert_labels(new_edl->labels,
1485                                         current_position,
1486                                         edl_length,
1487                                         edit_labels);
1488 //PRINT_TRACE
1489
1490                         for( Track *new_track=new_edl->tracks->first;
1491                              new_track; new_track=new_track->next ) {
1492 // Get destination track of same type as new_track
1493                                 for( int k = 0;
1494                                      k < destination_tracks.total &&
1495                                      destination_tracks.values[destination_track]->data_type != new_track->data_type;
1496                                      ++k, ++destination_track ) {
1497                                         if( destination_track >= destination_tracks.total - 1 )
1498                                                 destination_track = 0;
1499                                 }
1500
1501 // Insert data into destination track
1502                                 if( destination_track < destination_tracks.total &&
1503                                     destination_tracks.values[destination_track]->data_type == new_track->data_type ) {
1504                                         Track *track = destination_tracks.values[destination_track];
1505
1506 // Replace default keyframes if first EDL and new tracks were created.
1507 // This means data copied from one track and pasted to another won't retain
1508 // the camera position unless it's a keyframe.  If it did, previous data in the
1509 // track might get unknowingly corrupted.  Ideally we would detect when differing
1510 // default keyframes existed and create discrete keyframes for both.
1511                                         int replace_default = (i == 0) && need_new_tracks;
1512
1513 //printf("MWindow::paste_edls 1 %d\n", replace_default);
1514 // Insert new track at current position
1515                                         switch( load_mode ) {
1516                                         case LOADMODE_REPLACE_CONCATENATE:
1517                                         case LOADMODE_CONCATENATE:
1518                                                 current_position = track->get_length();
1519                                                 break;
1520
1521                                         case LOADMODE_PASTE:
1522                                         case LOADMODE_NESTED:
1523                                                 current_position = paste_position[destination_track];
1524                                                 paste_position[destination_track] += new_track->get_length();
1525                                                 break;
1526                                         }
1527                                         if( overwrite ) {
1528                                                 track->clear(current_position,
1529                                                         current_position + new_track->get_length(),
1530                                                         1, // edit edits
1531                                                         edit_labels, edit_plugins, edit_autos,
1532                                                         1, // convert units
1533                                                         0); // trim edits
1534                                         }
1535 //PRINT_TRACE
1536                                         track->insert_track(new_track, current_position, replace_default,
1537                                                 edit_plugins, edit_autos, edl_length);
1538 //PRINT_TRACE
1539                                 }
1540
1541 // Get next destination track
1542                                 destination_track++;
1543                                 if( destination_track >= destination_tracks.total )
1544                                         destination_track = 0;
1545                         }
1546                 }
1547
1548                 if( load_mode == LOADMODE_PASTE ||
1549                     load_mode == LOADMODE_NESTED )
1550                         current_position += edl_length;
1551         }
1552
1553
1554 // Move loading of clips and vwindow to the end - this fixes some
1555 // strange issue, for index not being shown
1556 // Assume any paste operation from the same EDL won't contain any clips.
1557 // If it did it would duplicate every clip here.
1558         for( int i=0; i<new_edls->total; ++i ) {
1559                 EDL *new_edl = new_edls->get(i);
1560
1561                 for( int j=0; j<new_edl->clips.size(); ++j ) {
1562                         edl->add_clip(new_edl->clips[j]);
1563                 }
1564                 for( int j=0; j<new_edl->nested_edls.size(); ++j ) {
1565                         edl->nested_edls.get_nested(new_edl->nested_edls[j]);
1566                 }
1567
1568                 if( new_edl->total_vwindow_edls() ) {
1569 //                      if( edl->vwindow_edl )
1570 //                              edl->vwindow_edl->Garbage::remove_user();
1571 //                      edl->vwindow_edl = new EDL(edl);
1572 //                      edl->vwindow_edl->create_objects();
1573 //                      edl->vwindow_edl->copy_all(new_edl->vwindow_edl);
1574
1575                         for( int j=0; j<new_edl->total_vwindow_edls(); ++j ) {
1576                                 EDL *vwindow_edl = new EDL(edl);
1577                                 vwindow_edl->create_objects();
1578                                 vwindow_edl->copy_all(new_edl->get_vwindow_edl(j));
1579                                 edl->append_vwindow_edl(vwindow_edl, 0);
1580                         }
1581                 }
1582         }
1583
1584         if( paste_position ) delete [] paste_position;
1585
1586 // This is already done in load_filenames and everything else that uses paste_edls
1587 //      update_project(load_mode);
1588
1589 // Fix preview range
1590 //      if( EQUIV(original_length, original_preview_end) )
1591 //      {
1592 //              edl->local_session->preview_end = edl->tracks->total_length();
1593 //      }
1594
1595 // Start examining next batch of index files
1596         mainindexes->start_build();
1597
1598 // Don't save a backup after loading since the loaded file is on disk already.
1599 //PRINT_TRACE
1600         return 0;
1601 }
1602
1603 void MWindow::paste_silence()
1604 {
1605         double start = edl->local_session->get_selectionstart();
1606         double end = edl->local_session->get_selectionend();
1607         if( EQUIV(start, end) ) {
1608                 if( edl->session->frame_rate > 0 )
1609                         end += 1./edl->session->frame_rate;
1610         }
1611         undo->update_undo_before(_("silence"), this);
1612         edl->paste_silence(start, end,
1613                 edl->session->labels_follow_edits,
1614                 edl->session->plugins_follow_edits,
1615                 edl->session->autos_follow_edits);
1616         edl->optimize();
1617         save_backup();
1618         undo->update_undo_after(_("silence"), LOAD_EDITS | LOAD_TIMEBAR);
1619
1620         update_plugin_guis();
1621         restart_brender();
1622         gui->update(1, 2, 1, 1, 1, 1, 0);
1623         cwindow->update(1, 0, 0, 0, 1);
1624         cwindow->refresh_frame(CHANGE_EDL);
1625 }
1626
1627 void MWindow::detach_transition(Transition *transition)
1628 {
1629         undo->update_undo_before();
1630         hide_plugin(transition, 1);
1631         int is_video = (transition->edit->track->data_type == TRACK_VIDEO);
1632         transition->edit->detach_transition();
1633         save_backup();
1634         undo->update_undo_after(_("detach transition"), LOAD_ALL);
1635
1636         if( is_video ) restart_brender();
1637         gui->update(0, 1, 0, 0, 0, 0, 0);
1638         sync_parameters(CHANGE_EDL);
1639 }
1640
1641 void MWindow::detach_transitions()
1642 {
1643         gui->lock_window("MWindow::detach_transitions 1");
1644
1645         undo->update_undo_before();
1646         double start = edl->local_session->get_selectionstart();
1647         double end = edl->local_session->get_selectionend();
1648         edl->tracks->clear_transitions(start, end);
1649
1650         save_backup();
1651         undo->update_undo_after(_("detach transitions"), LOAD_EDITS);
1652
1653         sync_parameters(CHANGE_EDL);
1654         gui->update(0, 1, 0, 0, 0, 0, 0);
1655         gui->unlock_window();
1656 }
1657
1658 void MWindow::paste_transition()
1659 {
1660 // Only the first transition gets dropped.
1661         PluginServer *server = session->drag_pluginservers->values[0];
1662
1663         undo->update_undo_before();
1664         edl->tracks->paste_transition(server, session->edit_highlighted);
1665         save_backup();
1666         undo->update_undo_after(_("transition"), LOAD_EDITS);
1667
1668         if( server->video ) restart_brender();
1669         sync_parameters(CHANGE_ALL);
1670 }
1671
1672 void MWindow::paste_transitions(int track_type, char *title)
1673 {
1674         gui->lock_window("MWindow::detach_transitions 1");
1675
1676         undo->update_undo_before();
1677         double start = edl->local_session->get_selectionstart();
1678         double end = edl->local_session->get_selectionend();
1679         edl->tracks->paste_transitions(start, end, track_type, title);
1680         save_backup();
1681         undo->update_undo_after(_("attach transitions"), LOAD_EDITS);
1682
1683         sync_parameters(CHANGE_EDL);
1684         gui->update(0, 1, 0, 0, 0, 0, 0);
1685         gui->unlock_window();
1686 }
1687
1688 void MWindow::paste_transition_cwindow(Track *dest_track)
1689 {
1690         PluginServer *server = session->drag_pluginservers->values[0];
1691         undo->update_undo_before();
1692         edl->tracks->paste_video_transition(server, 1);
1693         save_backup();
1694         undo->update_undo_after(_("transition"), LOAD_EDITS);
1695         restart_brender();
1696         gui->update(0, 1, 0, 0, 0, 0, 0);
1697         sync_parameters(CHANGE_ALL);
1698 }
1699
1700 void MWindow::paste_audio_transition()
1701 {
1702         PluginServer *server = scan_plugindb(edl->session->default_atransition,
1703                 TRACK_AUDIO);
1704         if( !server ) {
1705                 char string[BCTEXTLEN];
1706                 sprintf(string, _("No default transition %s found."), edl->session->default_atransition);
1707                 gui->show_message(string);
1708                 return;
1709         }
1710
1711         undo->update_undo_before();
1712         edl->tracks->paste_audio_transition(server);
1713         save_backup();
1714         undo->update_undo_after(_("transition"), LOAD_EDITS);
1715
1716         sync_parameters(CHANGE_EDL);
1717         gui->update(0, 1, 0, 0, 0, 0, 0);
1718 }
1719
1720 void MWindow::paste_video_transition()
1721 {
1722         PluginServer *server = scan_plugindb(edl->session->default_vtransition,
1723                 TRACK_VIDEO);
1724         if( !server ) {
1725                 char string[BCTEXTLEN];
1726                 sprintf(string, _("No default transition %s found."), edl->session->default_vtransition);
1727                 gui->show_message(string);
1728                 return;
1729         }
1730
1731         undo->update_undo_before();
1732
1733         edl->tracks->paste_video_transition(server);
1734         save_backup();
1735         undo->update_undo_after(_("transition"), LOAD_EDITS);
1736
1737         sync_parameters(CHANGE_EDL);
1738         restart_brender();
1739         gui->update(0, 1, 0, 0, 0, 0, 0);
1740 }
1741
1742 void MWindow::shuffle_edits()
1743 {
1744         gui->lock_window("MWindow::shuffle_edits 1");
1745
1746         undo->update_undo_before();
1747         double start = edl->local_session->get_selectionstart();
1748         double end = edl->local_session->get_selectionend();
1749
1750         edl->tracks->shuffle_edits(start, end);
1751
1752         save_backup();
1753         undo->update_undo_after(_("shuffle edits"), LOAD_EDITS | LOAD_TIMEBAR);
1754
1755         sync_parameters(CHANGE_EDL);
1756         restart_brender();
1757         gui->update(0, 1, 1, 0, 0, 0, 0);
1758         gui->unlock_window();
1759 }
1760
1761 void MWindow::reverse_edits()
1762 {
1763         gui->lock_window("MWindow::reverse_edits 1");
1764
1765         undo->update_undo_before();
1766         double start = edl->local_session->get_selectionstart();
1767         double end = edl->local_session->get_selectionend();
1768
1769         edl->tracks->reverse_edits(start, end);
1770
1771         save_backup();
1772         undo->update_undo_after(_("reverse edits"), LOAD_EDITS | LOAD_TIMEBAR);
1773
1774         sync_parameters(CHANGE_EDL);
1775         restart_brender();
1776         gui->update(0, 1, 1, 0, 0, 0, 0);
1777         gui->unlock_window();
1778 }
1779
1780 void MWindow::align_edits()
1781 {
1782         gui->lock_window("MWindow::align_edits 1");
1783
1784         undo->update_undo_before();
1785         double start = edl->local_session->get_selectionstart();
1786         double end = edl->local_session->get_selectionend();
1787
1788         edl->tracks->align_edits(start, end);
1789
1790         save_backup();
1791         undo->update_undo_after(_("align edits"), LOAD_EDITS | LOAD_TIMEBAR);
1792
1793         sync_parameters(CHANGE_EDL);
1794         restart_brender();
1795         gui->update(0, 1, 1, 0, 0, 0, 0);
1796         gui->unlock_window();
1797 }
1798
1799 void MWindow::set_edit_length(double length)
1800 {
1801         gui->lock_window("MWindow::set_edit_length 1");
1802
1803         undo->update_undo_before();
1804         double start = edl->local_session->get_selectionstart();
1805         double end = edl->local_session->get_selectionend();
1806
1807         edl->tracks->set_edit_length(start, end, length);
1808
1809         save_backup();
1810         undo->update_undo_after(_("edit length"), LOAD_EDITS | LOAD_TIMEBAR);
1811
1812         sync_parameters(CHANGE_EDL);
1813         restart_brender();
1814         gui->update(0, 1, 1, 0, 0, 0, 0);
1815         gui->unlock_window();
1816 }
1817
1818
1819 void MWindow::set_transition_length(Transition *transition, double length)
1820 {
1821         gui->lock_window("MWindow::set_transition_length 1");
1822
1823         undo->update_undo_before();
1824         //double start = edl->local_session->get_selectionstart();
1825         //double end = edl->local_session->get_selectionend();
1826
1827         edl->tracks->set_transition_length(transition, length);
1828
1829         save_backup();
1830         undo->update_undo_after(_("transition length"), LOAD_EDITS);
1831
1832         edl->session->default_transition_length = length;
1833         sync_parameters(CHANGE_PARAMS);
1834         gui->update(0, 1, 0, 0, 0, 0, 0);
1835         gui->unlock_window();
1836 }
1837
1838 void MWindow::set_transition_length(double length)
1839 {
1840         gui->lock_window("MWindow::set_transition_length 2");
1841
1842         undo->update_undo_before();
1843         double start = edl->local_session->get_selectionstart();
1844         double end = edl->local_session->get_selectionend();
1845
1846         edl->tracks->set_transition_length(start, end, length);
1847
1848         save_backup();
1849         undo->update_undo_after(_("transition length"), LOAD_EDITS);
1850
1851         edl->session->default_transition_length = length;
1852         sync_parameters(CHANGE_PARAMS);
1853         restart_brender();
1854         gui->update(0, 1, 0, 0, 0, 0, 0);
1855         gui->unlock_window();
1856 }
1857
1858
1859 void MWindow::redo_entry(BC_WindowBase *calling_window_gui)
1860 {
1861         calling_window_gui->unlock_window();
1862         stop_playback(0);
1863         if( undo->redo_load_flags() & LOAD_SESSION )
1864                 close_mixers();
1865
1866         cwindow->gui->lock_window("MWindow::redo_entry 1");
1867         for( int i=0; i<vwindows.size(); ++i ) {
1868                 if( vwindows.get(i)->is_running() ) {
1869                         if( calling_window_gui != vwindows.get(i)->gui ) {
1870                                 vwindows.get(i)->gui->lock_window("MWindow::redo_entry 2");
1871                         }
1872                 }
1873         }
1874         gui->lock_window("MWindow::redo_entry 3");
1875
1876         undo->redo();
1877
1878         save_backup();
1879         restart_brender();
1880         update_plugin_states();
1881         update_plugin_guis();
1882
1883         gui->update(1, 2, 1, 1, 1, 1, 1);
1884         gui->update_proxy_toggle();
1885         gui->unlock_window();
1886         cwindow->update(1, 1, 1, 1, 1);
1887         cwindow->gui->unlock_window();
1888
1889         for( int i=0; i < vwindows.size(); ++i ) {
1890                 if( vwindows.get(i)->is_running() ) {
1891                         if( calling_window_gui != vwindows.get(i)->gui ) {
1892                                 vwindows.get(i)->gui->unlock_window();
1893                         }
1894                 }
1895         }
1896
1897         awindow->gui->async_update_assets();
1898
1899         cwindow->refresh_frame(CHANGE_ALL);
1900         calling_window_gui->lock_window("MWindow::redo_entry 4");
1901 }
1902
1903
1904 void MWindow::resize_track(Track *track, int w, int h)
1905 {
1906         undo->update_undo_before();
1907 // We have to move all maskpoints so they do not move in relation to image areas
1908         ((MaskAutos*)track->automation->autos[AUTOMATION_MASK])->translate_masks(
1909                 (w - track->track_w) / 2,
1910                 (h - track->track_h) / 2);
1911         track->track_w = w;
1912         track->track_h = h;
1913         undo->update_undo_after(_("resize track"), LOAD_ALL);
1914         save_backup();
1915
1916         restart_brender();
1917         sync_parameters(CHANGE_EDL);
1918 }
1919
1920
1921 void MWindow::set_inpoint(int is_mwindow)
1922 {
1923         undo->update_undo_before();
1924         edl->set_inpoint(edl->local_session->get_selectionstart(1));
1925         save_backup();
1926         undo->update_undo_after(_("in point"), LOAD_TIMEBAR);
1927
1928         if( !is_mwindow ) {
1929                 gui->lock_window("MWindow::set_inpoint 1");
1930         }
1931         gui->update_timebar(1);
1932         if( !is_mwindow ) {
1933                 gui->unlock_window();
1934         }
1935
1936         if( is_mwindow ) {
1937                 cwindow->gui->lock_window("MWindow::set_inpoint 2");
1938         }
1939         cwindow->gui->timebar->update(1);
1940         if( is_mwindow ) {
1941                 cwindow->gui->unlock_window();
1942         }
1943 }
1944
1945 void MWindow::set_outpoint(int is_mwindow)
1946 {
1947         undo->update_undo_before();
1948         edl->set_outpoint(edl->local_session->get_selectionend(1));
1949         save_backup();
1950         undo->update_undo_after(_("out point"), LOAD_TIMEBAR);
1951
1952         if( !is_mwindow ) {
1953                 gui->lock_window("MWindow::set_outpoint 1");
1954         }
1955         gui->update_timebar(1);
1956         if( !is_mwindow ) {
1957                 gui->unlock_window();
1958         }
1959
1960         if( is_mwindow ) {
1961                 cwindow->gui->lock_window("MWindow::set_outpoint 2");
1962         }
1963         cwindow->gui->timebar->update(1);
1964         if( is_mwindow ) {
1965                 cwindow->gui->unlock_window();
1966         }
1967 }
1968
1969 void MWindow::unset_inoutpoint(int is_mwindow)
1970 {
1971         undo->update_undo_before();
1972         edl->unset_inoutpoint();
1973         save_backup();
1974         undo->update_undo_after(_("clear in/out"), LOAD_TIMEBAR);
1975
1976         if( !is_mwindow ) {
1977                 gui->lock_window("MWindow::unset_inoutpoint 1");
1978         }
1979         gui->update_timebar(1);
1980         if( !is_mwindow ) {
1981                 gui->unlock_window();
1982         }
1983
1984         if( is_mwindow ) {
1985                 cwindow->gui->lock_window("MWindow::unset_inoutpoint 2");
1986         }
1987         cwindow->gui->timebar->update(1);
1988         if( is_mwindow ) {
1989                 cwindow->gui->unlock_window();
1990         }
1991 }
1992
1993 void MWindow::splice(EDL *source, int all)
1994 {
1995         FileXML file;
1996         LocalSession *src = source->local_session;
1997
1998         undo->update_undo_before();
1999         double source_start = all ? 0 :
2000                 src->inpoint_valid() ? src->get_inpoint() :
2001                 src->outpoint_valid() ? 0 : src->get_selectionstart();
2002         double source_end = all ? source->tracks->total_length() :
2003                 src->outpoint_valid() ? src->get_outpoint() :
2004                 src->inpoint_valid() ? source->tracks->total_length() :
2005                         src->get_selectionend();
2006         source->copy(source_start, source_end, 1, &file, "", 1);
2007 //file.dump();
2008         double start = edl->local_session->get_selectionstart();
2009         //double end = edl->local_session->get_selectionend();
2010
2011         paste(start, start, &file,
2012                 edl->session->labels_follow_edits,
2013                 edl->session->plugins_follow_edits,
2014                 edl->session->autos_follow_edits);
2015
2016 // Position at end of clip
2017         edl->local_session->set_selectionstart(start + source_end - source_start);
2018         edl->local_session->set_selectionend(start + source_end - source_start);
2019
2020         save_backup();
2021         undo->update_undo_after(_("splice"), LOAD_EDITS | LOAD_TIMEBAR);
2022         update_plugin_guis();
2023         restart_brender();
2024         gui->update(1, 1, 1, 1, 0, 1, 0);
2025         sync_parameters(CHANGE_EDL);
2026 }
2027
2028 void MWindow::save_clip(EDL *new_edl, const char *txt)
2029 {
2030         new_edl->local_session->set_selectionstart(0);
2031         new_edl->local_session->set_selectionend(0);
2032         sprintf(new_edl->local_session->clip_title, _("Clip %d"),
2033                 session->clip_number++);
2034         char duration[BCTEXTLEN];
2035         Units::totext(duration, new_edl->tracks->total_length(),
2036                 new_edl->session->time_format,
2037                 new_edl->session->sample_rate,
2038                 new_edl->session->frame_rate,
2039                 new_edl->session->frames_per_foot);
2040
2041         Track *track = new_edl->tracks->first;
2042         const char *path = edl->path;
2043         for( ; (!path || !*path) && track; track=track->next ) {
2044                 if( !track->record ) continue;
2045                 Edit *edit = track->edits->first;
2046                 if( !edit ) continue;
2047                 Indexable *indexable = edit->get_source();
2048                 if( !indexable ) continue;
2049                 path = indexable->path;
2050         }
2051
2052         time_t now;  time(&now);
2053         struct tm dtm;   localtime_r(&now, &dtm);
2054         char *cp = new_edl->local_session->clip_notes;
2055         int n, sz = sizeof(new_edl->local_session->clip_notes)-1;
2056         if( txt && *txt ) {
2057                 n = snprintf(cp, sz, "%s", txt);
2058                 cp += n;  sz -= n;
2059         }
2060         n = snprintf(cp, sz,
2061                 "%02d/%02d/%02d %02d:%02d:%02d,  +%s\n",
2062                 dtm.tm_year+1900, dtm.tm_mon+1, dtm.tm_mday,
2063                 dtm.tm_hour, dtm.tm_min, dtm.tm_sec, duration);
2064         cp += n;  sz -= n;
2065         if( path && *path ) {
2066                 FileSystem fs;
2067                 char title[BCTEXTLEN];
2068                 fs.extract_name(title, path);
2069                 n = snprintf(cp, sz, "%s", title);
2070                 cp += n;  sz -= n;
2071         }
2072         cp[n] = 0;
2073         sprintf(new_edl->local_session->clip_icon,
2074                 "clip_%02d%02d%02d-%02d%02d%02d.png",
2075                 dtm.tm_year+1900, dtm.tm_mon+1, dtm.tm_mday,
2076                 dtm.tm_hour, dtm.tm_min, dtm.tm_sec);
2077         new_edl->folder_no = AW_CLIP_FOLDER;
2078         edl->update_assets(new_edl);
2079         int cur_x, cur_y;
2080         gui->get_abs_cursor(cur_x, cur_y, 0);
2081         gui->unlock_window();
2082
2083         awindow->clip_edit->create_clip(new_edl, cur_x, cur_y);
2084         new_edl->remove_user();
2085
2086         gui->lock_window("MWindow::save_clip");
2087         save_backup();
2088 }
2089
2090 void MWindow::to_clip(EDL *edl, const char *txt, int all)
2091 {
2092         FileXML file;
2093         LocalSession *src = edl->local_session;
2094
2095         gui->lock_window("MWindow::to_clip 1");
2096         double start = all ? 0 :
2097                 src->inpoint_valid() ? src->get_inpoint() :
2098                 src->outpoint_valid() ? 0 : src->get_selectionstart();
2099         double end = all ? edl->tracks->total_length() :
2100                 src->outpoint_valid() ? src->get_outpoint() :
2101                 src->inpoint_valid() ? edl->tracks->total_length() :
2102                         src->get_selectionend();
2103         if( EQUIV(end, start) ) {
2104                 start = 0;
2105                 end = edl->tracks->total_length();
2106         }
2107
2108 // Don't copy all since we don't want the clips twice.
2109         edl->copy(start, end, 0, &file, "", 1);
2110
2111         EDL *new_edl = new EDL(edl);
2112         new_edl->create_objects();
2113         new_edl->load_xml(&file, LOAD_ALL);
2114         save_clip(new_edl, txt);
2115         gui->unlock_window();
2116 }
2117
2118 int MWindow::toggle_label(int is_mwindow)
2119 {
2120         double position1, position2;
2121         undo->update_undo_before();
2122
2123         if( cwindow->playback_engine->is_playing_back ) {
2124                 position1 = position2 =
2125                         cwindow->playback_engine->get_tracking_position();
2126         }
2127         else {
2128                 position1 = edl->local_session->get_selectionstart(1);
2129                 position2 = edl->local_session->get_selectionend(1);
2130         }
2131
2132         position1 = edl->align_to_frame(position1, 0);
2133         position2 = edl->align_to_frame(position2, 0);
2134
2135 //printf("MWindow::toggle_label 1\n");
2136
2137         edl->labels->toggle_label(position1, position2);
2138         save_backup();
2139
2140         if( !is_mwindow ) {
2141                 gui->lock_window("MWindow::toggle_label 1");
2142         }
2143         gui->update_timebar(0);
2144         gui->activate_timeline();
2145         gui->flush();
2146         if( !is_mwindow ) {
2147                 gui->unlock_window();
2148         }
2149
2150         if( is_mwindow ) {
2151                 cwindow->gui->lock_window("MWindow::toggle_label 2");
2152         }
2153         cwindow->gui->timebar->update(1);
2154         if( is_mwindow ) {
2155                 cwindow->gui->unlock_window();
2156         }
2157
2158         awindow->gui->async_update_assets();
2159
2160         undo->update_undo_after(_("label"), LOAD_TIMEBAR);
2161         return 0;
2162 }
2163
2164 void MWindow::trim_selection()
2165 {
2166         undo->update_undo_before();
2167
2168
2169         edl->trim_selection(edl->local_session->get_selectionstart(),
2170                 edl->local_session->get_selectionend(),
2171                 edl->session->labels_follow_edits,
2172                 edl->session->plugins_follow_edits,
2173                 edl->session->autos_follow_edits);
2174
2175         save_backup();
2176         undo->update_undo_after(_("trim selection"), LOAD_EDITS | LOAD_TIMEBAR);
2177         update_plugin_guis();
2178         gui->update(1, 2, 1, 1, 1, 1, 0);
2179         cwindow->update(1, 0, 0, 0, 1);
2180         awindow->gui->async_update_assets();
2181         restart_brender();
2182         cwindow->refresh_frame(CHANGE_EDL);
2183 }
2184
2185
2186 void MWindow::undo_entry(BC_WindowBase *calling_window_gui)
2187 {
2188         calling_window_gui->unlock_window();
2189         stop_playback(0);
2190         if( undo->undo_load_flags() & LOAD_SESSION )
2191                 close_mixers();
2192
2193         cwindow->gui->lock_window("MWindow::undo_entry 1");
2194         for( int i=0; i<vwindows.size(); ++i ) {
2195                 if( vwindows.get(i)->is_running() ) {
2196                         if( calling_window_gui != vwindows.get(i)->gui ) {
2197                                 vwindows.get(i)->gui->lock_window("MWindow::undo_entry 4");
2198                         }
2199                 }
2200         }
2201         gui->lock_window("MWindow::undo_entry 2");
2202
2203         undo->undo();
2204
2205         save_backup();
2206         restart_brender();
2207         update_plugin_states();
2208         update_plugin_guis();
2209
2210         gui->update(1, 2, 1, 1, 1, 1, 1);
2211         gui->update_proxy_toggle();
2212         gui->unlock_window();
2213         cwindow->update(1, 1, 1, 1, 1);
2214         cwindow->gui->unlock_window();
2215
2216         for( int i=0; i<vwindows.size(); ++i ) {
2217                 if( vwindows.get(i)->is_running() ) {
2218                         if( calling_window_gui != vwindows.get(i)->gui ) {
2219                                 vwindows.get(i)->gui->unlock_window();
2220                         }
2221                 }
2222         }
2223
2224         awindow->gui->async_update_assets();
2225
2226         cwindow->refresh_frame(CHANGE_ALL);
2227         calling_window_gui->lock_window("MWindow::undo_entry 4");
2228 }
2229
2230
2231 void MWindow::new_folder(const char *new_folder, int is_clips)
2232 {
2233         undo->update_undo_before();
2234         if( edl->new_folder(new_folder, is_clips) ) {
2235                 MainError::show_error(_("create new folder failed"));
2236         }
2237         undo->update_undo_after(_("new folder"), LOAD_ALL);
2238         awindow->gui->async_update_assets();
2239 }
2240
2241 void MWindow::delete_folder(char *folder)
2242 {
2243         undo->update_undo_before();
2244         if( edl->delete_folder(folder) < 0 ) {
2245                 MainError::show_error(_("delete folder failed"));
2246         }
2247         undo->update_undo_after(_("del folder"), LOAD_ALL);
2248         awindow->gui->async_update_assets();
2249 }
2250
2251 void MWindow::select_point(double position)
2252 {
2253         gui->unlock_window();
2254         gui->stop_drawing();
2255         cwindow->stop_playback(0);
2256         gui->lock_window("MWindow::select_point");
2257
2258         edl->local_session->set_selectionstart(position);
2259         edl->local_session->set_selectionend(position);
2260
2261 // Que the CWindow
2262         cwindow->update(1, 0, 0, 0, 1);
2263
2264         update_plugin_guis();
2265         gui->update_patchbay();
2266         gui->hide_cursor(0);
2267         gui->draw_cursor(0);
2268         gui->mainclock->update(edl->local_session->get_selectionstart(1));
2269         gui->zoombar->update();
2270         gui->update_timebar(0);
2271         gui->flash_canvas(0);
2272         gui->flush();
2273 }
2274
2275
2276
2277
2278 void MWindow::map_audio(int pattern)
2279 {
2280         undo->update_undo_before();
2281         remap_audio(pattern);
2282         undo->update_undo_after(
2283                 pattern == MWindow::AUDIO_1_TO_1 ? _("map 1:1") : _("map 5.1:2"),
2284                 LOAD_AUTOMATION);
2285         sync_parameters(CHANGE_PARAMS);
2286         gui->update(0, 1, 0, 0, 1, 0, 0);
2287 }
2288
2289 void MWindow::remap_audio(int pattern)
2290 {
2291         int current_channel = 0;
2292         int current_track = 0;
2293         for( Track *current=edl->tracks->first; current; current=NEXT ) {
2294                 if( current->data_type == TRACK_AUDIO &&
2295                         current->record ) {
2296                         Autos *pan_autos = current->automation->autos[AUTOMATION_PAN];
2297                         PanAuto *pan_auto = (PanAuto*)pan_autos->get_auto_for_editing(-1);
2298
2299                         for( int i=0; i < MAXCHANNELS; ++i ) {
2300                                 pan_auto->values[i] = 0.0;
2301                         }
2302
2303                         if( pattern == MWindow::AUDIO_1_TO_1 ) {
2304                                 pan_auto->values[current_channel] = 1.0;
2305                         }
2306                         else
2307                         if( pattern == MWindow::AUDIO_5_1_TO_2 ) {
2308                                 switch( current_track ) {
2309                                 case 0:
2310                                 case 4:
2311                                         pan_auto->values[0] = 1;
2312                                         break;
2313                                 case 1:
2314                                 case 5:
2315                                         pan_auto->values[1] = 1;
2316                                         break;
2317                                 case 2:
2318                                 case 3:
2319                                         pan_auto->values[0] = 0.5;
2320                                         pan_auto->values[1] = 0.5;
2321                                         break;
2322                                 }
2323                         }
2324
2325                         BC_Pan::calculate_stick_position(edl->session->audio_channels,
2326                                 edl->session->achannel_positions, pan_auto->values,
2327                                 MAX_PAN, PAN_RADIUS, pan_auto->handle_x, pan_auto->handle_y);
2328
2329                         current_channel++;
2330                         current_track++;
2331                         if( current_channel >= edl->session->audio_channels )
2332                                 current_channel = 0;
2333                 }
2334         }
2335 }
2336
2337
2338 void MWindow::rescale_proxy(EDL *clip, int orig_scale, int new_scale)
2339 {
2340         edl->rescale_proxy(orig_scale, new_scale);
2341 }
2342
2343 void MWindow::add_proxy(int use_scaler,
2344         ArrayList<Indexable*> *orig_assets, ArrayList<Indexable*> *proxy_assets)
2345 {
2346         edl->add_proxy(use_scaler, orig_assets, proxy_assets);
2347 }
2348
2349 void MWindow::cut_commercials()
2350 {
2351 #ifdef HAVE_COMMERCIAL
2352         undo->update_undo_before();
2353         commercials->scan_media();
2354         edl->optimize();
2355         save_backup();
2356         undo->update_undo_after(_("cut ads"), LOAD_EDITS | LOAD_TIMEBAR);
2357
2358         restart_brender();
2359         update_plugin_guis();
2360         gui->update(1, 2, 1, 1, 1, 1, 0);
2361         cwindow->update(1, 0, 0, 0, 1);
2362         cwindow->refresh_frame(CHANGE_EDL);
2363 #endif
2364 }
2365
2366 int MWindow::normalize_speed(EDL *old_edl, EDL *new_edl)
2367 {
2368         int result = 0;
2369         Track *old_track = old_edl->tracks->first;
2370         Track *new_track = new_edl->tracks->first;
2371         for( ; old_track && new_track; old_track=old_track->next, new_track=new_track->next ) {
2372                 if( old_track->data_type != new_track->data_type ) continue;
2373                 FloatAutos *old_speeds = (FloatAutos *)old_track->automation->autos[AUTOMATION_SPEED];
2374                 FloatAutos *new_speeds = (FloatAutos *)new_track->automation->autos[AUTOMATION_SPEED];
2375                 if( !old_speeds || !new_speeds ) continue;
2376                 FloatAuto *old_speed = (FloatAuto *)old_speeds->first;
2377                 FloatAuto *new_speed = (FloatAuto *)new_speeds->first;
2378                 while( old_speed && new_speed && old_speed->equals(new_speed) ) {
2379                         old_speed = (FloatAuto *)old_speed->next;
2380                         new_speed = (FloatAuto *)new_speed->next;
2381                 }
2382                 Edit *old_edit = old_track->edits->first;
2383                 Edit *new_edit = new_track->edits->first;
2384                 for( ; old_edit && new_edit; old_edit=old_edit->next, new_edit=new_edit->next ) {
2385                         int64_t edit_start = old_edit->startproject, edit_end = edit_start + old_edit->length;
2386                         if( old_speed || new_speed ) {
2387                                 double orig_start = old_speeds->automation_integral(0, edit_start, PLAY_FORWARD);
2388                                 double orig_end   = old_speeds->automation_integral(0, edit_end, PLAY_FORWARD);
2389                                 edit_start = new_speeds->speed_position(orig_start);
2390                                 edit_end = new_speeds->speed_position(orig_end);
2391                                 result = 1;
2392                         }
2393                         new_edit->startproject = edit_start;
2394                         new_edit->length = edit_end - edit_start;
2395                 }
2396         }
2397         return result;
2398 }
2399
2400 void MWindow::speed_before()
2401 {
2402         if( !speed_edl ) {
2403                 speed_edl = new EDL;
2404                 speed_edl->create_objects();
2405         }
2406         speed_edl->copy_all(edl);
2407 }
2408
2409 int MWindow::speed_after(int done)
2410 {
2411         int result = 0;
2412         if( speed_edl ) {
2413                 if( done >= 0 )
2414                         result = normalize_speed(speed_edl, edl);
2415                 if( done != 0 ) {
2416                         speed_edl->remove_user();
2417                         speed_edl = 0;
2418                 }
2419         }
2420         return result;
2421 }
2422