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