mixer
[goodguy/history.git] / cinelerra-5.1 / cinelerra / keyframepopup.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #include "apatchgui.h"
23 #include "atrack.h"
24 #include "autoconf.h"
25 #include "autos.h"
26 #include "bcwindowbase.h"
27 #include "cpanel.h"
28 #include "cwindowgui.h"
29 #include "cwindow.h"
30 #include "edl.h"
31 #include "edlsession.h"
32 #include "filexml.h"
33 #include "floatauto.h"
34 #include "gwindow.h"
35 #include "gwindowgui.h"
36 #include "intauto.h"
37 #include "keyframe.h"
38 #include "keyframepopup.h"
39 #include "language.h"
40 #include "localsession.h"
41 #include "maincursor.h"
42 #include "mainmenu.h"
43 #include "mainundo.h"
44 #include "mwindowgui.h"
45 #include "mwindow.h"
46 #include "patchbay.h"
47 #include "patchgui.h"
48 #include "timelinepane.h"
49 #include "track.h"
50 #include "vtrack.h"
51
52 KeyframePopup::KeyframePopup(MWindow *mwindow, MWindowGUI *gui)
53  : BC_PopupMenu(0, 0, 0, "", 0)
54 {
55         this->mwindow = mwindow;
56         this->gui = gui;
57         key_hide = 0;
58         key_show = 0;
59         key_delete = 0;
60         key_copy = 0;
61         key_smooth = 0;
62         key_linear = 0;
63         key_free = 0;
64         key_mbar = 0;
65         key_mode_displayed = false;
66         key_edit_displayed = false;
67 }
68
69 KeyframePopup::~KeyframePopup()
70 {
71         if( !key_mode_displayed ) {
72                 delete key_mbar;
73                 delete key_smooth;
74                 delete key_linear;
75                 delete key_free_t;
76                 delete key_free;
77         }
78         if( !key_edit_displayed ) {
79                 delete key_edit;
80         }
81 }
82
83 void KeyframePopup::create_objects()
84 {
85         add_item(key_show = new KeyframePopupShow(mwindow, this));
86         add_item(key_hide = new KeyframePopupHide(mwindow, this));
87         add_item(key_delete = new KeyframePopupDelete(mwindow, this));
88         add_item(key_copy = new KeyframePopupCopy(mwindow, this));
89
90         key_edit   = new KeyframePopupEdit(mwindow, this);
91         key_mbar   = new BC_MenuItem("-");
92         key_smooth = new KeyframePopupCurveMode(mwindow, this, FloatAuto::SMOOTH);
93         key_linear = new KeyframePopupCurveMode(mwindow, this, FloatAuto::LINEAR);
94         key_free_t = new KeyframePopupCurveMode(mwindow, this, FloatAuto::TFREE );
95         key_free   = new KeyframePopupCurveMode(mwindow, this, FloatAuto::FREE  );
96 }
97
98 int KeyframePopup::update(Plugin *plugin, KeyFrame *keyframe)
99 {
100         key_show->set_text(_("Show Plugin Settings"));
101         this->keyframe_plugin = plugin;
102         this->keyframe_auto = keyframe;
103         this->keyframe_autos = 0;
104         this->keyframe_automation = 0;
105         handle_curve_mode(0, 0);
106         return 0;
107 }
108
109 int KeyframePopup::update(Automation *automation, Autos *autos, Auto *auto_keyframe)
110 {
111         key_show->set_text(_(GWindowGUI::auto_text[autos->autoidx]));
112         this->keyframe_plugin = 0;
113         this->keyframe_automation = automation;
114         this->keyframe_autos = autos;
115         this->keyframe_auto = auto_keyframe;
116         handle_curve_mode(autos, auto_keyframe);
117
118         /* snap to cursor */
119         double current_position = mwindow->edl->local_session->get_selectionstart(1);
120         double new_position = keyframe_automation->track->from_units(keyframe_auto->position);
121         mwindow->edl->local_session->set_selectionstart(new_position);
122         mwindow->edl->local_session->set_selectionend(new_position);
123         if (current_position != new_position)
124         {
125                 mwindow->edl->local_session->set_selectionstart(new_position);
126                 mwindow->edl->local_session->set_selectionend(new_position);
127                 mwindow->gui->lock_window();
128                 mwindow->gui->update(1, 1, 1, 1, 1, 1, 0);
129                 mwindow->gui->unlock_window();
130         }
131         return 0;
132 }
133
134 void KeyframePopup::handle_curve_mode(Autos *autos, Auto *auto_keyframe)
135 // determines the type of automation node. if floatauto, adds
136 // menu entries showing the curve mode of the node
137 {
138         deactivate();
139         if( !key_edit_displayed && keyframe_plugin ) {
140                 add_item(key_edit);
141                 key_edit_displayed = true;
142         }
143         else if( key_edit_displayed && !keyframe_plugin ) {
144                 remove_item(key_edit);
145                 key_edit_displayed = false;
146         }
147
148         if(!key_mode_displayed && autos && autos->get_type() == AUTOMATION_TYPE_FLOAT)
149         { // append additional menu entries showing the curve_mode
150                 add_item(key_mbar);
151                 add_item(key_smooth);
152                 add_item(key_linear);
153                 add_item(key_free_t);
154                 add_item(key_free);
155                 key_mode_displayed = true;
156         }
157         else if(key_mode_displayed && (!autos || autos->get_type() != AUTOMATION_TYPE_FLOAT))
158         { // remove additional menu entries
159                 remove_item(key_free);
160                 remove_item(key_free_t);
161                 remove_item(key_linear);
162                 remove_item(key_smooth);
163                 remove_item(key_mbar);
164                 key_mode_displayed = false;
165         }
166         if(key_mode_displayed && auto_keyframe)
167         { // set checkmarks to display current mode
168                 key_smooth->toggle_mode((FloatAuto*)auto_keyframe);
169                 key_linear->toggle_mode((FloatAuto*)auto_keyframe);
170                 key_free_t->toggle_mode((FloatAuto*)auto_keyframe);
171                 key_free  ->toggle_mode((FloatAuto*)auto_keyframe);
172         }
173         activate();
174 }
175
176 KeyframePopupDelete::KeyframePopupDelete(MWindow *mwindow, KeyframePopup *popup)
177  : BC_MenuItem(_("Delete keyframe"))
178 {
179         this->mwindow = mwindow;
180         this->popup = popup;
181 }
182
183 KeyframePopupDelete::~KeyframePopupDelete()
184 {
185 }
186
187 int KeyframePopupDelete::handle_event()
188 {
189         mwindow->undo->update_undo_before(_("delete keyframe"), 0);
190         delete popup->keyframe_auto;
191         mwindow->undo->update_undo_after(_("delete keyframe"), LOAD_ALL);
192
193         mwindow->save_backup();
194         mwindow->gui->update(0, 1,      // 1 for incremental drawing.  2 for full refresh
195                 0, 0, 0, 0, 0);
196         mwindow->update_plugin_guis();
197         mwindow->restart_brender();
198         mwindow->sync_parameters(CHANGE_EDL);
199
200         return 1;
201 }
202
203 KeyframePopupHide::KeyframePopupHide(MWindow *mwindow, KeyframePopup *popup)
204  : BC_MenuItem(_("Hide keyframe type"))
205 {
206         this->mwindow = mwindow;
207         this->popup = popup;
208 }
209
210 KeyframePopupHide::~KeyframePopupHide()
211 {
212 }
213
214 int KeyframePopupHide::handle_event()
215 {
216         if( popup->keyframe_autos )
217                 mwindow->set_auto_visibility(popup->keyframe_autos, 0);
218         return 1;
219 }
220
221 KeyframePopupShow::KeyframePopupShow(MWindow *mwindow, KeyframePopup *popup)
222  : BC_MenuItem(_("Show keyframe settings"))
223 {
224         this->mwindow = mwindow;
225         this->popup = popup;
226 }
227
228 KeyframePopupShow::~KeyframePopupShow()
229 {
230 }
231
232 int KeyframePopupShow::handle_event()
233 {
234         MWindowGUI *mgui = mwindow->gui;
235         CWindowGUI *cgui = mwindow->cwindow->gui;
236         int cx = mgui->get_relative_cursor_x()+15, cy = mgui->get_relative_cursor_y()-15;
237         delete mgui->keyvalue_popup;
238         mgui->keyvalue_popup = 0;
239
240         if( popup->keyframe_plugin ) {
241                 mwindow->update_plugin_guis();
242                 mwindow->show_plugin(popup->keyframe_plugin);
243         }
244         else if( popup->keyframe_automation ) {
245                 cgui->lock_window();
246                 int show_window = 1;
247
248                 switch( popup->keyframe_autos->autoidx ) {
249                 case AUTOMATION_CAMERA_X:
250                 case AUTOMATION_CAMERA_Y:
251                 case AUTOMATION_CAMERA_Z: {
252                         cgui->set_operation(CWINDOW_CAMERA);
253                         break; }
254
255                 case AUTOMATION_PROJECTOR_X:
256                 case AUTOMATION_PROJECTOR_Y:
257                 case AUTOMATION_PROJECTOR_Z: {
258                         cgui->set_operation(CWINDOW_PROJECTOR);
259                         break; }
260
261                 case AUTOMATION_MASK: {
262                         cgui->set_operation(CWINDOW_MASK);
263                         break; }
264
265                 default: {
266                         show_window = 0;
267                         PatchGUI *patchgui = mwindow->get_patchgui(popup->keyframe_automation->track);
268                         if( !patchgui ) break;
269
270                         switch( popup->keyframe_autos->autoidx ) {
271                         case AUTOMATION_MODE: {
272                                 VKeyModePatch *mode = new VKeyModePatch(mwindow, (VPatchGUI *)patchgui);
273                                 mgui->add_subwindow(mode);
274                                 mode->create_objects();
275                                 mode->activate_menu();
276                                 mgui->keyvalue_popup = mode;
277                         break; }
278
279                         case AUTOMATION_PAN: {
280                                 AKeyPanPatch *pan = new AKeyPanPatch(mwindow, (APatchGUI *)patchgui);
281                                 mgui->add_subwindow(pan);
282                                 pan->create_objects();
283                                 pan->activate(cx, cy);
284                                 mgui->keyvalue_popup = pan;
285                         break; }
286
287                         case AUTOMATION_FADE: {
288                                 switch( patchgui->data_type ) {
289                                 case TRACK_AUDIO: {
290                                         AKeyFadePatch *fade = new AKeyFadePatch(mwindow, (APatchGUI *)patchgui, cx, cy);
291                                         mgui->add_subwindow(fade);
292                                         fade->create_objects();
293                                         mgui->keyvalue_popup = fade;
294                                         break; }
295                                 case TRACK_VIDEO: {
296                                         VKeyFadePatch *fade = new VKeyFadePatch(mwindow, (VPatchGUI *)patchgui, cx, cy);
297                                         mgui->add_subwindow(fade);
298                                         fade->create_objects();
299                                         mgui->keyvalue_popup = fade;
300                                         break; }
301                                 }
302                                 break; }
303
304                         case AUTOMATION_SPEED: {
305                                 KeySpeedPatch *speed = new KeySpeedPatch(mwindow, patchgui, cx, cy);
306                                 mgui->add_subwindow(speed);
307                                 speed->create_objects();
308                                 mgui->keyvalue_popup = speed;
309                                 break; }
310
311                         case AUTOMATION_MUTE: {
312                                 KeyMutePatch *mute = new KeyMutePatch(mwindow, (APatchGUI *)patchgui, cx, cy);
313                                 mgui->add_subwindow(mute);
314                                 mute->create_objects();
315                                 mgui->keyvalue_popup = mute;
316                                 break; }
317                         }
318                         break; }
319                 }
320
321 // ensure bringing to front
322                 if( show_window ) {
323                         mwindow->show_cwindow();
324                         CPanelToolWindow *panel_tool_window =
325                                 (CPanelToolWindow *)cgui->composite_panel->operation[CWINDOW_TOOL_WINDOW];
326                         panel_tool_window->set_shown(0);
327                         panel_tool_window->set_shown(1);
328                 }
329                 cgui->unlock_window();
330         }
331         return 1;
332 }
333
334
335
336 KeyframePopupCopy::KeyframePopupCopy(MWindow *mwindow, KeyframePopup *popup)
337  : BC_MenuItem(_("Copy keyframe"))
338 {
339         this->mwindow = mwindow;
340         this->popup = popup;
341 }
342
343 KeyframePopupCopy::~KeyframePopupCopy()
344 {
345 }
346
347 int KeyframePopupCopy::handle_event()
348 {
349 /*
350         FIXME:
351         we want to copy just keyframe under cursor, NOT all keyframes at this frame
352         - very hard to do, so this is good approximation for now...
353 */
354
355 #if 0
356         if (popup->keyframe_automation)
357         {
358                 FileXML file;
359                 EDL *edl = mwindow->edl;
360                 Track *track = popup->keyframe_automation->track;
361                 int64_t position = popup->keyframe_auto->position;
362                 AutoConf autoconf;
363 // first find out type of our auto
364                 autoconf.set_all(0);
365                 if (popup->keyframe_autos == (Autos *)popup->keyframe_automation->projector_autos)
366                         autoconf.projector = 1;
367                 else if (popup->keyframe_autos == (Autos *)popup->keyframe_automation->pzoom_autos)
368                         autoconf.pzoom = 1;
369                 else if (popup->keyframe_autos == (Autos *)popup->keyframe_automation->camera_autos)
370                         autoconf.camera = 1;
371                 else if (popup->keyframe_autos == (Autos *)popup->keyframe_automation->czoom_autos)
372                         autoconf.czoom = 1;
373                 else if (popup->keyframe_autos == (Autos *)popup->keyframe_automation->mode_autos)
374                         autoconf.mode = 1;
375                 else if (popup->keyframe_autos == (Autos *)popup->keyframe_automation->mask_autos)
376                         autoconf.mask = 1;
377                 else if (popup->keyframe_autos == (Autos *)popup->keyframe_automation->pan_autos)
378                         autoconf.pan = 1;
379                 else if (popup->keyframe_autos == (Autos *)popup->keyframe_automation->fade_autos)
380                         autoconf.fade = 1;
381                 else if (popup->keyframe_autos == (Autos *)popup->keyframe_automation->mute_autos)
382                         autoconf.mute = 1;
383
384
385 // now create a clipboard
386                 file.tag.set_title("AUTO_CLIPBOARD");
387                 file.tag.set_property("LENGTH", 0);
388                 file.tag.set_property("FRAMERATE", edl->session->frame_rate);
389                 file.tag.set_property("SAMPLERATE", edl->session->sample_rate);
390                 file.append_tag();
391                 file.append_newline();
392                 file.append_newline();
393
394 /*              track->copy_automation(position,
395                         position,
396                         &file,
397                         0,
398                         0);
399                         */
400                 file.tag.set_title("TRACK");
401 // Video or audio
402                 track->save_header(&file);
403                 file.append_tag();
404                 file.append_newline();
405
406                 track->automation->copy(position,
407                         position,
408                         &file,
409                         0,
410                         0,
411                         &autoconf);
412                 file.tag.set_title("/TRACK");
413                 file.append_tag();
414                 file.append_newline();
415                 file.append_newline();
416                 file.append_newline();
417                 file.append_newline();
418
419                 file.tag.set_title("/AUTO_CLIPBOARD");
420                 file.append_tag();
421                 file.append_newline();
422                 file.terminate_string();
423
424                 mwindow->gui->lock_window();
425                 mwindow->gui->to_clipboard(file.string, strlen(file.string), SECONDARY_SELECTION);
426                 mwindow->gui->unlock_window();
427
428         } else
429 #endif
430                 mwindow->copy_automation();
431         return 1;
432 }
433
434
435
436 KeyframePopupCurveMode::KeyframePopupCurveMode(
437         MWindow *mwindow,
438         KeyframePopup *popup,
439         int curve_mode)
440  : BC_MenuItem( get_labeltext(curve_mode))
441 {
442         this->curve_mode = curve_mode;
443         this->mwindow = mwindow;
444         this->popup = popup;
445 }
446
447 KeyframePopupCurveMode::~KeyframePopupCurveMode() { }
448
449
450 const char* KeyframePopupCurveMode::get_labeltext(int mode)
451 {
452         switch(mode) {
453         case FloatAuto::SMOOTH: return _("smooth curve");
454         case FloatAuto::LINEAR: return _("linear segments");
455         case FloatAuto::TFREE:  return _("tangent edit");
456         case FloatAuto::FREE:   return _("disjoint edit");
457         }
458         return _("misconfigured");
459 }
460
461
462 void KeyframePopupCurveMode::toggle_mode(FloatAuto *keyframe)
463 {
464         set_checked(curve_mode == keyframe->curve_mode);
465 }
466
467
468 int KeyframePopupCurveMode::handle_event()
469 {
470         if (popup->keyframe_autos &&
471             popup->keyframe_autos->get_type() == AUTOMATION_TYPE_FLOAT)
472         {
473                 mwindow->undo->update_undo_before(_("change keyframe curve mode"), 0);
474                 ((FloatAuto*)popup->keyframe_auto)->
475                         change_curve_mode((FloatAuto::t_mode)curve_mode);
476
477                 // if we switched to some "auto" mode, this may imply a
478                 // real change to parameters, so this needs to be undoable...
479                 mwindow->undo->update_undo_after(_("change keyframe curve mode"), LOAD_ALL);
480                 mwindow->save_backup();
481
482                 mwindow->gui->update(0, 1, 0,0,0,0,0); // incremental redraw for canvas
483                 mwindow->cwindow->update(0,0, 1, 0,0); // redraw tool window in compositor
484                 mwindow->update_plugin_guis();
485                 mwindow->restart_brender();
486                 mwindow->sync_parameters(CHANGE_EDL);
487         }
488         return 1;
489 }
490
491
492 KeyframePopupEdit::KeyframePopupEdit(MWindow *mwindow, KeyframePopup *popup)
493  : BC_MenuItem(_("Edit Params..."))
494 {
495         this->mwindow = mwindow;
496         this->popup = popup;
497 }
498
499 int KeyframePopupEdit::handle_event()
500 {
501         mwindow->show_keyframe_gui(popup->keyframe_plugin);
502         return 1;
503 }
504
505
506 KeyframeHidePopup::KeyframeHidePopup(MWindow *mwindow, MWindowGUI *gui)
507  : BC_PopupMenu(0, 0, 0, "", 0)
508 {
509         this->mwindow = mwindow;
510         this->gui = gui;
511         this->keyframe_autos = 0;
512 }
513
514 KeyframeHidePopup::~KeyframeHidePopup()
515 {
516 }
517
518 void KeyframeHidePopup::create_objects()
519 {
520         add_item(new KeyframeHideItem(mwindow, this));
521 }
522
523 int KeyframeHidePopup::update(Autos *autos)
524 {
525         this->keyframe_autos = autos;
526         return 0;
527 }
528
529 KeyframeHideItem::KeyframeHideItem(MWindow *mwindow, KeyframeHidePopup *popup)
530  : BC_MenuItem(_("Hide keyframe type"))
531 {
532         this->mwindow = mwindow;
533         this->popup = popup;
534 }
535
536
537 int KeyframeHideItem::handle_event()
538 {
539         if( popup->keyframe_autos )
540                 mwindow->set_auto_visibility(popup->keyframe_autos, 0);
541         return 1;
542 }
543
544
545
546 KeyMutePatch::KeyMutePatch(MWindow *mwindow, PatchGUI *patch, int x, int y)
547  : BC_SubWindow(x, y, 100, 20, GWindowGUI::auto_colors[AUTOMATION_MUTE])
548 {
549         this->mwindow = mwindow;
550         this->patch = patch;
551 }
552
553 void KeyMutePatch::create_objects()
554 {
555         key_mute_checkbox = new KeyMuteValue(this);
556         add_subwindow(key_mute_checkbox);
557         key_mute_checkbox->activate();
558         show_window();
559 }
560
561 KeyMuteValue::KeyMuteValue(KeyMutePatch *key_mute_patch)
562  : BC_CheckBox(0,0, key_mute_patch->mwindow->
563         get_int_auto(key_mute_patch->patch, AUTOMATION_MUTE)->value,
564         _("Mute"), MEDIUMFONT, RED)
565 {
566         this->key_mute_patch = key_mute_patch;
567 }
568
569 int KeyMuteValue::button_release_event()
570 {
571         BC_CheckBox::button_release_event();
572         return 0;
573 }
574
575 void KeyMuteValue::update_edl()
576 {
577         MWindow *mwindow = key_mute_patch->mwindow;
578         PatchGUI *patch = key_mute_patch->patch;
579         double position = mwindow->edl->local_session->get_selectionstart(1);
580         Autos *mute_autos = patch->track->automation->autos[AUTOMATION_MUTE];
581         int need_undo = !mute_autos->auto_exists_for_editing(position);
582         mwindow->undo->update_undo_before(_("mute"), need_undo ? 0 : this);
583         IntAuto *current = (IntAuto*)mute_autos->get_auto_for_editing(position);
584         current->value = this->get_value();
585         mwindow->undo->update_undo_after(_("mute"), LOAD_AUTOMATION);
586 }
587
588 int KeyMuteValue::handle_event()
589 {
590         MWindow *mwindow = key_mute_patch->mwindow;
591         PatchGUI *patch = key_mute_patch->patch;
592         patch->change_source = 1;
593         update_edl();
594         patch->change_source = 0;
595         mwindow->sync_parameters(CHANGE_PARAMS);
596         if(mwindow->edl->session->auto_conf->autos[AUTOMATION_MUTE]) {
597                 mwindow->gui->update_patchbay();
598                 mwindow->gui->draw_overlays(1);
599         }
600         return 1;
601 }
602
603 KeySpeedPatch::KeySpeedPatch(MWindow *mwindow, PatchGUI *patch, int x, int y)
604  : BC_SubWindow(x,y, 200,20, GWindowGUI::auto_colors[AUTOMATION_SPEED])
605 {
606         this->mwindow = mwindow;
607         this->patch = patch;
608 }
609
610 void KeySpeedPatch::create_objects()
611 {
612         key_speed_slider = new KeySpeedValue(this);
613         add_subwindow(key_speed_slider);
614         key_speed_slider->activate();
615         show_window();
616 }
617
618 KeySpeedValue::KeySpeedValue(KeySpeedPatch *key_speed_patch)
619  : BC_FSlider(0,0, 0, key_speed_patch->get_w(), key_speed_patch->get_w(),
620         key_speed_patch->mwindow->edl->local_session->automation_mins[AUTOGROUPTYPE_SPEED],
621         key_speed_patch->mwindow->edl->local_session->automation_maxs[AUTOGROUPTYPE_SPEED],
622         key_speed_patch->mwindow->get_float_auto(key_speed_patch->patch, AUTOMATION_SPEED)->get_value())
623 {
624         this->key_speed_patch = key_speed_patch;
625         set_precision(0.01);
626 }
627
628 KeySpeedValue::~KeySpeedValue()
629 {
630 }
631
632 int KeySpeedValue::button_release_event()
633 {
634         BC_FSlider::button_release_event();
635         return 0;
636 }
637
638 void KeySpeedValue::update_edl()
639 {
640         MWindow *mwindow = key_speed_patch->mwindow;
641         PatchGUI *patch = key_speed_patch->patch;
642         double position = mwindow->edl->local_session->get_selectionstart(1);
643         Autos *speed_autos = patch->track->automation->autos[AUTOMATION_SPEED];
644         int need_undo = !speed_autos->auto_exists_for_editing(position);
645         mwindow->undo->update_undo_before(_("speed"), need_undo ? 0 : this);
646         FloatAuto *current = (FloatAuto*)speed_autos->get_auto_for_editing(position);
647         current->set_value(get_value());
648         mwindow->undo->update_undo_after(_("speed"), LOAD_AUTOMATION);
649 }
650
651 int KeySpeedValue::handle_event()
652 {
653         MWindow *mwindow = key_speed_patch->mwindow;
654         PatchGUI *patch = key_speed_patch->patch;
655         if( shift_down() ) {
656                 update(1.0);
657                 set_tooltip(get_caption());
658         }
659
660         patch->change_source = 1;
661         update_edl();
662         patch->change_source = 0;
663         mwindow->sync_parameters(CHANGE_PARAMS);
664         if(mwindow->edl->session->auto_conf->autos[AUTOMATION_SPEED]) {
665                 mwindow->gui->draw_overlays(1);
666         }
667         return 1;
668 }
669