span keyframes toggle, rect_audio tweaks, fix playbackengine clear output for audio...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / cwindowgui.C
1
2 /*
3  * CINELERRA
4  * Copyright (C) 1997-2014 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 "automation.h"
23 #include "autos.h"
24 #include "bcsignals.h"
25 #include "canvas.h"
26 #include "clip.h"
27 #include "cpanel.h"
28 #include "cplayback.h"
29 #include "ctimebar.h"
30 #include "cursors.h"
31 #include "cwindowgui.h"
32 #include "cwindow.h"
33 #include "cwindowtool.h"
34 #include "editpanel.h"
35 #include "edl.h"
36 #include "edlsession.h"
37 #include "floatauto.h"
38 #include "floatautos.h"
39 #include "keys.h"
40 #include "language.h"
41 #include "localsession.h"
42 #include "mainclock.h"
43 #include "mainmenu.h"
44 #include "mainundo.h"
45 #include "mainsession.h"
46 #include "maskauto.h"
47 #include "maskautos.h"
48 #include "mbuttons.h"
49 #include "meterpanel.h"
50 #include "mwindowgui.h"
51 #include "mwindow.h"
52 #include "mwindow.h"
53 #include "playback3d.h"
54 #include "playtransport.h"
55 #include "theme.h"
56 #include "trackcanvas.h"
57 #include "tracks.h"
58 #include "transportque.h"
59 #include "vtrack.h"
60
61
62 static double my_zoom_table[] =
63 {
64         0.25,
65         0.33,
66         0.50,
67         0.75,
68         1.0,
69         1.5,
70         2.0,
71         3.0,
72         4.0
73 };
74
75 static int total_zooms = sizeof(my_zoom_table) / sizeof(double);
76
77
78 CWindowGUI::CWindowGUI(MWindow *mwindow, CWindow *cwindow)
79  : BC_Window(_(PROGRAM_NAME ": Compositor"),
80         mwindow->session->cwindow_x,
81         mwindow->session->cwindow_y,
82         mwindow->session->cwindow_w,
83         mwindow->session->cwindow_h,
84         100, 100, 1, 1, 1,
85         BC_WindowBase::get_resources()->bg_color,
86         mwindow->get_cwindow_display())
87 {
88         this->mwindow = mwindow;
89         this->cwindow = cwindow;
90         affected_track = 0;
91         affected_x = affected_y = affected_z = 0;
92         mask_keyframe = 0;
93         orig_mask_keyframe = new MaskAuto(0, 0);
94         affected_point = 0;
95         x_offset = y_offset = 0;
96         x_origin = y_origin = 0;
97         current_operation = CWINDOW_NONE;
98         tool_panel = 0;
99         active = 0;
100         inactive = 0;
101         crop_handle = -1; crop_translate = 0;
102         crop_origin_x = crop_origin_y = 0;
103         crop_origin_x1 = crop_origin_y1 = 0;
104         crop_origin_x2 = crop_origin_y2 = 0;
105         eyedrop_visible = 0;
106         eyedrop_x = eyedrop_y = 0;
107         ruler_origin_x = ruler_origin_y = 0;
108         ruler_handle = -1; ruler_translate = 0;
109         center_x = center_y = center_z = 0;
110         control_in_x = control_in_y = 0;
111         control_out_x = control_out_y = 0;
112         translating_zoom = 0;
113         highlighted = 0;
114 }
115
116 CWindowGUI::~CWindowGUI()
117 {
118         cwindow->stop_playback(1);
119         if(tool_panel) delete tool_panel;
120         delete meters;
121         delete composite_panel;
122         delete canvas;
123         delete transport;
124         delete edit_panel;
125         delete zoom_panel;
126         delete active;
127         delete inactive;
128         delete focus_frame;
129         delete orig_mask_keyframe;
130 }
131
132 void CWindowGUI::create_objects()
133 {
134         lock_window("CWindowGUI::create_objects");
135         set_icon(mwindow->theme->get_image("cwindow_icon"));
136
137         active = new BC_Pixmap(this, mwindow->theme->get_image("cwindow_active"));
138         inactive = new BC_Pixmap(this, mwindow->theme->get_image("cwindow_inactive"));
139         focus_frame = new VFramePng(mwindow->theme->get_image_data("cwindow_focus.png"));
140
141         mwindow->theme->get_cwindow_sizes(this, mwindow->session->cwindow_controls);
142         mwindow->theme->draw_cwindow_bg(this);
143         flash();
144
145 // Meters required by composite panel
146         meters = new CWindowMeters(mwindow,
147                 this,
148                 mwindow->theme->cmeter_x,
149                 mwindow->theme->cmeter_y,
150                 mwindow->theme->cmeter_h);
151         meters->create_objects();
152
153
154         composite_panel = new CPanel(mwindow,
155                 this,
156                 mwindow->theme->ccomposite_x,
157                 mwindow->theme->ccomposite_y,
158                 mwindow->theme->ccomposite_w,
159                 mwindow->theme->ccomposite_h);
160         composite_panel->create_objects();
161
162         canvas = new CWindowCanvas(mwindow, this);
163
164         canvas->create_objects(mwindow->edl);
165         canvas->use_cwindow();
166
167
168         add_subwindow(timebar = new CTimeBar(mwindow,
169                 this,
170                 mwindow->theme->ctimebar_x,
171                 mwindow->theme->ctimebar_y,
172                 mwindow->theme->ctimebar_w,
173                 mwindow->theme->ctimebar_h));
174         timebar->create_objects();
175
176 #ifdef USE_SLIDER
177         add_subwindow(slider = new CWindowSlider(mwindow,
178                 cwindow,
179                 mwindow->theme->cslider_x,
180                 mwindow->theme->cslider_y,
181                 mwindow->theme->cslider_w));
182 #endif
183
184         transport = new CWindowTransport(mwindow,
185                 this,
186                 mwindow->theme->ctransport_x,
187                 mwindow->theme->ctransport_y);
188         transport->create_objects();
189 #ifdef USE_SLIDER
190         transport->set_slider(slider);
191 #endif
192
193         edit_panel = new CWindowEditing(mwindow, cwindow);
194         edit_panel->set_meters(meters);
195         edit_panel->create_objects();
196
197 //      add_subwindow(clock = new MainClock(mwindow,
198 //              mwindow->theme->ctime_x,
199 //              mwindow->theme->ctime_y));
200
201         zoom_panel = new CWindowZoom(mwindow,
202                 this,
203                 mwindow->theme->czoom_x,
204                 mwindow->theme->czoom_y,
205                 mwindow->theme->czoom_w);
206         zoom_panel->create_objects();
207         zoom_panel->zoom_text->add_item(new BC_MenuItem(auto_zoom = _(AUTO_ZOOM)));
208         if( !mwindow->edl->session->cwindow_scrollbars )
209                 zoom_panel->set_text(auto_zoom);
210
211 // Must create after meter panel
212         tool_panel = new CWindowTool(mwindow, this);
213         tool_panel->Thread::start();
214
215         set_operation(mwindow->edl->session->cwindow_operation);
216         draw_status(0);
217         unlock_window();
218 }
219
220 int CWindowGUI::translation_event()
221 {
222         mwindow->session->cwindow_x = get_x();
223         mwindow->session->cwindow_y = get_y();
224         return 0;
225 }
226
227 int CWindowGUI::resize_event(int w, int h)
228 {
229         mwindow->session->cwindow_x = get_x();
230         mwindow->session->cwindow_y = get_y();
231         mwindow->session->cwindow_w = w;
232         mwindow->session->cwindow_h = h;
233
234         mwindow->theme->get_cwindow_sizes(this, mwindow->session->cwindow_controls);
235         mwindow->theme->draw_cwindow_bg(this);
236         flash(0);
237
238         composite_panel->reposition_buttons(mwindow->theme->ccomposite_x,
239                 mwindow->theme->ccomposite_y, mwindow->theme->ccomposite_h);
240
241         canvas->reposition_window(mwindow->edl,
242                 mwindow->theme->ccanvas_x,
243                 mwindow->theme->ccanvas_y,
244                 mwindow->theme->ccanvas_w,
245                 mwindow->theme->ccanvas_h);
246
247         timebar->resize_event();
248
249 #ifdef USE_SLIDER
250         slider->reposition_window(mwindow->theme->cslider_x,
251                 mwindow->theme->cslider_y,
252                 mwindow->theme->cslider_w);
253 // Recalibrate pointer motion range
254         slider->set_position();
255 #endif
256
257         transport->reposition_buttons(mwindow->theme->ctransport_x,
258                 mwindow->theme->ctransport_y);
259
260         edit_panel->reposition_buttons(mwindow->theme->cedit_x,
261                 mwindow->theme->cedit_y);
262
263 //      clock->reposition_window(mwindow->theme->ctime_x,
264 //              mwindow->theme->ctime_y);
265
266         zoom_panel->reposition_window(mwindow->theme->czoom_x,
267                 mwindow->theme->czoom_y);
268
269 //      destination->reposition_window(mwindow->theme->cdest_x,
270 //              mwindow->theme->cdest_y);
271
272         meters->reposition_window(mwindow->theme->cmeter_x,
273                 mwindow->theme->cmeter_y,
274                 -1,
275                 mwindow->theme->cmeter_h);
276
277         draw_status(0);
278
279         BC_WindowBase::resize_event(w, h);
280         return 1;
281 }
282
283 int CWindowGUI::button_press_event()
284 {
285         if( current_operation == CWINDOW_NONE &&
286             mwindow->edl != 0 && canvas->get_canvas() &&
287             mwindow->edl->session->cwindow_click2play &&
288             canvas->get_canvas()->get_cursor_over_window() ) {
289                 switch( get_buttonpress() ) {
290                 case LEFT_BUTTON:
291                         if( !cwindow->playback_engine->is_playing_back ) {
292                                 double length = mwindow->edl->tracks->total_playable_length();
293                                 double position = cwindow->playback_engine->get_tracking_position();
294                                 if( position >= length ) transport->goto_start();
295                         }
296                         return transport->forward_play->handle_event();
297                 case MIDDLE_BUTTON:
298                         if( !cwindow->playback_engine->is_playing_back ) {
299                                 double position = cwindow->playback_engine->get_tracking_position();
300                                 if( position <= 0 ) transport->goto_end();
301                         }
302                         return transport->reverse_play->handle_event();
303                 case RIGHT_BUTTON:  // activates popup
304                         break;
305                 case WHEEL_UP:
306                         return transport->frame_forward_play->handle_event();
307                 case WHEEL_DOWN:
308                         return transport->frame_reverse_play->handle_event();
309                 }
310         }
311         if(canvas->get_canvas())
312                 return canvas->button_press_event_base(canvas->get_canvas());
313         return 0;
314 }
315
316 int CWindowGUI::cursor_leave_event()
317 {
318         if(canvas->get_canvas())
319                 return canvas->cursor_leave_event_base(canvas->get_canvas());
320         return 0;
321 }
322
323 int CWindowGUI::cursor_enter_event()
324 {
325         if(canvas->get_canvas())
326                 return canvas->cursor_enter_event_base(canvas->get_canvas());
327         return 0;
328 }
329
330 int CWindowGUI::button_release_event()
331 {
332         if(canvas->get_canvas())
333                 return canvas->button_release_event();
334         return 0;
335 }
336
337 int CWindowGUI::cursor_motion_event()
338 {
339         if(canvas->get_canvas())
340         {
341                 canvas->get_canvas()->unhide_cursor();
342                 return canvas->cursor_motion_event();
343         }
344         return 0;
345 }
346
347
348
349
350
351
352
353 void CWindowGUI::draw_status(int flush)
354 {
355         if( (canvas->get_canvas() && canvas->get_canvas()->get_video_on()) ||
356                 canvas->is_processing )
357         {
358                 draw_pixmap(active,
359                         mwindow->theme->cstatus_x,
360                         mwindow->theme->cstatus_y);
361         }
362         else
363         {
364                 draw_pixmap(inactive,
365                         mwindow->theme->cstatus_x,
366                         mwindow->theme->cstatus_y);
367         }
368
369
370 // printf("CWindowGUI::draw_status %d %d %d\n", __LINE__, mwindow->theme->cstatus_x,
371 //              mwindow->theme->cstatus_y);
372         flash(mwindow->theme->cstatus_x,
373                 mwindow->theme->cstatus_y,
374                 active->get_w(),
375                 active->get_h(),
376                 flush);
377 }
378
379 float CWindowGUI::get_auto_zoom()
380 {
381         float conformed_w, conformed_h;
382         mwindow->edl->calculate_conformed_dimensions(0, conformed_w, conformed_h);
383         float zoom_x = canvas->w / conformed_w;
384         float zoom_y = canvas->h / conformed_h;
385         return zoom_x < zoom_y ? zoom_x : zoom_y;
386 }
387
388 void CWindowGUI::zoom_canvas(double value, int update_menu)
389 {
390         float x = 0, y = 0;
391         float zoom = !value ? get_auto_zoom() : value;
392         EDL *edl = mwindow->edl;
393         edl->session->cwindow_scrollbars = !value ? 0 : 1;
394         if( value ) {
395                 float cx = 0.5f * canvas->w;  x = cx;
396                 float cy = 0.5f * canvas->h;  y = cy;
397                 canvas->canvas_to_output(edl, 0, x, y);
398                 canvas->update_zoom(0, 0, zoom);
399                 float zoom_x, zoom_y, conformed_w, conformed_h;
400                 canvas->get_zooms(edl, 0, zoom_x, zoom_y, conformed_w, conformed_h);
401                 x -= cx / zoom_x;
402                 y -= cy / zoom_y;
403
404         }
405         canvas->update_zoom((int)(x+0.5), (int)(y+0.5), zoom);
406
407         if( update_menu )
408                 zoom_panel->update(value);
409         if( mwindow->edl->session->cwindow_operation == CWINDOW_ZOOM )
410                 composite_panel->cpanel_zoom->update(zoom);
411
412         canvas->reposition_window(mwindow->edl,
413                 mwindow->theme->ccanvas_x, mwindow->theme->ccanvas_y,
414                 mwindow->theme->ccanvas_w, mwindow->theme->ccanvas_h);
415         canvas->refresh(0);
416 }
417
418 void CWindowGUI::set_operation(int value)
419 {
420         switch( value ) {
421         case CWINDOW_TOOL_WINDOW:
422                 mwindow->edl->session->tool_window = !mwindow->edl->session->tool_window;
423                 composite_panel->operation[CWINDOW_TOOL_WINDOW]->update(mwindow->edl->session->tool_window);
424                 tool_panel->update_show_window();
425                 return;
426         case CWINDOW_TITLESAFE:
427                 mwindow->edl->session->safe_regions = !mwindow->edl->session->safe_regions;
428                 composite_panel->operation[CWINDOW_TITLESAFE]->update(mwindow->edl->session->safe_regions);
429                 value = mwindow->edl->session->cwindow_operation;
430                 break;
431         default:
432                 mwindow->edl->session->cwindow_operation = value;
433                 composite_panel->set_operation(value);
434                 break;
435         }
436
437         edit_panel->update();
438         tool_panel->start_tool(value);
439         canvas->refresh(0);
440 }
441
442 void CWindowGUI::update_tool()
443 {
444         tool_panel->update_values();
445 }
446
447 int CWindowGUI::close_event()
448 {
449         cwindow->hide_window();
450         return 1;
451 }
452
453
454 int CWindowGUI::keypress_event()
455 {
456         int result = 0;
457         int cwindow_operation = CWINDOW_NONE;
458
459         switch( get_keypress() ) {
460         case 'w':
461         case 'W':
462                 close_event();
463                 result = 1;
464                 break;
465         case '+':
466         case '=':
467                 keyboard_zoomin();
468                 result = 1;
469                 break;
470         case '-':
471                 keyboard_zoomout();
472                 result = 1;
473                 break;
474         case 'f':
475                 unlock_window();
476                 if( canvas->get_fullscreen() )
477                         canvas->stop_fullscreen();
478                 else
479                         canvas->start_fullscreen();
480                 lock_window("CWindowGUI::keypress_event 1");
481                 result = 1;
482                 break;
483         case 'x':
484                 if( ctrl_down() || shift_down() || alt_down() ) break;
485                 unlock_window();
486                 mwindow->gui->lock_window("CWindowGUI::keypress_event 2");
487                 mwindow->cut();
488                 mwindow->gui->unlock_window();
489                 lock_window("CWindowGUI::keypress_event 2");
490                 result = 1;
491                 break;
492         case DELETE:
493                 unlock_window();
494                 mwindow->gui->lock_window("CWindowGUI::keypress_event 2");
495                 mwindow->clear_entry();
496                 mwindow->gui->unlock_window();
497                 lock_window("CWindowGUI::keypress_event 3");
498                 result = 1;
499                 break;
500         case ESC:
501                 unlock_window();
502                 if( canvas->get_fullscreen() )
503                         canvas->stop_fullscreen();
504                 lock_window("CWindowGUI::keypress_event 4");
505                 result = 1;
506                 break;
507         case LEFT:
508                 if( !ctrl_down() ) {
509                         int alt_down = this->alt_down();
510                         int shift_down = this->shift_down();
511                         unlock_window();
512                         stop_transport(0);
513                         mwindow->gui->lock_window("CWindowGUI::keypress_event 5");
514                         if( alt_down )
515                                 mwindow->prev_edit_handle(shift_down);
516                         else
517                                 mwindow->move_left();
518                         mwindow->gui->unlock_window();
519                         lock_window("CWindowGUI::keypress_event 6");
520                         result = 1;
521                 }
522                 break;
523
524         case ',':
525                 if( !ctrl_down() && !alt_down() ) {
526                         unlock_window();
527                         stop_transport(0);
528                         mwindow->gui->lock_window("CWindowGUI::keypress_event 7");
529                         mwindow->move_left();
530                         mwindow->gui->unlock_window();
531                         lock_window("CWindowGUI::keypress_event 8");
532                         result = 1;
533                 }
534                 break;
535
536         case RIGHT:
537                 if( !ctrl_down() ) {
538                         int alt_down = this->alt_down();
539                         int shift_down = this->shift_down();
540                         unlock_window();
541                         stop_transport(0);
542                         mwindow->gui->lock_window("CWindowGUI::keypress_event 8");
543                         if( alt_down )
544                                 mwindow->next_edit_handle(shift_down);
545                         else
546                                 mwindow->move_right();
547                         mwindow->gui->unlock_window();
548                         lock_window("CWindowGUI::keypress_event 9");
549                         result = 1;
550                 }
551                 break;
552
553         case '.':
554                 if( !ctrl_down() && !alt_down() ) {
555                         unlock_window();
556                         stop_transport(0);
557                         mwindow->gui->lock_window("CWindowGUI::keypress_event 10");
558                         mwindow->move_right();
559                         mwindow->gui->unlock_window();
560                         lock_window("CWindowGUI::keypress_event 11");
561                         result = 1;
562                 }
563                 break;
564         }
565
566         if( !result && cwindow_operation < 0 && ctrl_down() && shift_down() ) {
567                 switch( get_keypress() ) {
568                 case KEY_F1 ... KEY_F4: // mainmenu, load layout
569                         resend_event(mwindow->gui);
570                         result = 1;
571                         break;
572                 }
573         }
574         if( !result && !ctrl_down() ) {
575                 switch( get_keypress() ) {
576                 case KEY_F1:
577                         if( shift_down() ) {
578                                 mwindow->toggle_camera_xyz();  result = 1;
579                         }
580                         else
581                                 cwindow_operation = CWINDOW_PROTECT;
582                         break;
583                 case KEY_F2:
584                         if( shift_down() ) {
585                                 mwindow->toggle_projector_xyz();  result = 1;
586                         }
587                         else
588                                 cwindow_operation = CWINDOW_ZOOM;
589                         break;
590                 }
591         }
592         if( !result && cwindow_operation < 0 && !ctrl_down() && !shift_down() ) {
593                 switch( get_keypress() ) {
594                 case KEY_F3:    cwindow_operation = CWINDOW_MASK;       break;
595                 case KEY_F4:    cwindow_operation = CWINDOW_RULER;      break;
596                 case KEY_F5:    cwindow_operation = CWINDOW_CAMERA;     break;
597                 case KEY_F6:    cwindow_operation = CWINDOW_PROJECTOR;  break;
598                 case KEY_F7:    cwindow_operation = CWINDOW_CROP;       break;
599                 case KEY_F8:    cwindow_operation = CWINDOW_EYEDROP;    break;
600                 case KEY_F9:    cwindow_operation = CWINDOW_TOOL_WINDOW; break;
601                 case KEY_F10:   cwindow_operation = CWINDOW_TITLESAFE;  break;
602                 }
603         }
604         if( !result && cwindow_operation < 0 && !ctrl_down() ) {
605                 switch( get_keypress() ) {
606                 case KEY_F11:
607                         if( !shift_down() )
608                                 canvas->reset_camera();
609                         else
610                                 canvas->camera_keyframe();
611                         result = 1;
612                         break;
613                 case KEY_F12:
614                         if( !shift_down() )
615                                 canvas->reset_projector();
616                         else
617                                 canvas->projector_keyframe();
618                         result = 1;
619                         break;
620                 }
621         }
622
623         if( cwindow_operation >= 0 ) {
624                 set_operation(cwindow_operation);
625                 result = 1;
626         }
627
628         if( !result )
629                 result = transport->keypress_event();
630
631         return result;
632 }
633
634
635 void CWindowGUI::reset_affected()
636 {
637         affected_x = 0;
638         affected_y = 0;
639         affected_z = 0;
640 }
641
642 void CWindowGUI::keyboard_zoomin()
643 {
644 //      if(mwindow->edl->session->cwindow_scrollbars)
645 //      {
646                 zoom_panel->zoom_tumbler->handle_up_event();
647 //      }
648 //      else
649 //      {
650 //      }
651 }
652
653 void CWindowGUI::keyboard_zoomout()
654 {
655 //      if(mwindow->edl->session->cwindow_scrollbars)
656 //      {
657                 zoom_panel->zoom_tumbler->handle_down_event();
658 //      }
659 //      else
660 //      {
661 //      }
662 }
663
664 void CWindowGUI::sync_parameters(int change_type, int redraw, int overlay)
665 {
666         if( redraw ) {
667                 update_tool();
668                 canvas->refresh(1);
669         }
670         if( change_type < 0 && !overlay ) return;
671         unlock_window();
672         if( change_type >= 0 ) {
673                 mwindow->restart_brender();
674                 mwindow->sync_parameters(change_type);
675         }
676         if( overlay ) {
677                 mwindow->gui->lock_window("CWindowGUI::sync_parameters");
678                 mwindow->gui->draw_overlays(1);
679                 mwindow->gui->unlock_window();
680         }
681         lock_window("CWindowGUI::sync_parameters");
682 }
683
684 void CWindowGUI::drag_motion()
685 {
686         if(get_hidden()) return;
687
688         if(mwindow->session->current_operation != DRAG_ASSET &&
689                 mwindow->session->current_operation != DRAG_VTRANSITION &&
690                 mwindow->session->current_operation != DRAG_VEFFECT) return;
691         int need_highlight = cursor_above() && get_cursor_over_window();
692         if( highlighted == need_highlight ) return;
693         highlighted = need_highlight;
694         canvas->refresh(1);
695 }
696
697 int CWindowGUI::drag_stop()
698 {
699         int result = 0;
700         if(get_hidden()) return 0;
701         if( !highlighted ) return 0;
702         if( mwindow->session->current_operation != DRAG_ASSET &&
703             mwindow->session->current_operation != DRAG_VTRANSITION &&
704             mwindow->session->current_operation != DRAG_VEFFECT) return 0;
705         highlighted = 0;
706         canvas->refresh(1);
707         result = 1;
708
709         if(mwindow->session->current_operation == DRAG_ASSET)
710         {
711                 if(mwindow->session->drag_assets->total ||
712                         mwindow->session->drag_clips->total)
713                 {
714                         mwindow->gui->lock_window("CWindowGUI::drag_stop 1");
715                         mwindow->undo->update_undo_before(_("insert assets"), 0);
716                 }
717
718                 if(mwindow->session->drag_assets->total)
719                 {
720                         mwindow->clear(0);
721                         mwindow->load_assets(mwindow->session->drag_assets,
722                                 mwindow->edl->local_session->get_selectionstart(),
723                                 LOADMODE_PASTE,
724                                 mwindow->session->track_highlighted,
725                                 0,
726                                 mwindow->edl->session->labels_follow_edits,
727                                 mwindow->edl->session->plugins_follow_edits,
728                                 mwindow->edl->session->autos_follow_edits,
729                                 0); // overwrite
730                 }
731
732                 if(mwindow->session->drag_clips->total)
733                 {
734                         mwindow->clear(0);
735                         mwindow->paste_edls(mwindow->session->drag_clips,
736                                 LOADMODE_PASTE,
737                                 mwindow->session->track_highlighted,
738                                 mwindow->edl->local_session->get_selectionstart(),
739                                 mwindow->edl->session->labels_follow_edits,
740                                 mwindow->edl->session->plugins_follow_edits,
741                                 mwindow->edl->session->autos_follow_edits,
742                                 0); // overwrite
743                 }
744
745                 if(mwindow->session->drag_assets->total ||
746                         mwindow->session->drag_clips->total)
747                 {
748                         mwindow->save_backup();
749                         mwindow->restart_brender();
750                         mwindow->gui->update(1, NORMAL_DRAW, 1, 1, 0, 1, 0);
751                         mwindow->undo->update_undo_after(_("insert assets"), LOAD_ALL);
752                         mwindow->gui->unlock_window();
753                         sync_parameters(CHANGE_ALL);
754                 }
755         }
756
757         if(mwindow->session->current_operation == DRAG_VEFFECT)
758         {
759 //printf("CWindowGUI::drag_stop 1\n");
760                 Track *affected_track = cwindow->calculate_affected_track();
761 //printf("CWindowGUI::drag_stop 2\n");
762
763                 mwindow->gui->lock_window("CWindowGUI::drag_stop 3");
764                 mwindow->insert_effects_cwindow(affected_track);
765                 mwindow->session->current_operation = NO_OPERATION;
766                 mwindow->gui->unlock_window();
767         }
768
769         if(mwindow->session->current_operation == DRAG_VTRANSITION)
770         {
771                 Track *affected_track = cwindow->calculate_affected_track();
772                 mwindow->gui->lock_window("CWindowGUI::drag_stop 4");
773                 mwindow->paste_transition_cwindow(affected_track);
774                 mwindow->session->current_operation = NO_OPERATION;
775                 mwindow->gui->unlock_window();
776         }
777
778         return result;
779 }
780
781 void CWindowGUI::update_meters()
782 {
783         if(mwindow->edl->session->cwindow_meter != meters->visible)
784         {
785                 meters->set_meters(meters->meter_count, mwindow->edl->session->cwindow_meter);
786                 mwindow->theme->get_cwindow_sizes(this, mwindow->session->cwindow_controls);
787                 resize_event(get_w(), get_h());
788         }
789 }
790
791 void CWindowGUI::stop_transport(const char *lock_msg)
792 {
793         if( lock_msg ) unlock_window();
794         mwindow->stop_transport();
795         if( lock_msg ) lock_window(lock_msg);
796 }
797
798
799 CWindowEditing::CWindowEditing(MWindow *mwindow, CWindow *cwindow)
800  : EditPanel(mwindow, cwindow->gui, CWINDOW_ID,
801                 mwindow->theme->cedit_x, mwindow->theme->cedit_y,
802                 mwindow->edl->session->editing_mode,
803                 0, // use_editing_mode
804                 1, // use_keyframe
805                 0, // use_splice
806                 0, // use_overwrite
807                 1, // use_copy
808                 1, // use_paste
809                 1, // use_undo
810                 0, // use_fit
811                 0, // locklabels
812                 1, // use_labels
813                 1, // use_toclip
814                 1, // use_meters
815                 1, // use_cut
816                 0, // use_commerical
817                 0, // use_goto
818                 1) // use_clk2play
819 {
820         this->mwindow = mwindow;
821         this->cwindow = cwindow;
822 }
823
824 #define relock_cm(s) \
825  cwindow->gui->unlock_window(); \
826  mwindow->gui->lock_window("CWindowEditing::" s)
827 #define relock_mc(s) \
828  mwindow->gui->unlock_window(); \
829  cwindow->gui->lock_window("CWindowEditing::" s)
830 #define panel_fn(fn, args, s) \
831  CWindowEditing::fn args { relock_cm(#fn); s; relock_mc(#fn); }
832
833 // transmit lock to mwindow, and run mbutton->edit_panel->s
834 #define panel_btn(fn, args, s) \
835  panel_fn(panel_##fn, args, mwindow->gui->mbuttons->edit_panel->panel_##s)
836
837
838 double CWindowEditing::get_position()
839 {
840         relock_cm("get_position");
841         double ret = mwindow->edl->local_session->get_selectionstart(1);
842         relock_mc("get_position");
843         return ret;
844 }
845
846 void CWindowEditing::set_position(double position)
847 {
848         relock_cm("set_position");
849         mwindow->gui->mbuttons->edit_panel->set_position(position);
850         relock_mc("set_position");
851 }
852
853 void CWindowEditing::set_click_to_play(int v)
854 {
855         relock_cm("set_position");
856         mwindow->edl->session->cwindow_click2play = v;
857         relock_mc("set_position");
858         click2play->update(v);
859 }
860
861
862 void panel_btn(stop_transport,(), stop_transport())
863 void panel_btn(toggle_label,(), toggle_label())
864 void panel_btn(next_label,(int cut), next_label(cut))
865 void panel_btn(prev_label,(int cut), prev_label(cut))
866 void panel_btn(next_edit,(int cut), next_edit(cut))
867 void panel_btn(prev_edit,(int cut), prev_edit(cut))
868 void panel_fn(panel_copy_selection,(), mwindow->copy())
869 void CWindowEditing::panel_overwrite_selection() {} // not used
870 void CWindowEditing::panel_splice_selection() {} // not used
871 void panel_btn(set_inpoint,(), set_inpoint())
872 void panel_btn(set_outpoint,(), set_outpoint())
873 void panel_btn(unset_inoutpoint,(), unset_inoutpoint())
874 void panel_fn(panel_to_clip,(), mwindow->to_clip(mwindow->edl, _("main window: "), 0))
875 void panel_btn(cut,(), cut())
876 void panel_btn(paste,(), paste())
877 void panel_btn(fit_selection,(), fit_selection())
878 void panel_btn(fit_autos,(int all), fit_autos(all))
879 void panel_btn(set_editing_mode,(int mode), set_editing_mode(mode))
880 void panel_btn(set_auto_keyframes,(int v), set_auto_keyframes(v))
881 void panel_btn(set_span_keyframes,(int v), set_span_keyframes(v))
882 void panel_btn(set_labels_follow_edits,(int v), set_labels_follow_edits(v))
883
884
885 CWindowMeters::CWindowMeters(MWindow *mwindow,
886         CWindowGUI *gui, int x, int y, int h)
887  : MeterPanel(mwindow, gui, x, y, -1, h,
888                 mwindow->edl->session->audio_channels,
889                 mwindow->edl->session->cwindow_meter,
890                 0, 0)
891 {
892         this->mwindow = mwindow;
893         this->gui = gui;
894 }
895
896 CWindowMeters::~CWindowMeters()
897 {
898 }
899
900 int CWindowMeters::change_status_event(int new_status)
901 {
902         mwindow->edl->session->cwindow_meter = new_status;
903         gui->update_meters();
904         return 1;
905 }
906
907
908
909
910 CWindowZoom::CWindowZoom(MWindow *mwindow, CWindowGUI *gui, int x, int y, int w)
911  : ZoomPanel(mwindow, gui, (double)mwindow->edl->session->cwindow_zoom,
912         x, y, w, my_zoom_table, total_zooms, ZOOM_PERCENTAGE)
913 {
914         this->mwindow = mwindow;
915         this->gui = gui;
916 }
917
918 CWindowZoom::~CWindowZoom()
919 {
920 }
921
922 void CWindowZoom::update(double value)
923 {
924         char string[BCSTRLEN];
925         const char *cp = string;
926         if( value ) {
927                 this->value = value;
928                 int frac = value >= 1.0f ? 1 :
929                            value >= 0.1f ? 2 :
930                            value >= .01f ? 3 : 4;
931                 sprintf(string, "x %.*f", frac, value);
932         }
933         else
934                 cp = gui->auto_zoom;
935         ZoomPanel::update(cp);
936 }
937
938 int CWindowZoom::handle_event()
939 {
940         double value = !strcasecmp(gui->auto_zoom, get_text()) ? 0 : get_value();
941         gui->zoom_canvas(value, 0);
942         return 1;
943 }
944
945
946
947 #ifdef USE_SLIDER
948 CWindowSlider::CWindowSlider(MWindow *mwindow, CWindow *cwindow, int x, int y, int pixels)
949  : BC_PercentageSlider(x,
950                         y,
951                         0,
952                         pixels,
953                         pixels,
954                         0,
955                         1,
956                         0)
957 {
958         this->mwindow = mwindow;
959         this->cwindow = cwindow;
960         set_precision(0.00001);
961 }
962
963 CWindowSlider::~CWindowSlider()
964 {
965 }
966
967 int CWindowSlider::handle_event()
968 {
969         cwindow->update_position((double)get_value());
970         return 1;
971 }
972
973 void CWindowSlider::set_position()
974 {
975         double new_length = mwindow->edl->tracks->total_length();
976         update(mwindow->theme->cslider_w,
977                 mwindow->edl->local_session->get_selectionstart(1),
978                 0, new_length);
979 }
980
981
982 int CWindowSlider::increase_value()
983 {
984         unlock_window();
985         cwindow->gui->transport->handle_transport(SINGLE_FRAME_FWD);
986         lock_window("CWindowSlider::increase_value");
987         return 1;
988 }
989
990 int CWindowSlider::decrease_value()
991 {
992         unlock_window();
993         cwindow->gui->transport->handle_transport(SINGLE_FRAME_REWIND);
994         lock_window("CWindowSlider::decrease_value");
995         return 1;
996 }
997 #endif // USE_SLIDER
998
999
1000 CWindowTransport::CWindowTransport(MWindow *mwindow,
1001         CWindowGUI *gui, int x, int y)
1002  : PlayTransport(mwindow, gui, x, y)
1003 {
1004         this->gui = gui;
1005 }
1006
1007 EDL* CWindowTransport::get_edl()
1008 {
1009         return mwindow->edl;
1010 }
1011
1012 void CWindowTransport::goto_start()
1013 {
1014         gui->unlock_window();
1015         handle_transport(REWIND, 1);
1016
1017         mwindow->gui->lock_window("CWindowTransport::goto_start 1");
1018         mwindow->goto_start();
1019         mwindow->gui->unlock_window();
1020
1021         gui->lock_window("CWindowTransport::goto_start 2");
1022 }
1023
1024 void CWindowTransport::goto_end()
1025 {
1026         gui->unlock_window();
1027         handle_transport(GOTO_END, 1);
1028
1029         mwindow->gui->lock_window("CWindowTransport::goto_end 1");
1030         mwindow->goto_end();
1031         mwindow->gui->unlock_window();
1032
1033         gui->lock_window("CWindowTransport::goto_end 2");
1034 }
1035
1036
1037
1038 CWindowCanvas::CWindowCanvas(MWindow *mwindow, CWindowGUI *gui)
1039  : Canvas(mwindow,
1040         gui,
1041         mwindow->theme->ccanvas_x,
1042         mwindow->theme->ccanvas_y,
1043         mwindow->theme->ccanvas_w,
1044         mwindow->theme->ccanvas_h,
1045         0,
1046         0,
1047         mwindow->edl->session->cwindow_scrollbars)
1048 {
1049         this->mwindow = mwindow;
1050         this->gui = gui;
1051 }
1052
1053 void CWindowCanvas::status_event()
1054 {
1055         gui->draw_status(1);
1056 }
1057
1058 void CWindowCanvas::update_zoom(int x, int y, float zoom)
1059 {
1060         use_scrollbars = mwindow->edl->session->cwindow_scrollbars;
1061
1062         mwindow->edl->session->cwindow_xscroll = x;
1063         mwindow->edl->session->cwindow_yscroll = y;
1064         mwindow->edl->session->cwindow_zoom = zoom;
1065 }
1066
1067 void CWindowCanvas::zoom_auto()
1068 {
1069         gui->zoom_canvas(0, 1);
1070 }
1071
1072 int CWindowCanvas::get_xscroll()
1073 {
1074         return mwindow->edl->session->cwindow_xscroll;
1075 }
1076
1077 int CWindowCanvas::get_yscroll()
1078 {
1079         return mwindow->edl->session->cwindow_yscroll;
1080 }
1081
1082
1083 float CWindowCanvas::get_zoom()
1084 {
1085         return mwindow->edl->session->cwindow_zoom;
1086 }
1087
1088 void CWindowCanvas::draw_refresh(int flush)
1089 {
1090         BC_WindowBase *window = get_canvas();
1091         if( window && !window->get_video_on() ) {
1092                 clear(0);
1093                 if( refresh_frame && refresh_frame->get_w()>0 && refresh_frame->get_h()>0 ) {
1094                         float in_x1, in_y1, in_x2, in_y2;
1095                         float out_x1, out_y1, out_x2, out_y2;
1096                         get_transfers(mwindow->edl,
1097                                 in_x1, in_y1, in_x2, in_y2,
1098                                 out_x1, out_y1, out_x2, out_y2);
1099
1100
1101 //printf("CWindowCanvas::draw_refresh %.2f %.2f %.2f %.2f -> %.2f %.2f %.2f %.2f\n",
1102 //in_x1, in_y1, in_x2, in_y2, out_x1, out_y1, out_x2, out_y2);
1103
1104
1105                         if( out_x2 > out_x1 && out_y2 > out_y1 &&
1106                             in_x2 > in_x1 && in_y2 > in_y1 ) {
1107 // input scaled from session to refresh frame coordinates
1108                                 int ow = get_output_w(mwindow->edl);
1109                                 int oh = get_output_h(mwindow->edl);
1110                                 int rw = refresh_frame->get_w();
1111                                 int rh = refresh_frame->get_h();
1112                                 float xs = (float)rw / ow;
1113                                 float ys = (float)rh / oh;
1114                                 in_x1 *= xs;  in_x2 *= xs;
1115                                 in_y1 *= ys;  in_y2 *= ys;
1116 // Can't use OpenGL here because it is called asynchronously of the
1117 // playback operation.
1118                                 window->draw_vframe(refresh_frame,
1119                                                 (int)out_x1, (int)out_y1,
1120                                                 (int)(out_x2 - out_x1),
1121                                                 (int)(out_y2 - out_y1),
1122                                                 (int)in_x1, (int)in_y1,
1123                                                 (int)(in_x2 - in_x1),
1124                                                 (int)(in_y2 - in_y1),
1125                                                 0);
1126                         }
1127                 }
1128 //usleep(10000);
1129                 draw_overlays();
1130                 window->flash(flush);
1131         }
1132 //printf("CWindowCanvas::draw_refresh 10\n");
1133 }
1134
1135 #define CROPHANDLE_W 10
1136 #define CROPHANDLE_H 10
1137
1138 void CWindowCanvas::draw_crophandle(int x, int y)
1139 {
1140         get_canvas()->draw_box(x, y, CROPHANDLE_W, CROPHANDLE_H);
1141 }
1142
1143
1144 #define CONTROL_W 10
1145 #define CONTROL_H 10
1146 #define FIRST_CONTROL_W 20
1147 #define FIRST_CONTROL_H 20
1148 #undef BC_INFINITY
1149 #define BC_INFINITY 65536
1150
1151 #define RULERHANDLE_W 16
1152 #define RULERHANDLE_H 16
1153
1154 int CWindowCanvas::do_ruler(int draw,
1155         int motion,
1156         int button_press,
1157         int button_release)
1158 {
1159         int result = 0;
1160         float x1 = mwindow->edl->session->ruler_x1;
1161         float y1 = mwindow->edl->session->ruler_y1;
1162         float x2 = mwindow->edl->session->ruler_x2;
1163         float y2 = mwindow->edl->session->ruler_y2;
1164         float canvas_x1 = x1;
1165         float canvas_y1 = y1;
1166         float canvas_x2 = x2;
1167         float canvas_y2 = y2;
1168         float output_x = get_cursor_x();
1169         float output_y = get_cursor_y();
1170         float canvas_cursor_x = output_x;
1171         float canvas_cursor_y = output_y;
1172
1173         canvas_to_output(mwindow->edl, 0, output_x, output_y);
1174         output_to_canvas(mwindow->edl, 0, canvas_x1, canvas_y1);
1175         output_to_canvas(mwindow->edl, 0, canvas_x2, canvas_y2);
1176         mwindow->session->cwindow_output_x = roundf(output_x);
1177         mwindow->session->cwindow_output_y = roundf(output_y);
1178
1179         if(button_press && get_buttonpress() == 1)
1180         {
1181                 gui->ruler_handle = -1;
1182                 gui->ruler_translate = 0;
1183                 if(gui->alt_down())
1184                 {
1185                         gui->ruler_translate = 1;
1186                         gui->ruler_origin_x = x1;
1187                         gui->ruler_origin_y = y1;
1188                 }
1189                 else
1190                 if(canvas_cursor_x >= canvas_x1 - RULERHANDLE_W / 2 &&
1191                         canvas_cursor_x < canvas_x1 + RULERHANDLE_W / 2 &&
1192                         canvas_cursor_y >= canvas_y1 - RULERHANDLE_W &&
1193                         canvas_cursor_y < canvas_y1 + RULERHANDLE_H / 2)
1194                 {
1195                         gui->ruler_handle = 0;
1196                         gui->ruler_origin_x = x1;
1197                         gui->ruler_origin_y = y1;
1198                 }
1199                 else
1200                 if(canvas_cursor_x >= canvas_x2 - RULERHANDLE_W / 2 &&
1201                         canvas_cursor_x < canvas_x2 + RULERHANDLE_W / 2 &&
1202                         canvas_cursor_y >= canvas_y2 - RULERHANDLE_W &&
1203                         canvas_cursor_y < canvas_y2 + RULERHANDLE_H / 2)
1204                 {
1205                         gui->ruler_handle = 1;
1206                         gui->ruler_origin_x = x2;
1207                         gui->ruler_origin_y = y2;
1208                 }
1209
1210
1211 // Start new selection
1212                 if(!gui->ruler_translate &&
1213                         (gui->ruler_handle < 0 ||
1214                         (EQUIV(x2, x1) &&
1215                         EQUIV(y2, y1))))
1216                 {
1217 // Hide previous
1218                         do_ruler(1, 0, 0, 0);
1219                         get_canvas()->flash();
1220                         gui->ruler_handle = 1;
1221                         mwindow->edl->session->ruler_x1 = output_x;
1222                         mwindow->edl->session->ruler_y1 = output_y;
1223                         mwindow->edl->session->ruler_x2 = output_x;
1224                         mwindow->edl->session->ruler_y2 = output_y;
1225                         gui->ruler_origin_x = mwindow->edl->session->ruler_x2;
1226                         gui->ruler_origin_y = mwindow->edl->session->ruler_y2;
1227                 }
1228
1229                 gui->x_origin = output_x;
1230                 gui->y_origin = output_y;
1231                 gui->current_operation = CWINDOW_RULER;
1232                 gui->tool_panel->raise_window();
1233                 result = 1;
1234         }
1235
1236         if(motion)
1237         {
1238                 if(gui->current_operation == CWINDOW_RULER)
1239                 {
1240                         if(gui->ruler_translate)
1241                         {
1242 // Hide ruler
1243                                 do_ruler(1, 0, 0, 0);
1244                                 float x_difference = mwindow->edl->session->ruler_x1;
1245                                 float y_difference = mwindow->edl->session->ruler_y1;
1246                                 mwindow->edl->session->ruler_x1 = output_x - gui->x_origin + gui->ruler_origin_x;
1247                                 mwindow->edl->session->ruler_y1 = output_y - gui->y_origin + gui->ruler_origin_y;
1248                                 x_difference -= mwindow->edl->session->ruler_x1;
1249                                 y_difference -= mwindow->edl->session->ruler_y1;
1250                                 mwindow->edl->session->ruler_x2 -= x_difference;
1251                                 mwindow->edl->session->ruler_y2 -= y_difference;
1252 // Show ruler
1253                                 do_ruler(1, 0, 0, 0);
1254                                 get_canvas()->flash();
1255                                 gui->update_tool();
1256                         }
1257                         else
1258                         switch(gui->ruler_handle)
1259                         {
1260                                 case 0:
1261                                         do_ruler(1, 0, 0, 0);
1262                                         mwindow->edl->session->ruler_x1 = output_x - gui->x_origin + gui->ruler_origin_x;
1263                                         mwindow->edl->session->ruler_y1 = output_y - gui->y_origin + gui->ruler_origin_y;
1264                                         if(gui->alt_down() || gui->ctrl_down())
1265                                         {
1266                                                 double angle_value = fabs(atan((mwindow->edl->session->ruler_y2 - mwindow->edl->session->ruler_y1) /
1267                                                         (mwindow->edl->session->ruler_x2 - mwindow->edl->session->ruler_x1)) *
1268                                                         360 /
1269                                                         2 /
1270                                                         M_PI);
1271                                                 double distance_value =
1272                                                         sqrt(SQR(mwindow->edl->session->ruler_x2 - mwindow->edl->session->ruler_x1) +
1273                                                         SQR(mwindow->edl->session->ruler_y2 - mwindow->edl->session->ruler_y1));
1274                                                 if(angle_value < 22)
1275                                                         mwindow->edl->session->ruler_y1 = mwindow->edl->session->ruler_y2;
1276                                                 else
1277                                                 if(angle_value > 67)
1278                                                         mwindow->edl->session->ruler_x1 = mwindow->edl->session->ruler_x2;
1279                                                 else
1280                                                 if(mwindow->edl->session->ruler_x1 < mwindow->edl->session->ruler_x2 &&
1281                                                         mwindow->edl->session->ruler_y1 < mwindow->edl->session->ruler_y2)
1282                                                 {
1283                                                         mwindow->edl->session->ruler_x1 = mwindow->edl->session->ruler_x2 - distance_value / 1.414214;
1284                                                         mwindow->edl->session->ruler_y1 = mwindow->edl->session->ruler_y2 - distance_value / 1.414214;
1285                                                 }
1286                                                 else
1287                                                 if(mwindow->edl->session->ruler_x1 < mwindow->edl->session->ruler_x2 && mwindow->edl->session->ruler_y1 > mwindow->edl->session->ruler_y2)
1288                                                 {
1289                                                         mwindow->edl->session->ruler_x1 = mwindow->edl->session->ruler_x2 - distance_value / 1.414214;
1290                                                         mwindow->edl->session->ruler_y1 = mwindow->edl->session->ruler_y2 + distance_value / 1.414214;
1291                                                 }
1292                                                 else
1293                                                 if(mwindow->edl->session->ruler_x1 > mwindow->edl->session->ruler_x2 &&
1294                                                         mwindow->edl->session->ruler_y1 < mwindow->edl->session->ruler_y2)
1295                                                 {
1296                                                         mwindow->edl->session->ruler_x1 = mwindow->edl->session->ruler_x2 + distance_value / 1.414214;
1297                                                         mwindow->edl->session->ruler_y1 = mwindow->edl->session->ruler_y2 - distance_value / 1.414214;
1298                                                 }
1299                                                 else
1300                                                 {
1301                                                         mwindow->edl->session->ruler_x1 = mwindow->edl->session->ruler_x2 + distance_value / 1.414214;
1302                                                         mwindow->edl->session->ruler_y1 = mwindow->edl->session->ruler_y2 + distance_value / 1.414214;
1303                                                 }
1304                                         }
1305                                         do_ruler(1, 0, 0, 0);
1306                                         get_canvas()->flash();
1307                                         gui->update_tool();
1308                                         break;
1309
1310                                 case 1:
1311                                         do_ruler(1, 0, 0, 0);
1312                                         mwindow->edl->session->ruler_x2 = output_x - gui->x_origin + gui->ruler_origin_x;
1313                                         mwindow->edl->session->ruler_y2 = output_y - gui->y_origin + gui->ruler_origin_y;
1314                                         if(gui->alt_down() || gui->ctrl_down())
1315                                         {
1316                                                 double angle_value = fabs(atan((mwindow->edl->session->ruler_y2 - mwindow->edl->session->ruler_y1) /
1317                                                         (mwindow->edl->session->ruler_x2 - mwindow->edl->session->ruler_x1)) *
1318                                                         360 /
1319                                                         2 /
1320                                                         M_PI);
1321                                                 double distance_value =
1322                                                         sqrt(SQR(mwindow->edl->session->ruler_x2 - mwindow->edl->session->ruler_x1) +
1323                                                         SQR(mwindow->edl->session->ruler_y2 - mwindow->edl->session->ruler_y1));
1324                                                 if(angle_value < 22)
1325                                                         mwindow->edl->session->ruler_y2 = mwindow->edl->session->ruler_y1;
1326                                                 else
1327                                                 if(angle_value > 67)
1328                                                         mwindow->edl->session->ruler_x2 = mwindow->edl->session->ruler_x1;
1329                                                 else
1330                                                 if(mwindow->edl->session->ruler_x2 < mwindow->edl->session->ruler_x1 &&
1331                                                         mwindow->edl->session->ruler_y2 < mwindow->edl->session->ruler_y1)
1332                                                 {
1333                                                         mwindow->edl->session->ruler_x2 = mwindow->edl->session->ruler_x1 - distance_value / 1.414214;
1334                                                         mwindow->edl->session->ruler_y2 = mwindow->edl->session->ruler_y1 - distance_value / 1.414214;
1335                                                 }
1336                                                 else
1337                                                 if(mwindow->edl->session->ruler_x2 < mwindow->edl->session->ruler_x1 &&
1338                                                         mwindow->edl->session->ruler_y2 > mwindow->edl->session->ruler_y1)
1339                                                 {
1340                                                         mwindow->edl->session->ruler_x2 = mwindow->edl->session->ruler_x1 - distance_value / 1.414214;
1341                                                         mwindow->edl->session->ruler_y2 = mwindow->edl->session->ruler_y1 + distance_value / 1.414214;
1342                                                 }
1343                                                 else
1344                                                 if(mwindow->edl->session->ruler_x2 > mwindow->edl->session->ruler_x1 && mwindow->edl->session->ruler_y2 < mwindow->edl->session->ruler_y1)
1345                                                 {
1346                                                         mwindow->edl->session->ruler_x2 = mwindow->edl->session->ruler_x1 + distance_value / 1.414214;
1347                                                         mwindow->edl->session->ruler_y2 = mwindow->edl->session->ruler_y1 - distance_value / 1.414214;
1348                                                 }
1349                                                 else
1350                                                 {
1351                                                         mwindow->edl->session->ruler_x2 = mwindow->edl->session->ruler_x1 + distance_value / 1.414214;
1352                                                         mwindow->edl->session->ruler_y2 = mwindow->edl->session->ruler_y1 + distance_value / 1.414214;
1353                                                 }
1354                                         }
1355                                         do_ruler(1, 0, 0, 0);
1356                                         get_canvas()->flash();
1357                                         gui->update_tool();
1358                                         break;
1359                         }
1360 //printf("CWindowCanvas::do_ruler 2 %f %f %f %f\n", gui->ruler_x1, gui->ruler_y1, gui->ruler_x2, gui->ruler_y2);
1361                 }
1362                 else
1363                 {
1364 // printf("CWindowCanvas::do_ruler 2 %f %f %f %f\n",
1365 // canvas_cursor_x,
1366 // canvas_cursor_y,
1367 // canvas_x1,
1368 // canvas_y1);
1369                         if(canvas_cursor_x >= canvas_x1 - RULERHANDLE_W / 2 &&
1370                                 canvas_cursor_x < canvas_x1 + RULERHANDLE_W / 2 &&
1371                                 canvas_cursor_y >= canvas_y1 - RULERHANDLE_W &&
1372                                 canvas_cursor_y < canvas_y1 + RULERHANDLE_H / 2)
1373                         {
1374                                 set_cursor(UPRIGHT_ARROW_CURSOR);
1375                         }
1376                         else
1377                         if(canvas_cursor_x >= canvas_x2 - RULERHANDLE_W / 2 &&
1378                                 canvas_cursor_x < canvas_x2 + RULERHANDLE_W / 2 &&
1379                                 canvas_cursor_y >= canvas_y2 - RULERHANDLE_W &&
1380                                 canvas_cursor_y < canvas_y2 + RULERHANDLE_H / 2)
1381                         {
1382                                 set_cursor(UPRIGHT_ARROW_CURSOR);
1383                         }
1384                         else
1385                                 set_cursor(CROSS_CURSOR);
1386
1387 // Update current position
1388                         gui->update_tool();
1389                 }
1390         }
1391
1392 // Assume no ruler measurement if 0 length
1393         if(draw && (!EQUIV(x2, x1) || !EQUIV(y2, y1)))
1394         {
1395                 get_canvas()->set_inverse();
1396                 get_canvas()->set_color(WHITE);
1397                 get_canvas()->draw_line((int)canvas_x1,
1398                         (int)canvas_y1,
1399                         (int)canvas_x2,
1400                         (int)canvas_y2);
1401                 get_canvas()->draw_line(roundf(canvas_x1) - RULERHANDLE_W / 2,
1402                         roundf(canvas_y1),
1403                         roundf(canvas_x1) + RULERHANDLE_W / 2,
1404                         roundf(canvas_y1));
1405                 get_canvas()->draw_line(roundf(canvas_x1),
1406                         roundf(canvas_y1) - RULERHANDLE_H / 2,
1407                         roundf(canvas_x1),
1408                         roundf(canvas_y1) + RULERHANDLE_H / 2);
1409                 get_canvas()->draw_line(roundf(canvas_x2) - RULERHANDLE_W / 2,
1410                         roundf(canvas_y2),
1411                         roundf(canvas_x2) + RULERHANDLE_W / 2,
1412                         roundf(canvas_y2));
1413                 get_canvas()->draw_line(roundf(canvas_x2),
1414                         roundf(canvas_y2) - RULERHANDLE_H / 2,
1415                         roundf(canvas_x2),
1416                         roundf(canvas_y2) + RULERHANDLE_H / 2);
1417                 get_canvas()->set_opaque();
1418         }
1419
1420         return result;
1421 }
1422
1423
1424 static inline double line_dist(float cx,float cy, float tx,float ty)
1425 {
1426         double dx = tx-cx, dy = ty-cy;
1427         return sqrt(dx*dx + dy*dy);
1428 }
1429
1430 static inline bool test_bbox(int cx, int cy, int tx, int ty)
1431 {
1432 //      printf("test_bbox %d,%d - %d,%d = %f\n",cx,cy,tx,ty,line_dist(cx,cy,tx,ty));
1433         return (llabs(cx-tx) < CONTROL_W/2 && llabs(cy-ty) < CONTROL_H/2);
1434 }
1435
1436
1437 int CWindowCanvas::do_mask(int &redraw, int &rerender,
1438                 int button_press, int cursor_motion, int draw)
1439 {
1440 // Retrieve points from top recordable track
1441 //printf("CWindowCanvas::do_mask 1\n");
1442         Track *track = gui->cwindow->calculate_mask_track();
1443 //printf("CWindowCanvas::do_mask 2\n");
1444
1445         if(!track) return 0;
1446 //printf("CWindowCanvas::do_mask 3\n");
1447         CWindowMaskGUI *mask_gui = (CWindowMaskGUI *)
1448                 (gui->tool_panel ? gui->tool_panel->tool_gui : 0);
1449         int draw_markers = mask_gui ? mask_gui->markers : 0;
1450         int draw_boundary = mask_gui ? mask_gui->boundary : 0;
1451         MaskAutos *mask_autos = (MaskAutos*)track->automation->autos[AUTOMATION_MASK];
1452         int64_t position = track->to_units(
1453                 mwindow->edl->local_session->get_selectionstart(1),
1454                 0);
1455         Auto *prev_auto = 0;
1456         mask_autos->get_prev_auto(position, PLAY_FORWARD, (Auto *&)prev_auto, 1);
1457         MaskAuto *prev_mask = (MaskAuto *)prev_auto;
1458         MaskPoints points;
1459         int update_points = 1;
1460 // Determine the points based on whether
1461 // new keyframes will be generated or drawing is performed.
1462 // If keyframe generation occurs, use the interpolated mask.
1463 // If no keyframe generation occurs, use the previous mask.
1464         int use_interpolated = 0;
1465         if( button_press || cursor_motion ) {
1466 #ifdef USE_KEYFRAME_SPANNING
1467                 double selection_start = mwindow->edl->local_session->get_selectionstart(0);
1468                 double selection_end = mwindow->edl->local_session->get_selectionend(0);
1469                 int64_t start_pos = track->to_units(selection_start, 0);
1470                 int64_t end_pos = track->to_units(selection_end, 0);
1471                 Auto *first = 0, *last = 0;
1472                 mask_autos->get_prev_auto(start_pos, PLAY_FORWARD, first, 1);
1473                 mask_autos->get_prev_auto(end_pos, PLAY_FORWARD, last, 1);
1474                 if( last == first && (!mwindow->edl->session->auto_keyframes) )
1475                         use_interpolated = 0;
1476                 else
1477 // If keyframe spanning occurs, use the interpolated points.
1478 // If new keyframe is generated, use the interpolated points.
1479                         use_interpolated = 1;
1480
1481 #else
1482                 if( mwindow->edl->session->auto_keyframes )
1483                         use_interpolated = 1;
1484 #endif
1485         }
1486         else
1487                 use_interpolated = 1;
1488
1489         if( use_interpolated ) {
1490 // Interpolate the points to get exactly what is being rendered at this position.
1491                 mask_autos->get_points(&points,
1492                         mwindow->edl->session->cwindow_mask,
1493                         position, PLAY_FORWARD);
1494         }
1495         else {
1496 // Use the prev mask
1497                 prev_mask->get_points(&points,
1498                         mwindow->edl->session->cwindow_mask);
1499         }
1500
1501 // Projector zooms relative to the center of the track output.
1502         float half_track_w = (float)track->track_w / 2;
1503         float half_track_h = (float)track->track_h / 2;
1504 // Translate mask to projection
1505         float projector_x, projector_y, projector_z;
1506         track->automation->get_projector(
1507                 &projector_x, &projector_y, &projector_z,
1508                 position, PLAY_FORWARD);
1509
1510
1511 // Get position of cursor relative to mask
1512         float cursor_x = get_cursor_x(), cursor_y = get_cursor_y();
1513         float mask_cursor_x = cursor_x, mask_cursor_y = cursor_y;
1514         canvas_to_output(mwindow->edl, 0, mask_cursor_x, mask_cursor_y);
1515
1516         projector_x += mwindow->edl->session->output_w / 2;
1517         projector_y += mwindow->edl->session->output_h / 2;
1518         mask_cursor_x = (mask_cursor_x - projector_x) / projector_z + half_track_w;
1519         mask_cursor_y = (mask_cursor_y - projector_y) / projector_z + half_track_h;
1520
1521 // Fix cursor origin
1522         if(button_press) {
1523                 gui->x_origin = mask_cursor_x;
1524                 gui->y_origin = mask_cursor_y;
1525         }
1526
1527         int result = 0;
1528 // Points of closest line
1529         int shortest_point1 = -1;
1530         int shortest_point2 = -1;
1531 // Closest point
1532         int shortest_point = -1;
1533 // Distance to closest line
1534         float shortest_line_distance = BC_INFINITY;
1535 // Distance to closest point
1536         float shortest_point_distance = BC_INFINITY;
1537         int selected_point = -1;
1538         int selected_control_point = -1;
1539         float selected_control_point_distance = BC_INFINITY;
1540         ArrayList<int> x_points;
1541         ArrayList<int> y_points;
1542
1543         if(!cursor_motion) {
1544                 if(draw) {
1545                         get_canvas()->set_color(WHITE);
1546                         get_canvas()->set_inverse();
1547                 }
1548 //printf("CWindowCanvas::do_mask 1 %d\n", points.size());
1549
1550 // Never draw closed polygon and a closed
1551 // polygon is harder to add points to.
1552                 for(int i = 0; i < points.size() && !result; i++) {
1553                         MaskPoint *point1 = points.get(i);
1554                         MaskPoint *point2 = (i >= points.size() - 1) ?
1555                                 points.get(0) : points.get(i + 1);
1556                         if(button_press) {
1557                                 float point_distance1 = line_dist(point1->x,point1->y, mask_cursor_x,mask_cursor_y);
1558                                 if(point_distance1 < shortest_point_distance || shortest_point < 0) {
1559                                         shortest_point_distance = point_distance1;
1560                                         shortest_point = i;
1561                                 }
1562
1563                                 float point_distance2 = line_dist(point2->x,point2->y, mask_cursor_x,mask_cursor_y);
1564                                 if(point_distance2 < shortest_point_distance || shortest_point < 0) {
1565                                         shortest_point_distance = point_distance2;
1566                                         shortest_point = (i >= points.size() - 1) ? 0 : (i + 1);
1567                                 }
1568                         }
1569
1570                         int segments = 1 + line_dist(point1->x,point1->y, point2->x,point2->y);
1571
1572 //printf("CWindowCanvas::do_mask 1 %f, %f -> %f, %f projectorz=%f\n",
1573 //point1->x, point1->y, point2->x, point2->y, projector_z);
1574                         for(int j = 0; j <= segments && !result; j++) {
1575 //printf("CWindowCanvas::do_mask 1 %f, %f -> %f, %f\n", x0, y0, x3, y3);
1576                                 float x0 = point1->x, y0 = point1->y;
1577                                 float x1 = point1->x + point1->control_x2;
1578                                 float y1 = point1->y + point1->control_y2;
1579                                 float x2 = point2->x + point2->control_x1;
1580                                 float y2 = point2->y + point2->control_y1;
1581                                 float x3 = point2->x, y3 = point2->y;
1582                                 float canvas_x0 = (x0 - half_track_w) * projector_z + projector_x;
1583                                 float canvas_y0 = (y0 - half_track_h) * projector_z + projector_y;
1584                                 float canvas_x1 = (x1 - half_track_w) * projector_z + projector_x;
1585                                 float canvas_y1 = (y1 - half_track_h) * projector_z + projector_y;
1586                                 float canvas_x2 = (x2 - half_track_w) * projector_z + projector_x;
1587                                 float canvas_y2 = (y2 - half_track_h) * projector_z + projector_y;
1588                                 float canvas_x3 = (x3 - half_track_w) * projector_z + projector_x;
1589                                 float canvas_y3 = (y3 - half_track_h) * projector_z + projector_y;
1590
1591                                 float t = (float)j / segments;
1592                                 float tpow2 = t * t;
1593                                 float tpow3 = t * t * t;
1594                                 float invt = 1 - t;
1595                                 float invtpow2 = invt * invt;
1596                                 float invtpow3 = invt * invt * invt;
1597
1598                                 float x = (           invtpow3 * x0
1599                                         + 3 * t     * invtpow2 * x1
1600                                         + 3 * tpow2 * invt     * x2
1601                                         +     tpow3            * x3);
1602                                 float y = (           invtpow3 * y0
1603                                         + 3 * t     * invtpow2 * y1
1604                                         + 3 * tpow2 * invt     * y2
1605                                         +     tpow3            * y3);
1606                                 float canvas_x = (x - half_track_w) * projector_z + projector_x;
1607                                 float canvas_y = (y - half_track_h) * projector_z + projector_y;
1608 // Test new point addition
1609                                 if(button_press) {
1610                                         float line_distance = line_dist(x,y, mask_cursor_x,mask_cursor_y);
1611
1612 //printf("CWindowCanvas::do_mask 1 x=%f cursor_x=%f y=%f cursor_y=%f %f %f %d, %d\n",
1613 //  x, cursor_x, y, cursor_y, line_distance, shortest_line_distance, shortest_point1, shortest_point2);
1614                                         if(line_distance < shortest_line_distance ||
1615                                                 shortest_point1 < 0) {
1616                                                 shortest_line_distance = line_distance;
1617                                                 shortest_point1 = i;
1618                                                 shortest_point2 = (i >= points.size() - 1) ? 0 : (i + 1);
1619 //printf("CWindowCanvas::do_mask 2 %f %f %d, %d\n",
1620 //  line_distance, shortest_line_distance, shortest_point1, shortest_point2);
1621                                         }
1622
1623 // Test existing point selection
1624 // Test first point
1625                                         if(gui->ctrl_down()) {
1626                                                 float distance = line_dist(x1,y1, mask_cursor_x,mask_cursor_y);
1627
1628                                                 if(distance < selected_control_point_distance) {
1629                                                         selected_point = i;
1630                                                         selected_control_point = 1;
1631                                                         selected_control_point_distance = distance;
1632                                                 }
1633                                         }
1634                                         else {
1635                                                 if(!gui->shift_down()) {
1636                                                         output_to_canvas(mwindow->edl, 0, canvas_x0, canvas_y0);
1637                                                         if(test_bbox(cursor_x, cursor_y, canvas_x0, canvas_y0)) {
1638                                                                 selected_point = i;
1639                                                         }
1640                                                 }
1641                                                 else {
1642                                                         selected_point = shortest_point;
1643                                                 }
1644                                         }
1645 // Test second point
1646                                         if(gui->ctrl_down()) {
1647                                                 float distance = line_dist(x2,y2, mask_cursor_x,mask_cursor_y);
1648
1649 //printf("CWindowCanvas::do_mask %d %f %f\n", i, distance, selected_control_point_distance);
1650                                                 if(distance < selected_control_point_distance) {
1651                                                         selected_point = (i < points.size() - 1 ? i + 1 : 0);
1652                                                         selected_control_point = 0;
1653                                                         selected_control_point_distance = distance;
1654                                                 }
1655                                         }
1656                                         else if(i < points.size() - 1) {
1657                                                 if(!gui->shift_down()) {
1658                                                         output_to_canvas(mwindow->edl, 0, canvas_x3, canvas_y3);
1659                                                         if(test_bbox(cursor_x, cursor_y, canvas_x3, canvas_y3)) {
1660                                                                 selected_point = (i < points.size() - 1 ? i + 1 : 0);
1661                                                         }
1662                                                 }
1663                                                 else {
1664                                                         selected_point = shortest_point;
1665                                                 }
1666                                         }
1667                                 }
1668
1669                                 output_to_canvas(mwindow->edl, 0, canvas_x, canvas_y);
1670
1671                                 if( j > 0 ) {
1672
1673                                         if( draw ) { // Draw joining line
1674                                                 x_points.append((int)canvas_x);
1675                                                 y_points.append((int)canvas_y);
1676                                         }
1677
1678                                         if( j == segments ) {
1679                                                 if( draw && draw_markers ) { // Draw second anchor
1680                                                         if(i < points.size() - 1) {
1681                                                                 if(i == gui->affected_point - 1)
1682                                                                         get_canvas()->draw_disc(
1683                                                                                 (int)canvas_x - CONTROL_W / 2,
1684                                                                                 (int)canvas_y - CONTROL_W / 2,
1685                                                                                 CONTROL_W, CONTROL_H);
1686                                                                 else
1687                                                                         get_canvas()->draw_circle(
1688                                                                                 (int)canvas_x - CONTROL_W / 2,
1689                                                                                 (int)canvas_y - CONTROL_W / 2,
1690                                                                                 CONTROL_W, CONTROL_H);
1691 // char string[BCTEXTLEN];
1692 // sprintf(string, "%d", (i < points.size() - 1 ? i + 1 : 0));
1693 // canvas->draw_text((int)canvas_x + CONTROL_W, (int)canvas_y + CONTROL_W, string);
1694                                                         }
1695 // Draw second control point.
1696                                                         output_to_canvas(mwindow->edl, 0, canvas_x2, canvas_y2);
1697                                                         get_canvas()->draw_line(
1698                                                                 (int)canvas_x, (int)canvas_y,
1699                                                                 (int)canvas_x2, (int)canvas_y2);
1700                                                         get_canvas()->draw_rectangle(
1701                                                                 (int)canvas_x2 - CONTROL_W / 2,
1702                                                                 (int)canvas_y2 - CONTROL_H / 2,
1703                                                                 CONTROL_W, CONTROL_H);
1704                                                 }
1705                                         }
1706                                 }
1707                                 else {
1708 // Draw first anchor
1709                                         if( i == 0 && draw ) {
1710                                                 if( draw_boundary ) {
1711                                                         char mask_label[BCSTRLEN];
1712                                                         int k = mwindow->edl->session->cwindow_mask;
1713                                                         if( !prev_mask || k < 0 || k >= prev_mask->masks.size() )
1714                                                                 sprintf(mask_label, "%d", k);
1715                                                         else
1716                                                                 sprintf(mask_label, "%s", prev_mask->masks[k]->name);
1717                                                         get_canvas()->draw_text(
1718                                                                 (int)canvas_x - FIRST_CONTROL_W,
1719                                                                 (int)canvas_y - FIRST_CONTROL_H,
1720                                                                 mask_label);
1721                                                 }
1722                                                 if( draw_markers ) {
1723                                                         get_canvas()->draw_disc(
1724                                                                 (int)canvas_x - FIRST_CONTROL_W / 2,
1725                                                                 (int)canvas_y - FIRST_CONTROL_H / 2,
1726                                                                 FIRST_CONTROL_W, FIRST_CONTROL_H);
1727                                                 }
1728                                         }
1729
1730 // Draw first control point.
1731                                         if( draw && draw_markers ) {
1732                                                 output_to_canvas(mwindow->edl, 0, canvas_x1, canvas_y1);
1733                                                 get_canvas()->draw_line(
1734                                                         (int)canvas_x, (int)canvas_y,
1735                                                         (int)canvas_x1, (int)canvas_y1);
1736                                                 get_canvas()->draw_rectangle(
1737                                                         (int)canvas_x1 - CONTROL_W / 2,
1738                                                         (int)canvas_y1 - CONTROL_H / 2,
1739                                                         CONTROL_W, CONTROL_H);
1740
1741                                                 x_points.append((int)canvas_x);
1742                                                 y_points.append((int)canvas_y);
1743                                         }
1744                                 }
1745 //printf("CWindowCanvas::do_mask 1\n");
1746
1747                         }
1748                 }
1749 //printf("CWindowCanvas::do_mask 1\n");
1750
1751                 BC_WindowBase *cvs_win = get_canvas();
1752                 if( draw && draw_boundary ) {
1753                         cvs_win->draw_polygon(&x_points, &y_points);
1754                         cvs_win->set_opaque();
1755                 }
1756                 if( draw && mask_gui && mask_gui->focused ) {
1757                         float fx = atof(mask_gui->focus_x->get_text());
1758                         float fy = atof(mask_gui->focus_y->get_text());
1759                         output_to_canvas(mwindow->edl, 0, fx, fy);
1760                         float r = bmax(cvs_win->get_w(), cvs_win->get_h());
1761                         float d = 0.005*r;
1762 #if 1
1763                         int fw = 2*d+3, fh = fw;
1764                         VFrame focus(fw,fh, BC_RGBA8888);
1765                         focus.transfer_from(gui->focus_frame);
1766                         fx -= fw/2.f;  fy -= fh/2.f;
1767                         BC_Pixmap focus_pixmap(cvs_win, &focus, PIXMAP_ALPHA);
1768                         cvs_win->draw_pixmap(&focus_pixmap,fx,fy);
1769 #else
1770                         cvs_win->set_line_width((int)(0.0025*r) + 1);
1771                         cvs_win->set_color(BLUE);
1772                         cvs_win->draw_line(fx-d,fy-d, fx+d, fy+d);
1773                         cvs_win->draw_line(fx-d,fy+d, fx+d, fy-d);
1774                         cvs_win->set_line_width(0);
1775                         cvs_win->set_color(WHITE);
1776 #endif
1777                 }
1778                 if( draw && mask_gui && draw_markers && points.size() ) {
1779                         float cx = 0, cy = 0;
1780                         int n = points.size();
1781                         for( int i=0; i<n; ++i ) {
1782                                 MaskPoint *point = points.get(i);
1783                                 cx += point->x;  cy += point->y;
1784                         }
1785                         cx /= n;  cy /= n;
1786                         if( !mask_gui->focused )
1787                                 mask_gui->set_focused(0, cx, cy);
1788                         output_to_canvas(mwindow->edl, 0, cx, cy);
1789                         float r = bmax(cvs_win->get_w(), cvs_win->get_h());
1790                         float d = 0.007*r;
1791                         cvs_win->set_line_width((int)(0.002*r) + 1);
1792                         cvs_win->set_color(ORANGE);
1793                         cvs_win->draw_line(cx-d,cy, cx+d, cy);
1794                         cvs_win->draw_line(cx,cy-d, cx, cy+d);
1795                         cvs_win->set_line_width(0);
1796                         cvs_win->set_color(WHITE);
1797                 }
1798 //printf("CWindowCanvas::do_mask 1\n");
1799         }
1800
1801         if(button_press && !result) {
1802                 gui->affected_track = gui->cwindow->calculate_mask_track();
1803
1804 // Get keyframe outside the EDL to edit.  This must be rendered
1805 // instead of the EDL keyframes when it exists.  Then it must be
1806 // applied to the EDL keyframes on buttonrelease.
1807                 if( gui->affected_track ) {
1808 #ifdef USE_KEYFRAME_SPANNING
1809 // Make copy of current parameters in local keyframe
1810                         gui->mask_keyframe =
1811                                 (MaskAuto*)gui->cwindow->calculate_affected_auto(
1812                                         mask_autos,
1813                                         0);
1814                         gui->orig_mask_keyframe->copy_data(gui->mask_keyframe);
1815 #else
1816
1817                         gui->mask_keyframe =
1818                                 (MaskAuto*)gui->cwindow->calculate_affected_auto(
1819                                         mask_autos,
1820                                         1);
1821 #endif
1822                 }
1823                 SubMask *mask = gui->mask_keyframe->get_submask(mwindow->edl->session->cwindow_mask);
1824
1825                 if( get_buttonpress() == WHEEL_UP || get_buttonpress() == WHEEL_DOWN ) {
1826                         if( !gui->shift_down() ) {
1827                                 mwindow->undo->update_undo_before(_("mask rotate"), this);
1828                                 gui->current_operation = CWINDOW_MASK_ROTATE;
1829                         }
1830                         else {
1831                                 mwindow->undo->update_undo_before(_("mask scale"), this);
1832                                 gui->current_operation = CWINDOW_MASK_SCALE;
1833                         }
1834                         gui->affected_point = 0;
1835                 }
1836                 else
1837 // Translate entire keyframe
1838                 if(gui->alt_down() && mask->points.size()) {
1839                         mwindow->undo->update_undo_before(_("mask translate"), 0);
1840                         gui->current_operation = CWINDOW_MASK_TRANSLATE;
1841                         gui->affected_point = 0;
1842                 }
1843                 else
1844 // Existing point or control point was selected
1845                 if(selected_point >= 0) {
1846                         mwindow->undo->update_undo_before(_("mask adjust"), 0);
1847                         gui->affected_point = selected_point;
1848
1849                         if(selected_control_point == 0)
1850                                 gui->current_operation = CWINDOW_MASK_CONTROL_IN;
1851                         else
1852                         if(selected_control_point == 1)
1853                                 gui->current_operation = CWINDOW_MASK_CONTROL_OUT;
1854                         else
1855                                 gui->current_operation = mwindow->edl->session->cwindow_operation;
1856                 }
1857                 else // No existing point or control point was selected so create a new one
1858                 if(!gui->ctrl_down() && !gui->alt_down()) {
1859                         mwindow->undo->update_undo_before(_("mask point"), 0);
1860 // Create the template
1861                         MaskPoint *point = new MaskPoint;
1862                         point->x = mask_cursor_x;
1863                         point->y = mask_cursor_y;
1864                         point->control_x1 = 0;
1865                         point->control_y1 = 0;
1866                         point->control_x2 = 0;
1867                         point->control_y2 = 0;
1868
1869
1870                         if(shortest_point2 < shortest_point1) {
1871                                 shortest_point2 ^= shortest_point1;
1872                                 shortest_point1 ^= shortest_point2;
1873                                 shortest_point2 ^= shortest_point1;
1874                         }
1875
1876
1877
1878 // printf("CWindowGUI::do_mask 40\n");
1879 // mwindow->edl->dump();
1880 // printf("CWindowGUI::do_mask 50\n");
1881
1882
1883
1884 //printf("CWindowCanvas::do_mask 1 %f %f %d %d\n",
1885 //      shortest_line_distance, shortest_point_distance, shortest_point1, shortest_point2);
1886 //printf("CWindowCanvas::do_mask %d %d\n", shortest_point1, shortest_point2);
1887
1888 // Append to end of list
1889                         if( shortest_point1 == shortest_point2 ||
1890                             labs(shortest_point1 - shortest_point2) > 1) {
1891 #ifdef USE_KEYFRAME_SPANNING
1892
1893                                 MaskPoint *new_point = new MaskPoint;
1894                                 points.append(new_point);
1895                                 *new_point = *point;
1896                                 gui->affected_point = points.size() - 1;
1897
1898 #else
1899
1900 // Need to apply the new point to every keyframe
1901                                 for(MaskAuto *current = (MaskAuto*)mask_autos->default_auto; current; ) {
1902                                         SubMask *submask = current->get_submask(mwindow->edl->session->cwindow_mask);
1903                                         MaskPoint *new_point = new MaskPoint;
1904                                         submask->points.append(new_point);
1905                                         *new_point = *point;
1906                                         if(current == (MaskAuto*)mask_autos->default_auto)
1907                                                 current = (MaskAuto*)mask_autos->first;
1908                                         else
1909                                                 current = (MaskAuto*)NEXT;
1910                                 }
1911                                 gui->affected_point = mask->points.size() - 1;
1912 #endif
1913
1914                                 result = 1;
1915                         }
1916                         else
1917 // Insert between 2 points, shifting back point 2
1918                         if(shortest_point1 >= 0 && shortest_point2 >= 0) {
1919
1920 #ifdef USE_KEYFRAME_SPANNING
1921 // In case the keyframe point count isn't synchronized with the rest of the keyframes,
1922 // avoid a crash.
1923                                 if(points.size() >= shortest_point2) {
1924                                         MaskPoint *new_point = new MaskPoint;
1925                                         points.append(0);
1926                                         for(int i = points.size() - 1;
1927                                                 i > shortest_point2;
1928                                                 i--)
1929                                                 points.values[i] = points.values[i - 1];
1930                                         points.values[shortest_point2] = new_point;
1931
1932                                         *new_point = *point;
1933                                 }
1934
1935 #else
1936
1937                                 for(MaskAuto *current = (MaskAuto*)mask_autos->default_auto; current; ) {
1938                                         SubMask *submask = current->get_submask(mwindow->edl->session->cwindow_mask);
1939 // In case the keyframe point count isn't synchronized with the rest of the keyframes,
1940 // avoid a crash.
1941                                         if(submask->points.size() >= shortest_point2) {
1942                                                 MaskPoint *new_point = new MaskPoint;
1943                                                 submask->points.append(0);
1944                                                 for(int i = submask->points.size() - 1;
1945                                                         i > shortest_point2;
1946                                                         i--)
1947                                                         submask->points.values[i] = submask->points.values[i - 1];
1948                                                 submask->points.values[shortest_point2] = new_point;
1949
1950                                                 *new_point = *point;
1951                                         }
1952
1953                                         if(current == (MaskAuto*)mask_autos->default_auto)
1954                                                 current = (MaskAuto*)mask_autos->first;
1955                                         else
1956                                                 current = (MaskAuto*)NEXT;
1957                                 }
1958
1959 #endif
1960                                 gui->affected_point = shortest_point2;
1961                                 result = 1;
1962                         }
1963
1964
1965 // printf("CWindowGUI::do_mask 20\n");
1966 // mwindow->edl->dump();
1967 // printf("CWindowGUI::do_mask 30\n");
1968
1969                         if(!result) {
1970 //printf("CWindowCanvas::do_mask 1\n");
1971 // Create the first point.
1972 #ifdef USE_KEYFRAME_SPANNING
1973                                 MaskPoint *new_point = new MaskPoint;
1974                                 points.append(new_point);
1975                                 *new_point = *point;
1976                                 gui->affected_point = points.size() - 1;
1977 #else
1978                                 for(MaskAuto *current = (MaskAuto*)mask_autos->default_auto; current; ) {
1979                                         SubMask *submask = current->get_submask(mwindow->edl->session->cwindow_mask);
1980                                         MaskPoint *new_point = new MaskPoint;
1981                                         submask->points.append(new_point);
1982                                         *new_point = *point;
1983                                         if(current == (MaskAuto*)mask_autos->default_auto)
1984                                                 current = (MaskAuto*)mask_autos->first;
1985                                         else
1986                                                 current = (MaskAuto*)NEXT;
1987                                 }
1988                                 gui->affected_point = points.size() - 1;
1989 #endif
1990
1991 //printf("CWindowCanvas::do_mask 3 %d\n", mask->points.size());
1992                         }
1993
1994                         gui->current_operation = mwindow->edl->session->cwindow_operation;
1995 // Delete the template
1996                         delete point;
1997                 }
1998
1999                 result = 1;
2000                 rerender = 1;
2001                 redraw = 1;
2002         }
2003
2004         if(button_press && result) {
2005 #ifdef USE_KEYFRAME_SPANNING
2006                 MaskPoints &mask_points = points;
2007 #else
2008                 SubMask *mask = gui->mask_keyframe->get_submask(mwindow->edl->session->cwindow_mask);
2009                 MaskPoints &mask_points = mask->points;
2010 #endif
2011                 int k = gui->affected_point;
2012                 if( k >= 0 && k < mask_points.size() ) {
2013                         MaskPoint *point = mask_points.values[k];
2014                         gui->center_x = point->x;
2015                         gui->center_y = point->y;
2016                         gui->control_in_x = point->control_x1;
2017                         gui->control_in_y = point->control_y1;
2018                         gui->control_out_x = point->control_x2;
2019                         gui->control_out_y = point->control_y2;
2020                 }
2021                 else {
2022                         gui->center_x = gui->center_y = 0;
2023                         gui->control_in_x = gui->control_in_y = 0;
2024                         gui->control_out_x = gui->control_out_y = 0;
2025                 }
2026                 gui->tool_panel->raise_window();
2027         }
2028
2029 //printf("CWindowCanvas::do_mask 8\n");
2030         if( cursor_motion ) {
2031
2032 #ifdef USE_KEYFRAME_SPANNING
2033 // Must update the reference keyframes for every cursor motion
2034                 gui->mask_keyframe = (MaskAuto*)gui->cwindow->
2035                         calculate_affected_auto(mask_autos, 0);
2036                 gui->orig_mask_keyframe->copy_data(gui->mask_keyframe);
2037 #endif
2038
2039 //printf("CWindowCanvas::do_mask %d %d\n", __LINE__, gui->affected_point);
2040
2041                 SubMask *mask = gui->mask_keyframe->get_submask(mwindow->edl->session->cwindow_mask);
2042                 if( mask && gui->affected_point >= 0 &&
2043                     gui->affected_point < mask->points.size() &&
2044                     gui->current_operation != CWINDOW_NONE ) {
2045 //                      mwindow->undo->update_undo_before(_("mask point"), this);
2046 #ifdef USE_KEYFRAME_SPANNING
2047                         MaskPoints &mask_points = points;
2048 #else
2049                         MaskPoints &mask_points = mask->points;
2050 #endif
2051                         MaskPoint *point = mask_points.get(gui->affected_point);
2052 //                      canvas_to_output(mwindow->edl, 0, cursor_x, cursor_y);
2053 //printf("CWindowCanvas::do_mask 9 %d %d\n", mask_points.size(), gui->affected_point);
2054
2055                         float last_x = point->x;
2056                         float last_y = point->y;
2057                         float last_control_x1 = point->control_x1;
2058                         float last_control_y1 = point->control_y1;
2059                         float last_control_x2 = point->control_x2;
2060                         float last_control_y2 = point->control_y2;
2061                         int rotate = 0;
2062
2063                         switch(gui->current_operation) {
2064                         case CWINDOW_MASK:
2065 //printf("CWindowCanvas::do_mask %d %d\n", __LINE__, gui->affected_point);
2066                                 point->x = mask_cursor_x - gui->x_origin + gui->center_x;
2067                                 point->y = mask_cursor_y - gui->y_origin + gui->center_y;
2068                                 break;
2069
2070                         case CWINDOW_MASK_CONTROL_IN:
2071                                 point->control_x1 = mask_cursor_x - gui->x_origin + gui->control_in_x;
2072                                 point->control_y1 = mask_cursor_y - gui->y_origin + gui->control_in_y;
2073                                 break;
2074
2075                         case CWINDOW_MASK_CONTROL_OUT:
2076                                 point->control_x2 = mask_cursor_x - gui->x_origin + gui->control_out_x;
2077                                 point->control_y2 = mask_cursor_y - gui->y_origin + gui->control_out_y;
2078                                 break;
2079
2080                         case CWINDOW_MASK_TRANSLATE: {
2081                                 if( !mask_gui ) break;
2082                                 MaskAuto *keyframe = gui->mask_keyframe;
2083                                 int gang = mask_gui->gang_focus->get_value();
2084                                 float dx = mask_cursor_x - gui->x_origin;
2085                                 float dy = mask_cursor_y - gui->y_origin;
2086                                 if( !dx && !dy ) break;
2087                                 int k = mwindow->edl->session->cwindow_mask;
2088                                 int n = gang ? keyframe->masks.size() : k+1;
2089                                 for( int j=gang? 0 : k; j<n; ++j ) {
2090                                         if( !mask_gui->mask_enables[j]->get_value() ) continue;
2091                                         SubMask *sub_mask = keyframe->get_submask(j);
2092                                         if( !sub_mask ) continue;
2093                                         MaskPoints &points = sub_mask->points;
2094                                         for( int i=0; i<points.size(); ++i ) {
2095                                                 MaskPoint *point = points[i];
2096                                                 point->x += dx;
2097                                                 point->y += dy;
2098                                         }
2099                                 }
2100                                 gui->x_origin = mask_cursor_x;
2101                                 gui->y_origin = mask_cursor_y;
2102                                 rerender = 1;
2103                                 redraw = 1;
2104                                 update_points = 0;
2105                                 break; }
2106                         case CWINDOW_MASK_ROTATE:
2107                                 rotate = 1;
2108                         case CWINDOW_MASK_SCALE: {
2109                                 if( !mask_gui || !mask_points.size() ) break;
2110                                 float cx = gui->x_origin, cy = gui->y_origin;
2111                                 if( mask_gui->focused ) {
2112                                         cx = atof(mask_gui->focus_x->get_text());
2113                                         cy = atof(mask_gui->focus_y->get_text());
2114                                 }
2115                                 else if( !gui->ctrl_down() ) {
2116                                         cx = cy = 0;
2117                                         int n = mask_points.size();
2118                                         for( int i=0; i<n; ++i ) {
2119                                                 MaskPoint *point = mask_points.values[i];
2120                                                 cx += point->x;  cy += point->y;
2121                                         }
2122                                         cx /= n;  cy /= n;
2123                                         mask_gui->set_focused(0, cx, cy);
2124                                 }
2125                                 gui->x_origin = cx;
2126                                 gui->y_origin = cy;
2127                                 double accel =
2128                                         gui->get_triple_click() ? 8. :
2129                                         gui->get_double_click() ? 4. :
2130                                         1.;
2131                                 int button_no = get_buttonpress();
2132                                 double ds = accel/64., dt = accel*M_PI/360.;
2133                                 double scale = button_no == WHEEL_UP ? 1.+ds : 1.-ds;
2134                                 int mode = mask_gui->scale_mode;
2135                                 double xscale = !rotate && (mode == 0 || mode == 2 ) ? scale : 1.;
2136                                 double yscale = !rotate && (mode == 1 || mode == 2 ) ? scale : 1.;
2137                                 double theta = button_no == WHEEL_UP ? dt : -dt;
2138                                 if( rotate ? theta==0 : scale==1 ) break;
2139                                 float st = sin(theta), ct = cos(theta);
2140                                 MaskAuto *keyframe = gui->mask_keyframe;
2141                                 int gang = mask_gui->gang_focus->get_value();
2142                                 int k = mwindow->edl->session->cwindow_mask;
2143                                 int n = gang ? keyframe->masks.size() : k+1;
2144                                 for( int j=gang? 0 : k; j<n; ++j ) {
2145                                         if( !mask_gui->mask_enables[j]->get_value() ) continue;
2146                                         SubMask *sub_mask = keyframe->get_submask(j);
2147                                         if( !sub_mask ) continue;
2148                                         MaskPoints &points = sub_mask->points;
2149                                         for( int i=0; i<points.size(); ++i ) {
2150                                                 MaskPoint *point = points[i];
2151                                                 float px = point->x - gui->x_origin;
2152                                                 float py = point->y - gui->y_origin;
2153                                                 float nx = !rotate ? px*xscale : px*ct + py*st;
2154                                                 float ny = !rotate ? py*yscale : py*ct - px*st;
2155                                                 point->x = nx + gui->x_origin;
2156                                                 point->y = ny + gui->y_origin;
2157                                                 px = point->control_x1;  py = point->control_y1;
2158                                                 point->control_x1 = !rotate ? px*xscale : px*ct + py*st;
2159                                                 point->control_y1 = !rotate ? py*yscale : py*ct - px*st;
2160                                                 px = point->control_x2;  py = point->control_y2;
2161                                                 point->control_x2 = !rotate ? px*xscale : px*ct + py*st;
2162                                                 point->control_y2 = !rotate ? py*yscale : py*ct - px*st;
2163                                         }
2164                                 }
2165                                 rerender = 1;
2166                                 redraw = 1;
2167                                 update_points = 0;
2168                                 break; }
2169                         }
2170
2171                         if( !(rerender && redraw) && (!EQUIV(last_x, point->x) ||
2172                                 !EQUIV(last_y, point->y) ||
2173                                 !EQUIV(last_control_x1, point->control_x1) ||
2174                                 !EQUIV(last_control_y1, point->control_y1) ||
2175                                 !EQUIV(last_control_x2, point->control_x2) ||
2176                                 !EQUIV(last_control_y2, point->control_y2)) ) {
2177                                 rerender = 1;
2178                                 redraw = 1;
2179                         }
2180                 }
2181                 else
2182                 if(gui->current_operation == CWINDOW_NONE) {
2183 //                      printf("CWindowCanvas::do_mask %d\n", __LINE__);
2184                         int over_point = 0;
2185                         for(int i = 0; i < points.size() && !over_point; i++) {
2186                                 MaskPoint *point = points.get(i);
2187                                 float x0 = point->x;
2188                                 float y0 = point->y;
2189                                 float x1 = point->x + point->control_x1;
2190                                 float y1 = point->y + point->control_y1;
2191                                 float x2 = point->x + point->control_x2;
2192                                 float y2 = point->y + point->control_y2;
2193                                 float canvas_x0 = (x0 - half_track_w) * projector_z + projector_x;
2194                                 float canvas_y0 = (y0 - half_track_h) * projector_z + projector_y;
2195
2196                                 output_to_canvas(mwindow->edl, 0, canvas_x0, canvas_y0);
2197                                 if(test_bbox(cursor_x, cursor_y, canvas_x0, canvas_y0)) {
2198                                         over_point = 1;
2199                                 }
2200
2201                                 if(!over_point && gui->ctrl_down()) {
2202                                         float canvas_x1 = (x1 - half_track_w) * projector_z + projector_x;
2203                                         float canvas_y1 = (y1 - half_track_h) * projector_z + projector_y;
2204                                         output_to_canvas(mwindow->edl, 0, canvas_x1, canvas_y1);
2205                                         if(test_bbox(cursor_x, cursor_y, canvas_x1, canvas_y1)) {
2206                                                 over_point = 1;
2207                                         }
2208                                         else {
2209                                                 float canvas_x2 = (x2 - half_track_w) * projector_z + projector_x;
2210                                                 float canvas_y2 = (y2 - half_track_h) * projector_z + projector_y;
2211                                                 output_to_canvas(mwindow->edl, 0, canvas_x2, canvas_y2);
2212                                                 if(test_bbox(cursor_x, cursor_y, canvas_x2, canvas_y2)) {
2213                                                         over_point = 1;
2214                                                 }
2215                                         }
2216                                 }
2217                         }
2218
2219                         set_cursor( over_point ? ARROW_CURSOR : CROSS_CURSOR );
2220                 }
2221
2222                 result = 1;
2223         }
2224 //printf("CWindowCanvas::do_mask 2 %d %d %d\n", result, rerender, redraw);
2225
2226
2227 #ifdef USE_KEYFRAME_SPANNING
2228 // Must commit change after operation.
2229         if(rerender && track) {
2230 // Swap EDL keyframe with original.
2231 // Apply new values to keyframe span
2232                 MaskAuto temp_keyframe(mwindow->edl, mask_autos);
2233                 temp_keyframe.copy_data(gui->mask_keyframe);
2234 // Apply interpolated points back to keyframe
2235                 if( update_points )
2236                         temp_keyframe.set_points(&points, mwindow->edl->session->cwindow_mask);
2237                 gui->mask_keyframe->copy_data(gui->orig_mask_keyframe);
2238                 mask_autos->update_parameter(&temp_keyframe);
2239         }
2240 #endif
2241 //printf("CWindowCanvas::do_mask 20\n");
2242
2243         if( draw && draw_boundary && !draw_markers ) {
2244                 BC_WindowBase *cvs_win = get_canvas();
2245                 cvs_win->set_inverse();
2246                 cvs_win->set_color(RED+GREEN);
2247                 for( int k=0; k<SUBMASKS; ++k ) {
2248                         if( k == mwindow->edl->session->cwindow_mask ) continue;
2249                         points.remove_all_objects();
2250                         if( use_interpolated )
2251                                 mask_autos->get_points(&points, k, position, PLAY_FORWARD);
2252                         else
2253                                 prev_mask->get_points(&points, k);
2254                         MaskEdge edge;
2255                         edge.load(points, 0);
2256                         for( int i=0; i<edge.size(); ++i ) {
2257                                 MaskCoord a = edge[i];
2258                                 MaskCoord b = i<edge.size()-1 ? edge[i+1] : edge[0];
2259                                 float ax = a.x, ay = a.y;
2260                                 float bx = b.x, by = b.y;
2261                                 output_to_canvas(mwindow->edl, 0, ax, ay);
2262                                 output_to_canvas(mwindow->edl, 0, bx, by);
2263                                 cvs_win->draw_line(ax,ay, bx,by);
2264                         }
2265                 }
2266         }
2267
2268         return result;
2269 }
2270
2271 int CWindowCanvas::do_mask_focus()
2272 {
2273         CWindowMaskGUI *mask_gui = (CWindowMaskGUI*) gui->tool_panel->tool_gui;
2274         float cx = get_cursor_x(), cy = get_cursor_y();
2275         canvas_to_output(mwindow->edl, 0, cx, cy);
2276         mask_gui->set_focused(1, cx, cy);
2277         return 1;
2278 }
2279
2280 int CWindowCanvas::do_eyedrop(int &rerender, int button_press, int draw)
2281 {
2282         int result = 0;
2283         int radius = mwindow->edl->session->eyedrop_radius;
2284         int row1 = 0;
2285         int row2 = 0;
2286         int column1 = 0;
2287         int column2 = 0;
2288
2289
2290
2291         if(refresh_frame && refresh_frame->get_w()>0 && refresh_frame->get_h()>0)
2292         {
2293
2294                 if(draw)
2295                 {
2296                         row1 = gui->eyedrop_y - radius;
2297                         row2 = gui->eyedrop_y + radius;
2298                         column1 = gui->eyedrop_x - radius;
2299                         column2 = gui->eyedrop_x + radius;
2300
2301                         CLAMP(row1, 0, refresh_frame->get_h() - 1);
2302                         CLAMP(row2, 0, refresh_frame->get_h() - 1);
2303                         CLAMP(column1, 0, refresh_frame->get_w() - 1);
2304                         CLAMP(column2, 0, refresh_frame->get_w() - 1);
2305
2306                         if(row2 <= row1) row2 = row1 + 1;
2307                         if(column2 <= column1) column2 = column1 + 1;
2308
2309                         float x1 = column1;
2310                         float y1 = row1;
2311                         float x2 = column2;
2312                         float y2 = row2;
2313
2314                         output_to_canvas(mwindow->edl, 0, x1, y1);
2315                         output_to_canvas(mwindow->edl, 0, x2, y2);
2316 //printf("CWindowCanvas::do_eyedrop %d %f %f %f %f\n", __LINE__, x1, x2, y1, y2);
2317
2318                         if(x2 - x1 >= 1 && y2 - y1 >= 1)
2319                         {
2320                                 get_canvas()->set_inverse();
2321                                 get_canvas()->set_color(WHITE);
2322
2323                                 get_canvas()->draw_rectangle((int)x1,
2324                                         (int)y1,
2325                                         (int)(x2 - x1),
2326                                         (int)(y2 - y1));
2327
2328                                 get_canvas()->set_opaque();
2329                                 get_canvas()->flash();
2330                         }
2331                         return 0;
2332                 }
2333         }
2334
2335         if(button_press)
2336         {
2337                 gui->current_operation = CWINDOW_EYEDROP;
2338                 gui->tool_panel->raise_window();
2339         }
2340
2341         if(gui->current_operation == CWINDOW_EYEDROP)
2342         {
2343                 mwindow->undo->update_undo_before(_("Eyedrop"), this);
2344
2345 // Get color out of frame.
2346 // Doesn't work during playback because that bypasses the refresh frame.
2347                 if(refresh_frame && refresh_frame->get_w()>0 && refresh_frame->get_h()>0)
2348                 {
2349                         float cursor_x = get_cursor_x();
2350                         float cursor_y = get_cursor_y();
2351                         canvas_to_output(mwindow->edl, 0, cursor_x, cursor_y);
2352                         CLAMP(cursor_x, 0, refresh_frame->get_w() - 1);
2353                         CLAMP(cursor_y, 0, refresh_frame->get_h() - 1);
2354
2355                         row1 = cursor_y - radius;
2356                         row2 = cursor_y + radius;
2357                         column1 = cursor_x - radius;
2358                         column2 = cursor_x + radius;
2359                         CLAMP(row1, 0, refresh_frame->get_h() - 1);
2360                         CLAMP(row2, 0, refresh_frame->get_h() - 1);
2361                         CLAMP(column1, 0, refresh_frame->get_w() - 1);
2362                         CLAMP(column2, 0, refresh_frame->get_w() - 1);
2363                         if(row2 <= row1) row2 = row1 + 1;
2364                         if(column2 <= column1) column2 = column1 + 1;
2365
2366
2367 // hide it
2368                         if(gui->eyedrop_visible)
2369                         {
2370                                 int temp;
2371                                 do_eyedrop(temp, 0, 1);
2372                                 gui->eyedrop_visible = 0;
2373                         }
2374
2375                         gui->eyedrop_x = cursor_x;
2376                         gui->eyedrop_y = cursor_y;
2377
2378 // show it
2379                         {
2380                                 int temp;
2381                                 do_eyedrop(temp, 0, 1);
2382                                 gui->eyedrop_visible = 1;
2383                         }
2384
2385 // Decompression coefficients straight out of jpeglib
2386 #define V_TO_R    1.40200
2387 #define V_TO_G    -0.71414
2388
2389 #define U_TO_G    -0.34414
2390 #define U_TO_B    1.77200
2391
2392 #define GET_COLOR(type, components, max, do_yuv) \
2393 { \
2394         type *row = (type*)(refresh_frame->get_rows()[i]) + \
2395                 j * components; \
2396         float red = (float)*row++ / max; \
2397         float green = (float)*row++ / max; \
2398         float blue = (float)*row++ / max; \
2399         if(do_yuv) \
2400         { \
2401                 float r = red + V_TO_R * (blue - 0.5); \
2402                 float g = red + U_TO_G * (green - 0.5) + V_TO_G * (blue - 0.5); \
2403                 float b = red + U_TO_B * (green - 0.5); \
2404                 mwindow->edl->local_session->red += r; \
2405                 mwindow->edl->local_session->green += g; \
2406                 mwindow->edl->local_session->blue += b; \
2407                 if(r > mwindow->edl->local_session->red_max) mwindow->edl->local_session->red_max = r; \
2408                 if(g > mwindow->edl->local_session->green_max) mwindow->edl->local_session->green_max = g; \
2409                 if(b > mwindow->edl->local_session->blue_max) mwindow->edl->local_session->blue_max = b; \
2410         } \
2411         else \
2412         { \
2413                 mwindow->edl->local_session->red += red; \
2414                 mwindow->edl->local_session->green += green; \
2415                 mwindow->edl->local_session->blue += blue; \
2416                 if(red > mwindow->edl->local_session->red_max) mwindow->edl->local_session->red_max = red; \
2417                 if(green > mwindow->edl->local_session->green_max) mwindow->edl->local_session->green_max = green; \
2418                 if(blue > mwindow->edl->local_session->blue_max) mwindow->edl->local_session->blue_max = blue; \
2419         } \
2420 }
2421
2422
2423
2424                         mwindow->edl->local_session->red = 0;
2425                         mwindow->edl->local_session->green = 0;
2426                         mwindow->edl->local_session->blue = 0;
2427                         mwindow->edl->local_session->red_max = 0;
2428                         mwindow->edl->local_session->green_max = 0;
2429                         mwindow->edl->local_session->blue_max = 0;
2430                         for(int i = row1; i < row2; i++)
2431                         {
2432                                 for(int j = column1; j < column2; j++)
2433                                 {
2434                                         switch(refresh_frame->get_color_model())
2435                                         {
2436                                                 case BC_YUV888:
2437                                                         GET_COLOR(unsigned char, 3, 0xff, 1);
2438                                                         break;
2439                                                 case BC_YUVA8888:
2440                                                         GET_COLOR(unsigned char, 4, 0xff, 1);
2441                                                         break;
2442                                                 case BC_YUV161616:
2443                                                         GET_COLOR(uint16_t, 3, 0xffff, 1);
2444                                                         break;
2445                                                 case BC_YUVA16161616:
2446                                                         GET_COLOR(uint16_t, 4, 0xffff, 1);
2447                                                         break;
2448                                                 case BC_RGB888:
2449                                                         GET_COLOR(unsigned char, 3, 0xff, 0);
2450                                                         break;
2451                                                 case BC_RGBA8888:
2452                                                         GET_COLOR(unsigned char, 4, 0xff, 0);
2453                                                         break;
2454                                                 case BC_RGB_FLOAT:
2455                                                         GET_COLOR(float, 3, 1.0, 0);
2456                                                         break;
2457                                                 case BC_RGBA_FLOAT:
2458                                                         GET_COLOR(float, 4, 1.0, 0);
2459                                                         break;
2460                                         }
2461                                 }
2462                         }
2463
2464                         mwindow->edl->local_session->red /= (row2 - row1) * (column2 - column1);
2465                         mwindow->edl->local_session->green /= (row2 - row1) * (column2 - column1);
2466                         mwindow->edl->local_session->blue /= (row2 - row1) * (column2 - column1);
2467
2468                 }
2469                 else
2470                 {
2471                         mwindow->edl->local_session->red = 0;
2472                         mwindow->edl->local_session->green = 0;
2473                         mwindow->edl->local_session->blue = 0;
2474                         gui->eyedrop_visible = 0;
2475                 }
2476
2477
2478                 gui->update_tool();
2479
2480
2481
2482                 result = 1;
2483 // Can't rerender since the color value is from the output of any effect it
2484 // goes into.
2485 //              rerender = 1;
2486                 mwindow->undo->update_undo_after(_("Eyedrop"), LOAD_SESSION);
2487         }
2488
2489         return result;
2490 }
2491
2492 int CWindowCanvas::need_overlays()
2493 {
2494         if( mwindow->edl->session->safe_regions ) return 1;
2495         if( mwindow->edl->session->cwindow_scrollbars ) return 1;
2496         if( gui->highlighted ) return 1;
2497         switch( mwindow->edl->session->cwindow_operation ) {
2498                 case CWINDOW_EYEDROP:
2499                         if( ! gui->eyedrop_visible ) break;
2500                 case CWINDOW_CAMERA:
2501                 case CWINDOW_PROJECTOR:
2502                 case CWINDOW_CROP:
2503                 case CWINDOW_MASK:
2504                 case CWINDOW_RULER:
2505                         return 1;
2506         }
2507         return 0;
2508 }
2509
2510 void CWindowCanvas::draw_overlays()
2511 {
2512         if(mwindow->edl->session->safe_regions)
2513         {
2514                 draw_safe_regions();
2515         }
2516
2517         if(mwindow->edl->session->cwindow_scrollbars)
2518         {
2519 // Always draw output rectangle
2520                 float x1, y1, x2, y2;
2521                 x1 = 0;
2522                 x2 = mwindow->edl->session->output_w;
2523                 y1 = 0;
2524                 y2 = mwindow->edl->session->output_h;
2525                 output_to_canvas(mwindow->edl, 0, x1, y1);
2526                 output_to_canvas(mwindow->edl, 0, x2, y2);
2527
2528                 get_canvas()->set_inverse();
2529                 get_canvas()->set_color(WHITE);
2530
2531                 get_canvas()->draw_rectangle((int)x1,
2532                                 (int)y1,
2533                                 (int)(x2 - x1),
2534                                 (int)(y2 - y1));
2535
2536                 get_canvas()->set_opaque();
2537         }
2538
2539         if(gui->highlighted)
2540         {
2541                 get_canvas()->set_color(WHITE);
2542                 get_canvas()->set_inverse();
2543                 get_canvas()->draw_rectangle(0, 0, get_canvas()->get_w(), get_canvas()->get_h());
2544                 get_canvas()->draw_rectangle(1, 1, get_canvas()->get_w() - 2, get_canvas()->get_h() - 2);
2545                 get_canvas()->set_opaque();
2546         }
2547
2548         int temp1 = 0, temp2 = 0;
2549 //printf("CWindowCanvas::draw_overlays 1 %d\n", mwindow->edl->session->cwindow_operation);
2550         switch(mwindow->edl->session->cwindow_operation)
2551         {
2552                 case CWINDOW_CAMERA:
2553                         draw_outlines(1);
2554                         break;
2555
2556                 case CWINDOW_PROJECTOR:
2557                         draw_outlines(0);
2558                         break;
2559
2560                 case CWINDOW_CROP:
2561                         draw_crop();
2562                         break;
2563
2564                 case CWINDOW_MASK:
2565                         do_mask(temp1, temp2, 0, 0, 1);
2566                         break;
2567
2568                 case CWINDOW_RULER:
2569                         do_ruler(1, 0, 0, 0);
2570                         break;
2571
2572                 case CWINDOW_EYEDROP:
2573                 if(gui->eyedrop_visible)
2574                 {
2575                         int rerender;
2576                         do_eyedrop(rerender, 0, 1);
2577                         gui->eyedrop_visible = 1;
2578                         break;
2579                 }
2580         }
2581 }
2582
2583 void CWindowCanvas::draw_safe_regions()
2584 {
2585         float action_x1, action_x2, action_y1, action_y2;
2586         float title_x1, title_x2, title_y1, title_y2;
2587
2588         action_x1 = mwindow->edl->session->output_w / 2 - mwindow->edl->session->output_w / 2 * 0.9;
2589         action_x2 = mwindow->edl->session->output_w / 2 + mwindow->edl->session->output_w / 2 * 0.9;
2590         action_y1 = mwindow->edl->session->output_h / 2 - mwindow->edl->session->output_h / 2 * 0.9;
2591         action_y2 = mwindow->edl->session->output_h / 2 + mwindow->edl->session->output_h / 2 * 0.9;
2592         title_x1 = mwindow->edl->session->output_w / 2 - mwindow->edl->session->output_w / 2 * 0.8;
2593         title_x2 = mwindow->edl->session->output_w / 2 + mwindow->edl->session->output_w / 2 * 0.8;
2594         title_y1 = mwindow->edl->session->output_h / 2 - mwindow->edl->session->output_h / 2 * 0.8;
2595         title_y2 = mwindow->edl->session->output_h / 2 + mwindow->edl->session->output_h / 2 * 0.8;
2596
2597         output_to_canvas(mwindow->edl, 0, action_x1, action_y1);
2598         output_to_canvas(mwindow->edl, 0, action_x2, action_y2);
2599         output_to_canvas(mwindow->edl, 0, title_x1, title_y1);
2600         output_to_canvas(mwindow->edl, 0, title_x2, title_y2);
2601
2602         get_canvas()->set_inverse();
2603         get_canvas()->set_color(WHITE);
2604
2605         get_canvas()->draw_rectangle((int)action_x1,
2606                         (int)action_y1,
2607                         (int)(action_x2 - action_x1),
2608                         (int)(action_y2 - action_y1));
2609         get_canvas()->draw_rectangle((int)title_x1,
2610                         (int)title_y1,
2611                         (int)(title_x2 - title_x1),
2612                         (int)(title_y2 - title_y1));
2613
2614         get_canvas()->set_opaque();
2615 }
2616
2617
2618 void CWindowCanvas::create_keyframe(int do_camera)
2619 {
2620         Track *affected_track = gui->cwindow->calculate_affected_track();
2621         if( affected_track ) {
2622                 double pos = mwindow->edl->local_session->get_selectionstart(1);
2623                 int64_t position = affected_track->to_units(pos, 0);
2624                 int ix = do_camera ? AUTOMATION_CAMERA_X : AUTOMATION_PROJECTOR_X;
2625                 int iy = do_camera ? AUTOMATION_CAMERA_Y : AUTOMATION_PROJECTOR_Y;
2626                 int iz = do_camera ? AUTOMATION_CAMERA_Z : AUTOMATION_PROJECTOR_Z;
2627                 FloatAuto *prev, *next;
2628                 FloatAutos **autos = (FloatAutos**)affected_track->automation->autos;
2629                 FloatAutos *x_autos = autos[ix];  prev = 0;  next = 0;
2630                 float x_value = x_autos->get_value(position, PLAY_FORWARD, prev, next);
2631                 FloatAutos *y_autos = autos[iy];  prev = 0;  next = 0;
2632                 float y_value = y_autos->get_value(position, PLAY_FORWARD, prev, next);
2633                 FloatAutos *z_autos = autos[iz];  prev = 0;  next = 0;
2634                 float z_value = z_autos->get_value(position, PLAY_FORWARD, prev, next);
2635                 FloatAuto *x_keyframe = 0, *y_keyframe = 0, *z_keyframe = 0;
2636
2637                 gui->cwindow->calculate_affected_autos(affected_track,
2638                         &x_keyframe, &y_keyframe, &z_keyframe,
2639                         do_camera, -1, -1, -1, 0);
2640                 x_keyframe->set_value(x_value);
2641                 y_keyframe->set_value(y_value);
2642                 z_keyframe->set_value(z_value);
2643
2644                 gui->sync_parameters(CHANGE_PARAMS, 1, 1);
2645         }
2646 }
2647
2648 void CWindowCanvas::camera_keyframe() { create_keyframe(1); }
2649 void CWindowCanvas::projector_keyframe() { create_keyframe(0); }
2650
2651 void CWindowCanvas::reset_keyframe(int do_camera)
2652 {
2653         Track *affected_track = gui->cwindow->calculate_affected_track();
2654         if( affected_track ) {
2655                 FloatAuto *x_keyframe = 0, *y_keyframe = 0, *z_keyframe = 0;
2656                 gui->cwindow->calculate_affected_autos(affected_track,
2657                         &x_keyframe, &y_keyframe, &z_keyframe,
2658                         do_camera, 1, 1, 1);
2659
2660                 x_keyframe->set_value(0);
2661                 y_keyframe->set_value(0);
2662                 z_keyframe->set_value(1);
2663
2664                 gui->sync_parameters(CHANGE_PARAMS, 1, 1);
2665         }
2666 }
2667
2668 void CWindowCanvas::reset_camera() { reset_keyframe(1); }
2669 void CWindowCanvas::reset_projector() { reset_keyframe(0); }
2670
2671
2672 int CWindowCanvas::test_crop(int button_press, int &redraw)
2673 {
2674         int result = 0;
2675         int handle_selected = -1;
2676         float x1 = mwindow->edl->session->crop_x1;
2677         float y1 = mwindow->edl->session->crop_y1;
2678         float x2 = mwindow->edl->session->crop_x2;
2679         float y2 = mwindow->edl->session->crop_y2;
2680         float cursor_x = get_cursor_x();
2681         float cursor_y = get_cursor_y();
2682         float canvas_x1 = x1;
2683         float canvas_y1 = y1;
2684         float canvas_x2 = x2;
2685         float canvas_y2 = y2;
2686         float canvas_cursor_x = cursor_x;
2687         float canvas_cursor_y = cursor_y;
2688
2689         canvas_to_output(mwindow->edl, 0, cursor_x, cursor_y);
2690 // Use screen normalized coordinates for hot spot tests.
2691         output_to_canvas(mwindow->edl, 0, canvas_x1, canvas_y1);
2692         output_to_canvas(mwindow->edl, 0, canvas_x2, canvas_y2);
2693
2694
2695         if(gui->current_operation == CWINDOW_CROP)
2696         {
2697                 handle_selected = gui->crop_handle;
2698         }
2699         else
2700         if(canvas_cursor_x >= canvas_x1 && canvas_cursor_x < canvas_x1 + CROPHANDLE_W &&
2701                 canvas_cursor_y >= canvas_y1 && canvas_cursor_y < canvas_y1 + CROPHANDLE_H)
2702         {
2703                 handle_selected = 0;
2704                 gui->crop_origin_x = x1;
2705                 gui->crop_origin_y = y1;
2706         }
2707         else
2708         if(canvas_cursor_x >= canvas_x2 - CROPHANDLE_W && canvas_cursor_x < canvas_x2 &&
2709                 canvas_cursor_y >= canvas_y1 && canvas_cursor_y < canvas_y1 + CROPHANDLE_H)
2710         {
2711                 handle_selected = 1;
2712                 gui->crop_origin_x = x2;
2713                 gui->crop_origin_y = y1;
2714         }
2715         else
2716         if(canvas_cursor_x >= canvas_x1 && canvas_cursor_x < canvas_x1 + CROPHANDLE_W &&
2717                 canvas_cursor_y >= canvas_y2 - CROPHANDLE_H && canvas_cursor_y < canvas_y2)
2718         {
2719                 handle_selected = 2;
2720                 gui->crop_origin_x = x1;
2721                 gui->crop_origin_y = y2;
2722         }
2723         else
2724         if(canvas_cursor_x >= canvas_x2 - CROPHANDLE_W && canvas_cursor_x < canvas_x2 &&
2725                 canvas_cursor_y >= canvas_y2 - CROPHANDLE_H && canvas_cursor_y < canvas_y2)
2726         {
2727                 handle_selected = 3;
2728                 gui->crop_origin_x = x2;
2729                 gui->crop_origin_y = y2;
2730         }
2731         else
2732 // Start new box
2733         {
2734                 gui->crop_origin_x = cursor_x;
2735                 gui->crop_origin_y = cursor_y;
2736         }
2737
2738 // printf("test crop %d %d\n",
2739 //      gui->current_operation,
2740 //      handle_selected);
2741
2742 // Start dragging.
2743         if(button_press)
2744         {
2745                 if(gui->alt_down())
2746                 {
2747                         gui->crop_translate = 1;
2748                         gui->crop_origin_x1 = x1;
2749                         gui->crop_origin_y1 = y1;
2750                         gui->crop_origin_x2 = x2;
2751                         gui->crop_origin_y2 = y2;
2752                 }
2753                 else
2754                         gui->crop_translate = 0;
2755
2756                 gui->current_operation = CWINDOW_CROP;
2757                 gui->crop_handle = handle_selected;
2758                 gui->x_origin = cursor_x;
2759                 gui->y_origin = cursor_y;
2760                 gui->tool_panel->raise_window();
2761                 result = 1;
2762
2763                 if(handle_selected < 0 && !gui->crop_translate)
2764                 {
2765                         x2 = x1 = cursor_x;
2766                         y2 = y1 = cursor_y;
2767                         mwindow->edl->session->crop_x1 = (int)x1;
2768                         mwindow->edl->session->crop_y1 = (int)y1;
2769                         mwindow->edl->session->crop_x2 = (int)x2;
2770                         mwindow->edl->session->crop_y2 = (int)y2;
2771                         redraw = 1;
2772                 }
2773         }
2774         else
2775 // Translate all 4 points
2776         if(gui->current_operation == CWINDOW_CROP && gui->crop_translate)
2777         {
2778                 x1 = cursor_x - gui->x_origin + gui->crop_origin_x1;
2779                 y1 = cursor_y - gui->y_origin + gui->crop_origin_y1;
2780                 x2 = cursor_x - gui->x_origin + gui->crop_origin_x2;
2781                 y2 = cursor_y - gui->y_origin + gui->crop_origin_y2;
2782
2783                 mwindow->edl->session->crop_x1 = (int)x1;
2784                 mwindow->edl->session->crop_y1 = (int)y1;
2785                 mwindow->edl->session->crop_x2 = (int)x2;
2786                 mwindow->edl->session->crop_y2 = (int)y2;
2787                 result = 1;
2788                 redraw = 1;
2789         }
2790         else
2791 // Update dragging
2792         if(gui->current_operation == CWINDOW_CROP)
2793         {
2794                 switch(gui->crop_handle)
2795                 {
2796                         case -1:
2797                                 x1 = gui->crop_origin_x;
2798                                 y1 = gui->crop_origin_y;
2799                                 x2 = gui->crop_origin_x;
2800                                 y2 = gui->crop_origin_y;
2801                                 if(cursor_x < gui->x_origin)
2802                                 {
2803                                         if(cursor_y < gui->y_origin)
2804                                         {
2805                                                 x1 = cursor_x;
2806                                                 y1 = cursor_y;
2807                                         }
2808                                         else
2809                                         if(cursor_y >= gui->y_origin)
2810                                         {
2811                                                 x1 = cursor_x;
2812                                                 y2 = cursor_y;
2813                                         }
2814                                 }
2815                                 else
2816                                 if(cursor_x  >= gui->x_origin)
2817                                 {
2818                                         if(cursor_y < gui->y_origin)
2819                                         {
2820                                                 y1 = cursor_y;
2821                                                 x2 = cursor_x;
2822                                         }
2823                                         else
2824                                         if(cursor_y >= gui->y_origin)
2825                                         {
2826                                                 x2 = cursor_x;
2827                                                 y2 = cursor_y;
2828                                         }
2829                                 }
2830
2831 // printf("test crop %d %d %d %d\n",
2832 //      mwindow->edl->session->crop_x1,
2833 //      mwindow->edl->session->crop_y1,
2834 //      mwindow->edl->session->crop_x2,
2835 //      mwindow->edl->session->crop_y2);
2836                                 break;
2837                         case 0:
2838                                 x1 = cursor_x - gui->x_origin + gui->crop_origin_x;
2839                                 y1 = cursor_y - gui->y_origin + gui->crop_origin_y;
2840                                 break;
2841                         case 1:
2842                                 x2 = cursor_x - gui->x_origin + gui->crop_origin_x;
2843                                 y1 = cursor_y - gui->y_origin + gui->crop_origin_y;
2844                                 break;
2845                         case 2:
2846                                 x1 = cursor_x - gui->x_origin + gui->crop_origin_x;
2847                                 y2 = cursor_y - gui->y_origin + gui->crop_origin_y;
2848                                 break;
2849                         case 3:
2850                                 x2 = cursor_x - gui->x_origin + gui->crop_origin_x;
2851                                 y2 = cursor_y - gui->y_origin + gui->crop_origin_y;
2852                                 break;
2853                 }
2854
2855                 if(!EQUIV(mwindow->edl->session->crop_x1, x1) ||
2856                         !EQUIV(mwindow->edl->session->crop_x2, x2) ||
2857                         !EQUIV(mwindow->edl->session->crop_y1, y1) ||
2858                         !EQUIV(mwindow->edl->session->crop_y2, y2))
2859                 {
2860                         if (x1 > x2)
2861                         {
2862                                 float tmp = x1;
2863                                 x1 = x2;
2864                                 x2 = tmp;
2865                                 switch (gui->crop_handle)
2866                                 {
2867                                         case 0: gui->crop_handle = 1; break;
2868                                         case 1: gui->crop_handle = 0; break;
2869                                         case 2: gui->crop_handle = 3; break;
2870                                         case 3: gui->crop_handle = 2; break;
2871                                         default: break;
2872                                 }
2873                         }
2874
2875                         if (y1 > y2)
2876                         {
2877                                 float tmp = y1;
2878                                 y1 = y2;
2879                                 y2 = tmp;
2880                                 switch (gui->crop_handle)
2881                                 {
2882                                         case 0: gui->crop_handle = 2; break;
2883                                         case 1: gui->crop_handle = 3; break;
2884                                         case 2: gui->crop_handle = 0; break;
2885                                         case 3: gui->crop_handle = 1; break;
2886                                         default: break;
2887                                 }
2888                         }
2889
2890                         mwindow->edl->session->crop_x1 = (int)x1;
2891                         mwindow->edl->session->crop_y1 = (int)y1;
2892                         mwindow->edl->session->crop_x2 = (int)x2;
2893                         mwindow->edl->session->crop_y2 = (int)y2;
2894                         result = 1;
2895                         redraw = 1;
2896                 }
2897         }
2898         else
2899 // Update cursor font
2900         if(handle_selected >= 0)
2901         {
2902                 switch(handle_selected)
2903                 {
2904                         case 0:
2905                                 set_cursor(UPLEFT_RESIZE);
2906                                 break;
2907                         case 1:
2908                                 set_cursor(UPRIGHT_RESIZE);
2909                                 break;
2910                         case 2:
2911                                 set_cursor(DOWNLEFT_RESIZE);
2912                                 break;
2913                         case 3:
2914                                 set_cursor(DOWNRIGHT_RESIZE);
2915                                 break;
2916                 }
2917                 result = 1;
2918         }
2919         else
2920         {
2921                 set_cursor(ARROW_CURSOR);
2922         }
2923 #define CLAMP(x, y, z) ((x) = ((x) < (y) ? (y) : ((x) > (z) ? (z) : (x))))
2924
2925         if(redraw)
2926         {
2927                 CLAMP(mwindow->edl->session->crop_x1, 0, mwindow->edl->session->output_w);
2928                 CLAMP(mwindow->edl->session->crop_x2, 0, mwindow->edl->session->output_w);
2929                 CLAMP(mwindow->edl->session->crop_y1, 0, mwindow->edl->session->output_h);
2930                 CLAMP(mwindow->edl->session->crop_y2, 0, mwindow->edl->session->output_h);
2931 // printf("CWindowCanvas::test_crop %d %d %d %d\n",
2932 //      mwindow->edl->session->crop_x2,
2933 //      mwindow->edl->session->crop_y2,
2934 //      mwindow->edl->calculate_output_w(0),
2935 //      mwindow->edl->calculate_output_h(0));
2936         }
2937         return result;
2938 }
2939
2940
2941 void CWindowCanvas::draw_crop()
2942 {
2943         get_canvas()->set_inverse();
2944         get_canvas()->set_color(WHITE);
2945
2946         float x1 = mwindow->edl->session->crop_x1;
2947         float y1 = mwindow->edl->session->crop_y1;
2948         float x2 = mwindow->edl->session->crop_x2;
2949         float y2 = mwindow->edl->session->crop_y2;
2950
2951         output_to_canvas(mwindow->edl, 0, x1, y1);
2952         output_to_canvas(mwindow->edl, 0, x2, y2);
2953
2954         if(x2 - x1 && y2 - y1)
2955                 get_canvas()->draw_rectangle((int)x1,
2956                         (int)y1,
2957                         (int)(x2 - x1),
2958                         (int)(y2 - y1));
2959
2960         draw_crophandle((int)x1, (int)y1);
2961         draw_crophandle((int)x2 - CROPHANDLE_W, (int)y1);
2962         draw_crophandle((int)x1, (int)y2 - CROPHANDLE_H);
2963         draw_crophandle((int)x2 - CROPHANDLE_W, (int)y2 - CROPHANDLE_H);
2964         get_canvas()->set_opaque();
2965 }
2966
2967
2968 void CWindowCanvas::draw_outlines(int do_camera)
2969 {
2970         Track *track = gui->cwindow->calculate_affected_track();
2971
2972         if(!track) return;
2973
2974         float proj_x, proj_y, proj_z;
2975         int64_t position = track->to_units(
2976                 mwindow->edl->local_session->get_selectionstart(1),
2977                 0);
2978         track->automation->get_projector(&proj_x, &proj_y, &proj_z,
2979                                 position, PLAY_FORWARD);
2980
2981         proj_x += mwindow->edl->session->output_w/2.;
2982         proj_y += mwindow->edl->session->output_h/2.;
2983         float proj_x1 = proj_x - track->track_w/2. * proj_z;
2984         float proj_y1 = proj_y - track->track_h/2. * proj_z;
2985         float proj_x2 = proj_x + track->track_w/2. * proj_z;
2986         float proj_y2 = proj_y + track->track_h/2. * proj_z;
2987         float x1 = proj_x1, x2 = proj_x2;
2988         float y1 = proj_y1, y2 = proj_y2;
2989         output_to_canvas(mwindow->edl, 0, x1, y1);
2990         output_to_canvas(mwindow->edl, 0, x2, y2);
2991
2992 #define DRAW_PROJECTION(offset) \
2993         get_canvas()->draw_rectangle(x1+offset, y1+offset, (x2-x1), (y2-y1)); \
2994         get_canvas()->draw_line(x1+offset, y1+offset, x2+offset, y2+offset); \
2995         get_canvas()->draw_line(x2+offset, y1+offset, x1+offset, y2+offset); \
2996
2997 // Drop shadow
2998         get_canvas()->set_color(BLACK);
2999         DRAW_PROJECTION(1);
3000         get_canvas()->set_color(do_camera ? GREEN : RED);
3001         DRAW_PROJECTION(0);
3002
3003         if( do_camera ) {
3004                 float cam_x, cam_y, cam_z;
3005                 track->automation->get_camera(&cam_x, &cam_y, &cam_z,
3006                                         position, PLAY_FORWARD);
3007                 cam_x += track->track_w / 2.;
3008                 cam_y += track->track_h / 2.;
3009 // follow image, not camera
3010                 cam_x = -cam_x;  cam_y = -cam_y;  cam_z *= proj_z;
3011                 float cam_x1 = cam_x * cam_z + proj_x;
3012                 float cam_y1 = cam_y * cam_z + proj_y;
3013                 float cam_x2 = (cam_x + track->track_w) * cam_z + proj_x;
3014                 float cam_y2 = (cam_y + track->track_h) * cam_z + proj_y;
3015                 output_to_canvas(mwindow->edl, 0, cam_x1, cam_y1);
3016                 output_to_canvas(mwindow->edl, 0, cam_x2, cam_y2);
3017                 get_canvas()->set_color(YELLOW);
3018                 get_canvas()->draw_rectangle(cam_x1, cam_y1, cam_x2-cam_x1, cam_y2-cam_y1);
3019         }
3020 }
3021
3022 int CWindowCanvas::test_bezier(int button_press,
3023         int &redraw,
3024         int &redraw_canvas,
3025         int &rerender,
3026         int do_camera)
3027 {
3028         int result = 0;
3029
3030 // Processing drag operation.
3031 // Create keyframe during first cursor motion.
3032         if( !button_press ) {
3033
3034                 float cursor_x = get_cursor_x();
3035                 float cursor_y = get_cursor_y();
3036                 canvas_to_output(mwindow->edl, 0, cursor_x, cursor_y);
3037
3038                 if( gui->current_operation == CWINDOW_CAMERA ||
3039                     gui->current_operation == CWINDOW_PROJECTOR ) {
3040                         if( !gui->ctrl_down() && gui->shift_down() && !gui->translating_zoom ) {
3041                                 gui->translating_zoom = 1;
3042                                 gui->reset_affected();
3043                         }
3044                         else if( !gui->ctrl_down() && !gui->shift_down() && gui->translating_zoom ) {
3045                                 gui->translating_zoom = 0;
3046                                 gui->reset_affected();
3047                         }
3048
3049 // Get target keyframe
3050                         if( !gui->affected_x && !gui->affected_y && !gui->affected_z ) {
3051                                 if( !gui->affected_track ) return 0;
3052                                 FloatAutos *affected_x_autos, *affected_y_autos, *affected_z_autos;
3053                                 FloatAutos** autos = (FloatAutos**) gui->affected_track->automation->autos;
3054                                 if( mwindow->edl->session->cwindow_operation == CWINDOW_CAMERA ) {
3055                                         affected_x_autos = autos[AUTOMATION_CAMERA_X];
3056                                         affected_y_autos = autos[AUTOMATION_CAMERA_Y];
3057                                         affected_z_autos = autos[AUTOMATION_CAMERA_Z];
3058                                 }
3059                                 else {
3060                                         affected_x_autos = autos[AUTOMATION_PROJECTOR_X];
3061                                         affected_y_autos = autos[AUTOMATION_PROJECTOR_Y];
3062                                         affected_z_autos = autos[AUTOMATION_PROJECTOR_Z];
3063                                 }
3064                                 double position = mwindow->edl->local_session->get_selectionstart(1);
3065                                 int64_t track_position = gui->affected_track->to_units(position, 0);
3066                                 FloatAuto *prev_x = 0, *next_x = 0;
3067                                 float new_x = affected_x_autos->get_value(track_position, PLAY_FORWARD, prev_x, next_x);
3068                                 FloatAuto *prev_y = 0, *next_y = 0;
3069                                 float new_y = affected_y_autos->get_value(track_position, PLAY_FORWARD, prev_y, next_y);
3070                                 FloatAuto *prev_z = 0, *next_z = 0;
3071                                 float new_z = affected_z_autos->get_value(track_position, PLAY_FORWARD, prev_z, next_z);
3072                                 int zooming = gui->translating_zoom, created;
3073                                 gui->affected_x = (FloatAuto*)gui->cwindow->calculate_affected_auto(
3074                                                         affected_x_autos, !zooming, &created, 0);
3075                                 if( created ) {
3076                                         gui->affected_x->set_value(new_x);
3077                                         redraw_canvas = 1;
3078                                 }
3079                                 gui->affected_y = (FloatAuto*)gui->cwindow->calculate_affected_auto(
3080                                                         affected_y_autos, !zooming, &created, 0);
3081                                 if( created ) {
3082                                         gui->affected_y->set_value(new_y);
3083                                         redraw_canvas = 1;
3084                                 }
3085                                 gui->affected_z = (FloatAuto*)gui->cwindow->calculate_affected_auto(
3086                                                         affected_z_autos, zooming, &created, 0);
3087                                 if( created ) {
3088                                         gui->affected_z->set_value(new_z);
3089                                         redraw_canvas = 1;
3090                                 }
3091                                 calculate_origin();
3092
3093                                 if( gui->translating_zoom ) {
3094                                         gui->center_z = gui->affected_z->get_value();
3095                                 }
3096                                 else {
3097                                         gui->center_x = gui->affected_x->get_value();
3098                                         gui->center_y = gui->affected_y->get_value();
3099                                 }
3100
3101                                 rerender = 1;
3102                                 redraw = 1;
3103                         }
3104
3105                         float x_val = gui->affected_x->get_value();
3106                         float y_val = gui->affected_y->get_value();
3107                         float z_val = gui->affected_z->get_value();
3108
3109                         if( gui->translating_zoom ) {
3110                                 float z = gui->center_z + (cursor_y - gui->y_origin) / 128;
3111                                 if( z < 0 ) z = 0;
3112                                 if( !EQUIV(z_val, z) ) {
3113                                         rerender = 1;
3114                                         redraw = 1;
3115                                         redraw_canvas = 1;
3116                                 }
3117                                 gui->affected_z->set_value(z);
3118                         }
3119                         else {
3120                                 float dx = cursor_x - gui->x_origin;
3121                                 float dy = cursor_y - gui->y_origin;
3122 // follow image, not camera
3123                                 if( gui->current_operation == CWINDOW_CAMERA ) {
3124                                         dx = -dx / z_val;  dy = -dy / z_val;
3125                                 }
3126                                 float x = gui->center_x + dx;
3127                                 float y = gui->center_y + dy;
3128                                 gui->affected_x->set_value(x);
3129                                 gui->affected_y->set_value(y);
3130                                 if( !EQUIV(x_val, x) || !EQUIV(y_val, y) ) {
3131                                         rerender = 1;
3132                                         redraw = 1;
3133                                         redraw_canvas = 1;
3134                                 }
3135                         }
3136                 }
3137
3138                 result = 1;
3139         }
3140         else
3141 // Begin drag operation.  Don't create keyframe here.
3142         {
3143 // Get affected track off of the first recordable video track.
3144 // Calculating based on the alpha channel would require recording what layer
3145 // each output pixel belongs to as they're rendered and stacked.  Forget it.
3146                 gui->affected_track = gui->cwindow->calculate_affected_track();
3147                 gui->reset_affected();
3148
3149                 if( gui->affected_track ) {
3150                         if( do_camera )
3151                                 mwindow->undo->update_undo_before(_("camera"), this);
3152                         else
3153                                 mwindow->undo->update_undo_before(_("projector"), this);
3154
3155                         gui->current_operation =
3156                                 mwindow->edl->session->cwindow_operation;
3157                         gui->tool_panel->raise_window();
3158                         result = 1;
3159                 }
3160         }
3161
3162         return result;
3163 }
3164
3165
3166 int CWindowCanvas::test_zoom(int &redraw)
3167 {
3168         int result = 0;
3169         float x, y;
3170         float zoom = 0;
3171
3172         if( mwindow->edl->session->cwindow_scrollbars ) {
3173                 if( *gui->zoom_panel->get_text() != 'x' ) {
3174 // Find current zoom in table
3175                         int idx = total_zooms;  float old_zoom = get_zoom();
3176                         while( --idx >= 0 && !EQUIV(my_zoom_table[idx], old_zoom) );
3177                         if( idx >= 0 ) {
3178                                 idx += get_buttonpress() == 5 ||
3179                                          gui->ctrl_down() || gui->shift_down() ?  -1 : +1 ;
3180                                 CLAMP(idx, 0, total_zooms-1);
3181                                 zoom = my_zoom_table[idx];
3182                         }
3183                 }
3184                 x = get_cursor_x();  y = get_cursor_y();
3185                 if( !zoom ) {
3186                         mwindow->edl->session->cwindow_scrollbars = 0;
3187                         gui->zoom_panel->update(0);
3188                         zoom = gui->get_auto_zoom();
3189                 }
3190                 else {
3191                         gui->zoom_panel->ZoomPanel::update(zoom);
3192                         float output_x = x, output_y = y;
3193                         canvas_to_output(mwindow->edl, 0, output_x, output_y);
3194                         x = output_x - x / zoom;
3195                         y = output_y - y / zoom;
3196                 }
3197         }
3198         else {
3199                 mwindow->edl->session->cwindow_scrollbars = 1;
3200                 x = (mwindow->edl->session->output_w - w) / 2;
3201                 y = (mwindow->edl->session->output_h - h) / 2;
3202                 zoom = 1;
3203         }
3204         update_zoom((int)x, (int)y, zoom);
3205
3206         gui->composite_panel->cpanel_zoom->update(zoom);
3207
3208         reposition_window(mwindow->edl,
3209                         mwindow->theme->ccanvas_x, mwindow->theme->ccanvas_y,
3210                         mwindow->theme->ccanvas_w, mwindow->theme->ccanvas_h);
3211         redraw = 1;  result = 1;
3212
3213         return result;
3214 }
3215
3216
3217 void CWindowCanvas::calculate_origin()
3218 {
3219         gui->x_origin = get_cursor_x();
3220         gui->y_origin = get_cursor_y();
3221 //printf("CWindowCanvas::calculate_origin 1 %f %f\n", gui->x_origin, gui->y_origin);
3222         canvas_to_output(mwindow->edl, 0, gui->x_origin, gui->y_origin);
3223 //printf("CWindowCanvas::calculate_origin 2 %f %f\n", gui->x_origin, gui->y_origin);
3224 }
3225
3226
3227 int CWindowCanvas::cursor_leave_event()
3228 {
3229         set_cursor(ARROW_CURSOR);
3230         return 1;
3231 }
3232
3233 int CWindowCanvas::cursor_enter_event()
3234 {
3235         int redraw = 0;
3236         switch(mwindow->edl->session->cwindow_operation)
3237         {
3238                 case CWINDOW_CAMERA:
3239                 case CWINDOW_PROJECTOR:
3240                         set_cursor(MOVE_CURSOR);
3241                         break;
3242                 case CWINDOW_ZOOM:
3243                         set_cursor(MOVE_CURSOR);
3244                         break;
3245                 case CWINDOW_CROP:
3246                         test_crop(0, redraw);
3247                         break;
3248                 case CWINDOW_PROTECT:
3249                         set_cursor(ARROW_CURSOR);
3250                         break;
3251                 case CWINDOW_MASK:
3252                 case CWINDOW_RULER:
3253                         set_cursor(CROSS_CURSOR);
3254                         break;
3255                 case CWINDOW_EYEDROP:
3256                         set_cursor(CROSS_CURSOR);
3257                         break;
3258         }
3259         return 1;
3260 }
3261
3262 int CWindowCanvas::cursor_motion_event()
3263 {
3264         int redraw = 0, result = 0, rerender = 0, redraw_canvas = 0;
3265
3266
3267 //printf("CWindowCanvas::cursor_motion_event %d current_operation=%d\n", __LINE__, gui->current_operation);
3268         switch(gui->current_operation)
3269         {
3270                 case CWINDOW_SCROLL:
3271                 {
3272                         float zoom = get_zoom();
3273                         float cursor_x = get_cursor_x();
3274                         float cursor_y = get_cursor_y();
3275
3276                         float zoom_x, zoom_y, conformed_w, conformed_h;
3277                         get_zooms(mwindow->edl, 0, zoom_x, zoom_y, conformed_w, conformed_h);
3278                         cursor_x = (float)cursor_x / zoom_x + gui->x_offset;
3279                         cursor_y = (float)cursor_y / zoom_y + gui->y_offset;
3280
3281
3282
3283                         int x = (int)(gui->x_origin - cursor_x + gui->x_offset);
3284                         int y = (int)(gui->y_origin - cursor_y + gui->y_offset);
3285
3286                         update_zoom(x,
3287                                 y,
3288                                 zoom);
3289                         update_scrollbars(0);
3290                         redraw = 1;
3291                         result = 1;
3292                         break;
3293                 }
3294
3295                 case CWINDOW_RULER:
3296                         result = do_ruler(0, 1, 0, 0);
3297                         break;
3298
3299                 case CWINDOW_CAMERA:
3300                         result = test_bezier(0, redraw, redraw_canvas, rerender, 1);
3301                         break;
3302
3303                 case CWINDOW_PROJECTOR:
3304                         result = test_bezier(0, redraw, redraw_canvas, rerender, 0);
3305                         break;
3306
3307
3308                 case CWINDOW_CROP:
3309                         result = test_crop(0, redraw);
3310 // printf("CWindowCanvas::cursor_motion_event %d result=%d redraw=%d\n",
3311 // __LINE__,
3312 // result,
3313 // redraw);
3314                         break;
3315
3316                 case CWINDOW_MASK:
3317                 case CWINDOW_MASK_CONTROL_IN:
3318                 case CWINDOW_MASK_CONTROL_OUT:
3319                 case CWINDOW_MASK_TRANSLATE:
3320                         result = do_mask(redraw, rerender, 0, 1, 0);
3321                         break;
3322
3323                 case CWINDOW_EYEDROP:
3324                         result = do_eyedrop(rerender, 0, 0);
3325                         break;
3326
3327                 default:
3328                         break;
3329
3330         }
3331
3332
3333 // cursor font changes
3334         if(!result)
3335         {
3336 // printf("CWindowCanvas::cursor_motion_event %d cwindow_operation=%d\n",
3337 // __LINE__,
3338 // mwindow->edl->session->cwindow_operation);
3339                 switch(mwindow->edl->session->cwindow_operation)
3340                 {
3341                         case CWINDOW_CROP:
3342                                 result = test_crop(0, redraw);
3343                                 break;
3344                         case CWINDOW_RULER:
3345                                 result = do_ruler(0, 1, 0, 0);
3346                                 break;
3347                         case CWINDOW_MASK:
3348                                 result = do_mask(redraw, rerender, 0, 1, 0);
3349                                 break;
3350                 }
3351         }
3352
3353         int change_type = rerender ? CHANGE_PARAMS : -1;
3354         gui->sync_parameters(change_type, redraw, redraw_canvas);
3355
3356         return result;
3357 }
3358
3359 int CWindowCanvas::button_press_event()
3360 {
3361         int result = 0;
3362         int redraw = 0;
3363         int redraw_canvas = 0;
3364         int rerender = 0;
3365
3366         if(Canvas::button_press_event()) return 1;
3367
3368         gui->translating_zoom = gui->shift_down();
3369
3370         calculate_origin();
3371 //printf("CWindowCanvas::button_press_event 2 %f %f\n", gui->x_origin, gui->y_origin, gui->x_origin, gui->y_origin);
3372
3373         float zoom_x, zoom_y, conformed_w, conformed_h;
3374         get_zooms(mwindow->edl, 0, zoom_x, zoom_y, conformed_w, conformed_h);
3375         gui->x_offset = get_x_offset(mwindow->edl, 0, zoom_x, conformed_w, conformed_h);
3376         gui->y_offset = get_y_offset(mwindow->edl, 0, zoom_y, conformed_w, conformed_h);
3377
3378 // Scroll view
3379         if( mwindow->edl->session->cwindow_operation != CWINDOW_PROTECT &&
3380             get_buttonpress() == MIDDLE_BUTTON && !get_canvas()->shift_down() )
3381         {
3382                 gui->current_operation = CWINDOW_SCROLL;
3383                 result = 1;
3384         }
3385         else
3386 // Adjust parameter
3387         {
3388                 switch(mwindow->edl->session->cwindow_operation)
3389                 {
3390                         case CWINDOW_RULER:
3391                                 result = do_ruler(0, 0, 1, 0);
3392                                 break;
3393
3394                         case CWINDOW_CAMERA:
3395                                 result = test_bezier(1, redraw, redraw_canvas, rerender, 1);
3396                                 break;
3397
3398                         case CWINDOW_PROJECTOR:
3399                                 result = test_bezier(1, redraw, redraw_canvas, rerender, 0);
3400                                 break;
3401
3402                         case CWINDOW_ZOOM:
3403                                 result = test_zoom(redraw);
3404                                 break;
3405
3406                         case CWINDOW_CROP:
3407                                 result = test_crop(1, redraw);
3408                                 break;
3409
3410                         case CWINDOW_MASK:
3411                                 switch( get_buttonpress() ) {
3412                                 case LEFT_BUTTON:
3413                                         result = do_mask(redraw, rerender, 1, 0, 0);
3414                                         break;
3415                                 case MIDDLE_BUTTON: {  // && shift_down()
3416                                         result = do_mask_focus();
3417                                         redraw = redraw_canvas = 1;
3418                                         break; }
3419                                 case WHEEL_UP:
3420                                 case WHEEL_DOWN:
3421                                         result = do_mask(redraw, rerender, 1, 1, 0);
3422                                         break;
3423                                 }
3424                                 if( result ) redraw_canvas = 1;
3425                                 break;
3426
3427                         case CWINDOW_EYEDROP:
3428                                 result = do_eyedrop(rerender, 1, 0);
3429                                 break;
3430                 }
3431         }
3432
3433         int change_type = rerender ? CHANGE_PARAMS : -1;
3434         gui->sync_parameters(change_type, redraw, redraw_canvas);
3435
3436         return result;
3437 }
3438
3439 int CWindowCanvas::button_release_event()
3440 {
3441         int result = 0;
3442         const char *undo_label = 0;
3443
3444         switch(gui->current_operation)
3445         {
3446                 case CWINDOW_SCROLL:
3447                         result = 1;
3448                         break;
3449
3450                 case CWINDOW_RULER:
3451                         do_ruler(0, 0, 0, 1);
3452                         break;
3453
3454                 case CWINDOW_CAMERA:
3455                         undo_label = _("camera");
3456                         break;
3457
3458                 case CWINDOW_PROJECTOR:
3459                         undo_label = _("projector");
3460                         break;
3461
3462                 case CWINDOW_MASK:
3463                 case CWINDOW_MASK_CONTROL_IN:
3464                 case CWINDOW_MASK_CONTROL_OUT:
3465                 case CWINDOW_MASK_TRANSLATE:
3466 // Finish mask operation
3467                         gui->mask_keyframe = 0;
3468                         undo_label = _("mask");
3469                         break;
3470                 case CWINDOW_MASK_ROTATE:
3471                         gui->mask_keyframe = 0;
3472                         undo_label = _("mask rotate");
3473                         break;
3474                 case CWINDOW_MASK_SCALE:
3475                         gui->mask_keyframe = 0;
3476                         undo_label = _("mask scale");
3477                         break;
3478                 case CWINDOW_NONE:
3479                         result = Canvas::button_release_event();
3480                         break;
3481         }
3482
3483         if( undo_label )
3484                 mwindow->undo->update_undo_after(undo_label, LOAD_AUTOMATION);
3485         gui->current_operation = CWINDOW_NONE;
3486         return result;
3487 }
3488
3489 void CWindowCanvas::zoom_resize_window(float percentage)
3490 {
3491         int canvas_w, canvas_h;
3492         int new_w, new_h;
3493
3494
3495 // Get required canvas size
3496         calculate_sizes(mwindow->edl->get_aspect_ratio(),
3497                 mwindow->edl->session->output_w,
3498                 mwindow->edl->session->output_h,
3499                 percentage,
3500                 canvas_w,
3501                 canvas_h);
3502
3503 // Estimate window size from current borders
3504         new_w = canvas_w + (gui->get_w() - mwindow->theme->ccanvas_w);
3505         new_h = canvas_h + (gui->get_h() - mwindow->theme->ccanvas_h);
3506
3507 //printf("CWindowCanvas::zoom_resize_window %d %d %d\n", __LINE__, new_w, new_h);
3508         mwindow->session->cwindow_w = new_w;
3509         mwindow->session->cwindow_h = new_h;
3510
3511         mwindow->theme->get_cwindow_sizes(gui,
3512                 mwindow->session->cwindow_controls);
3513
3514 // Estimate again from new borders
3515         new_w = canvas_w + (mwindow->session->cwindow_w - mwindow->theme->ccanvas_w);
3516         new_h = canvas_h + (mwindow->session->cwindow_h - mwindow->theme->ccanvas_h);
3517 //printf("CWindowCanvas::zoom_resize_window %d %d %d\n", __LINE__, new_w, new_h);
3518
3519         gui->resize_window(new_w, new_h);
3520         gui->resize_event(new_w, new_h);
3521 }
3522
3523 void CWindowCanvas::toggle_controls()
3524 {
3525         mwindow->session->cwindow_controls = !mwindow->session->cwindow_controls;
3526         gui->resize_event(gui->get_w(), gui->get_h());
3527 }
3528
3529 int CWindowCanvas::get_cwindow_controls()
3530 {
3531         return mwindow->session->cwindow_controls;
3532 }
3533
3534
3535