4 * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
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.
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.
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
23 #include "automation.h"
25 #include "edlsession.h"
26 #include "floatauto.h"
27 #include "floatautos.h"
28 #include "gwindowgui.h"
32 #include "localsession.h"
33 #include "mainsession.h"
36 #include "mwindowgui.h"
37 #include "overlayframe.inc"
40 #include "trackcanvas.h"
41 #include "vpatchgui.h"
50 VPatchGUI::VPatchGUI(MWindow *mwindow, PatchBay *patchbay, VTrack *track, int x, int y)
51 : PatchGUI(mwindow, patchbay, track, x, y)
53 data_type = TRACK_VIDEO;
59 VPatchGUI::~VPatchGUI()
65 void VPatchGUI::create_objects()
70 int VPatchGUI::reposition(int x, int y)
73 int y1 = PatchGUI::reposition(x, y);
75 if(fade) fade->reposition_window(fade->get_x(),
78 y1 += mwindow->theme->fade_h;
80 if(mode) mode->reposition_window(mode->get_x(),
83 if(nudge) nudge->reposition_window(nudge->get_x(),
87 y1 += mwindow->theme->mode_h;
92 int VPatchGUI::update(int x, int y)
94 int h = track->vertical_span(mwindow->theme);
96 int y1 = PatchGUI::update(x, y);
100 if(h - y1 < mwindow->theme->fade_h)
107 fade->update(fade->get_w(), mwindow->get_float_auto(this, AUTOMATION_FADE)->get_value(),
108 mwindow->edl->local_session->automation_mins[AUTOGROUPTYPE_VIDEO_FADE],
109 mwindow->edl->local_session->automation_maxs[AUTOGROUPTYPE_VIDEO_FADE]);
113 if(h - y1 >= mwindow->theme->fade_h)
115 patchbay->add_subwindow(fade = new VFadePatch(mwindow,
119 patchbay->get_w() - 10));
121 y1 += mwindow->theme->fade_h;
125 if(h - y1 < mwindow->theme->mode_h)
134 mode->update(mwindow->get_int_auto(this, AUTOMATION_MODE)->value);
139 if(h - y1 >= mwindow->theme->mode_h)
141 patchbay->add_subwindow(mode = new VModePatch(mwindow,
145 mode->create_objects();
146 x1 += mode->get_w() + 10;
147 patchbay->add_subwindow(nudge = new NudgePatch(mwindow,
151 patchbay->get_w() - x1 - 10));
158 y1 += mwindow->theme->mode_h;
165 void VPatchGUI::synchronize_fade(float value_change)
167 if(fade && !change_source)
169 fade->update(Units::to_int64(fade->get_value() + value_change));
175 VFadePatch::VFadePatch(MWindow *mwindow, VPatchGUI *patch, int x, int y, int w)
176 : BC_ISlider(x, y, 0, w, w,
177 mwindow->edl->local_session->automation_mins[AUTOGROUPTYPE_VIDEO_FADE],
178 mwindow->edl->local_session->automation_maxs[AUTOGROUPTYPE_VIDEO_FADE],
179 (int64_t)mwindow->get_float_auto(patch,AUTOMATION_FADE)->get_value())
181 this->mwindow = mwindow;
185 float VFadePatch::update_edl()
188 double position = mwindow->edl->local_session->get_selectionstart(1);
189 Autos *fade_autos = patch->vtrack->automation->autos[AUTOMATION_FADE];
190 int need_undo = !fade_autos->auto_exists_for_editing(position);
192 mwindow->undo->update_undo_before(_("fade"), need_undo ? 0 : this);
194 current = (FloatAuto*)fade_autos->get_auto_for_editing(position);
196 float result = get_value() - current->get_value();
197 current->set_value(get_value());
199 mwindow->undo->update_undo_after(_("fade"), LOAD_AUTOMATION);
204 int VFadePatch::handle_event()
209 set_tooltip(get_caption());
212 patch->change_source = 1;
214 float change = update_edl();
216 if(patch->track->gang && patch->track->record)
217 patch->patchbay->synchronize_faders(change, TRACK_VIDEO, patch->track);
219 patch->change_source = 0;
222 mwindow->gui->unlock_window();
223 mwindow->restart_brender();
224 mwindow->sync_parameters(CHANGE_PARAMS);
225 mwindow->gui->lock_window("VFadePatch::handle_event");
226 if(mwindow->edl->session->auto_conf->autos[AUTOMATION_FADE])
228 mwindow->gui->draw_overlays(1);
234 VKeyFadePatch::VKeyFadePatch(MWindow *mwindow, VPatchGUI *patch, int x, int y)
235 : BC_SubWindow(x,y, patch->patchbay->get_w(),20,
236 GWindowGUI::auto_colors[AUTOMATION_FADE])
238 this->mwindow = mwindow;
242 void VKeyFadePatch::create_objects()
244 vkey_fade_value = new VKeyFadeValue(this);
245 add_subwindow(vkey_fade_value);
246 vkey_fade_value->activate();
250 VKeyFadeValue::VKeyFadeValue(VKeyFadePatch *vkey_fade_patch)
251 : VFadePatch(vkey_fade_patch->mwindow, vkey_fade_patch->patch,
252 0,0, vkey_fade_patch->get_w())
254 this->vkey_fade_patch = vkey_fade_patch;
257 int VKeyFadeValue::button_release_event()
259 VFadePatch::button_release_event();
263 int VKeyFadeValue::handle_event()
265 VPatchGUI *patch = vkey_fade_patch->patch;
266 int ret = VFadePatch::handle_event();
267 VFadePatch *fade = patch->fade;
269 fade->update(get_value());
277 VModePatch::VModePatch(MWindow *mwindow, VPatchGUI *patch, int x, int y)
278 : BC_PopupMenu(x, y, patch->patchbay->mode_icons[0]->get_w() + 20,
279 "", 1, mwindow->theme->get_image_set("mode_popup", 0), 10)
281 this->mwindow = mwindow;
283 this->mode = mwindow->get_int_auto(patch, AUTOMATION_MODE)->value;
284 set_icon(patch->patchbay->mode_to_icon(this->mode));
285 set_tooltip(_("Overlay mode"));
288 VModePatch::VModePatch(MWindow *mwindow, VPatchGUI *patch)
289 : BC_PopupMenu(0, 0, 0, "", 0)
291 this->mwindow = mwindow;
293 this->mode = mwindow->get_int_auto(patch, AUTOMATION_MODE)->value;
297 int VModePatch::handle_event()
300 // for(int i = 0; i < total_items(); i++)
302 // VModePatchItem *item = (VModePatchItem*)get_item(i);
303 // if(item->mode == mode)
304 // item->set_checked(1);
306 // item->set_checked(0);
312 double position = mwindow->edl->local_session->get_selectionstart(1);
313 Autos *mode_autos = patch->vtrack->automation->autos[AUTOMATION_MODE];
314 int need_undo = !mode_autos->auto_exists_for_editing(position);
316 mwindow->undo->update_undo_before(_("mode"), need_undo ? 0 : this);
318 current = (IntAuto*)mode_autos->get_auto_for_editing(position);
319 current->value = mode;
321 mwindow->undo->update_undo_after(_("mode"), LOAD_AUTOMATION);
323 mwindow->sync_parameters(CHANGE_PARAMS);
325 if(mwindow->edl->session->auto_conf->autos[AUTOMATION_MODE])
327 mwindow->gui->draw_overlays(1);
329 mwindow->session->changes_made = 1;
333 void VModePatch::create_objects()
335 VModePatchItem *mode_item;
336 VModePatchSubMenu *submenu;
337 add_item(mode_item = new VModePatchItem(this, mode_to_text(TRANSFER_NORMAL), TRANSFER_NORMAL));
338 add_item(mode_item = new VModePatchItem(this, _("Arithmetic..."), -1));
339 mode_item->add_submenu(submenu = new VModePatchSubMenu(mode_item));
340 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_ADDITION), TRANSFER_ADDITION));
341 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_SUBTRACT), TRANSFER_SUBTRACT));
342 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_DIVIDE), TRANSFER_DIVIDE));
343 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_MULTIPLY), TRANSFER_MULTIPLY));
344 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_REPLACE), TRANSFER_REPLACE));
345 add_item(mode_item = new VModePatchItem(this, _("PorterDuff..."), -1));
346 mode_item->add_submenu(submenu = new VModePatchSubMenu(mode_item));
347 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_DST), TRANSFER_DST));
348 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_DST_ATOP), TRANSFER_DST_ATOP));
349 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_DST_IN), TRANSFER_DST_IN));
350 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_DST_OUT), TRANSFER_DST_OUT));
351 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_DST_OVER), TRANSFER_DST_OVER));
352 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_SRC), TRANSFER_SRC));
353 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_SRC_ATOP), TRANSFER_SRC_ATOP));
354 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_SRC_IN), TRANSFER_SRC_IN));
355 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_SRC_OUT), TRANSFER_SRC_OUT));
356 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_SRC_OVER), TRANSFER_SRC_OVER));
357 add_item(mode_item = new VModePatchItem(this, _("Logical..."), -1));
358 mode_item->add_submenu(submenu = new VModePatchSubMenu(mode_item));
359 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_MIN), TRANSFER_MIN));
360 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_MAX), TRANSFER_MAX));
361 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_DARKEN), TRANSFER_DARKEN));
362 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_LIGHTEN), TRANSFER_LIGHTEN));
363 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_AND), TRANSFER_AND));
364 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_OR), TRANSFER_OR));
365 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_XOR), TRANSFER_XOR));
366 add_item(mode_item = new VModePatchItem(this, _("graphic art..."), -1));
367 mode_item->add_submenu(submenu = new VModePatchSubMenu(mode_item));
368 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_OVERLAY), TRANSFER_OVERLAY));
369 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_SCREEN), TRANSFER_SCREEN));
370 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_BURN), TRANSFER_BURN));
371 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_DODGE), TRANSFER_DODGE));
372 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_DIFFERENCE),TRANSFER_DIFFERENCE));
373 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_HARDLIGHT),TRANSFER_HARDLIGHT));
374 submenu->add_submenuitem(new VModeSubMenuItem(submenu, mode_to_text(TRANSFER_SOFTLIGHT),TRANSFER_SOFTLIGHT));
377 void VModePatch::update(int mode)
379 set_icon(patch->patchbay->mode_to_icon(mode));
380 for(int i = 0; i < total_items(); i++)
382 VModePatchItem *item = (VModePatchItem*)get_item(i);
383 item->set_checked(item->mode == mode);
384 VModePatchSubMenu *submenu = (VModePatchSubMenu *)item->get_submenu();
385 if( !submenu ) continue;
386 int n = submenu->total_items();
387 for( int j=0; j<n; ++j ) {
388 VModePatchItem *subitem = (VModePatchItem*)submenu->get_item(j);
389 subitem->set_checked(subitem->mode == mode);
395 const char* VModePatch::mode_to_text(int mode)
398 case TRANSFER_NORMAL: return _("Normal");
399 case TRANSFER_ADDITION: return _("Addition");
400 case TRANSFER_SUBTRACT: return _("Subtract");
401 case TRANSFER_MULTIPLY: return _("Multiply");
402 case TRANSFER_DIVIDE: return _("Divide");
403 case TRANSFER_REPLACE: return _("Replace");
404 case TRANSFER_MAX: return _("Max");
405 case TRANSFER_MIN: return _("Min");
406 case TRANSFER_DARKEN: return _("Darken");
407 case TRANSFER_LIGHTEN: return _("Lighten");
408 case TRANSFER_DST: return _("Dst");
409 case TRANSFER_DST_ATOP: return _("DstAtop");
410 case TRANSFER_DST_IN: return _("DstIn");
411 case TRANSFER_DST_OUT: return _("DstOut");
412 case TRANSFER_DST_OVER: return _("DstOver");
413 case TRANSFER_SRC: return _("Src");
414 case TRANSFER_SRC_ATOP: return _("SrcAtop");
415 case TRANSFER_SRC_IN: return _("SrcIn");
416 case TRANSFER_SRC_OUT: return _("SrcOut");
417 case TRANSFER_SRC_OVER: return _("SrcOver");
418 case TRANSFER_AND: return _("And");
419 case TRANSFER_OR: return _("Or");
420 case TRANSFER_XOR: return _("Xor");
421 case TRANSFER_OVERLAY: return _("Overlay");
422 case TRANSFER_SCREEN: return _("Screen");
423 case TRANSFER_BURN: return _("Burn");
424 case TRANSFER_DODGE: return _("Dodge");
425 case TRANSFER_HARDLIGHT: return _("Hardlight");
426 case TRANSFER_SOFTLIGHT: return _("Softlight");
427 case TRANSFER_DIFFERENCE: return _("Difference");
434 VModePatchItem::VModePatchItem(VModePatch *popup, const char *text, int mode)
439 if(this->mode == popup->mode) set_checked(1);
442 int VModePatchItem::handle_event()
446 // popup->set_icon(popup->patch->patchbay->mode_to_icon(mode));
447 popup->handle_event();
452 VModePatchSubMenu::VModePatchSubMenu(VModePatchItem *mode_item)
454 this->mode_item = mode_item;
456 VModePatchSubMenu::~VModePatchSubMenu()
460 VModeSubMenuItem::VModeSubMenuItem(VModePatchSubMenu *submenu, const char *text, int mode)
463 this->submenu = submenu;
465 VModePatch *popup = submenu->mode_item->popup;
466 if(this->mode == popup->mode) set_checked(1);
468 VModeSubMenuItem::~VModeSubMenuItem()
472 int VModeSubMenuItem::handle_event()
474 VModePatch *popup = submenu->mode_item->popup;
476 // popup->set_icon(popup->patch->patchbay->mode_to_icon(mode));
477 popup->handle_event();
482 VKeyModePatch::VKeyModePatch(MWindow *mwindow, VPatchGUI *patch)
483 : VModePatch(mwindow, patch)
487 int VKeyModePatch::button_release_event()
489 VModePatch::button_release_event();
493 int VKeyModePatch::handle_event()
495 int ret = VModePatch::handle_event();
496 VModePatch *mode = patch->mode;
498 mode->update(this->mode);