fix trace locks hang, drag handle rework-again, 12 reset btns on plugins, booby on
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / trackcanvas.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 "apatchgui.inc"
23 #include "asset.h"
24 #include "autoconf.h"
25 #include "automation.h"
26 #include "bcsignals.h"
27 #include "bctimer.h"
28 #include "clip.h"
29 #include "bccolors.h"
30 #include "cache.h"
31 #include "canvas.h"
32 #include "cplayback.h"
33 #include "cursors.h"
34 #include "cwindowgui.h"
35 #include "cwindow.h"
36 #include "edithandles.h"
37 #include "editpopup.h"
38 #include "edits.h"
39 #include "edl.h"
40 #include "edlsession.h"
41 #include "floatauto.h"
42 #include "floatautos.h"
43 #include "gwindowgui.h"
44 #include "indexstate.h"
45 #include "intauto.h"
46 #include "intautos.h"
47 #include "keyframe.h"
48 #include "keyframepopup.h"
49 #include "keyframes.h"
50 #include "keys.h"
51 #include "labels.h"
52 #include "localsession.h"
53 #include "mainclock.h"
54 #include "maincursor.h"
55 #include "mainsession.h"
56 #include "mainundo.h"
57 #include "maskautos.h"
58 #include "mbuttons.h"
59 #include "mtimebar.h"
60 #include "mwindowgui.h"
61 #include "mwindow.h"
62 #include "panautos.h"
63 #include "patchbay.h"
64 #include "playbackengine.h"
65 #include "playtransport.h"
66 #include "plugin.h"
67 #include "pluginpopup.h"
68 #include "pluginserver.h"
69 #include "pluginset.h"
70 #include "plugintoggles.h"
71 #include "preferences.h"
72 #include "renderengine.h"
73 #include "resourcepixmap.h"
74 #include "resourcethread.h"
75 #include "swindow.h"
76 #include "theme.h"
77 #include "trackcanvas.h"
78 #include "tracking.h"
79 #include "trackpopup.h"
80 #include "tracks.h"
81 #include "transition.h"
82 #include "transitionhandles.h"
83 #include "transitionpopup.h"
84 #include "transportque.h"
85 #include "vframe.h"
86 #include "vpatchgui.inc"
87 #include "vrender.h"
88 #include "zoombar.h"
89
90 #include <string.h>
91
92 //#define PIXMAP_AGE -5
93 #define PIXMAP_AGE -32
94
95 TrackCanvas::TrackCanvas(MWindow *mwindow,
96         TimelinePane *pane,
97         int x,
98         int y,
99         int w,
100         int h)
101  : BC_SubWindow(x,
102         y,
103         w,
104         h)
105 {
106         this->mwindow = mwindow;
107         this->gui = mwindow->gui;
108         this->pane = pane;
109
110         selection_midpoint = 0;
111         drag_scroll = 0;
112         active = 0;
113         temp_picon = 0;
114         resource_timer = new Timer;
115         render_timer = new Timer;
116         hourglass_enabled = 0;
117         timebar_position = -1;
118         snapped = 0;
119 }
120
121 TrackCanvas::~TrackCanvas()
122 {
123 //      delete transition_handles;
124         delete edit_handles;
125         delete keyframe_pixmap;
126         delete camerakeyframe_pixmap;
127         delete modekeyframe_pixmap;
128         delete pankeyframe_pixmap;
129         delete projectorkeyframe_pixmap;
130         delete maskkeyframe_pixmap;
131         delete background_pixmap;
132         if(temp_picon) delete temp_picon;
133         delete render_timer;
134         delete resource_timer;
135 }
136
137 void TrackCanvas::create_objects()
138 {
139         background_pixmap = new BC_Pixmap(this, get_w(), get_h());
140 //      transition_handles = new TransitionHandles(mwindow, this);
141         edit_handles = new EditHandles(mwindow, this);
142         keyframe_pixmap = new BC_Pixmap(this, mwindow->theme->keyframe_data, PIXMAP_ALPHA);
143         camerakeyframe_pixmap = new BC_Pixmap(this, mwindow->theme->camerakeyframe_data, PIXMAP_ALPHA);
144         modekeyframe_pixmap = new BC_Pixmap(this, mwindow->theme->modekeyframe_data, PIXMAP_ALPHA);
145         pankeyframe_pixmap = new BC_Pixmap(this, mwindow->theme->pankeyframe_data, PIXMAP_ALPHA);
146         projectorkeyframe_pixmap = new BC_Pixmap(this, mwindow->theme->projectorkeyframe_data, PIXMAP_ALPHA);
147         maskkeyframe_pixmap = new BC_Pixmap(this, mwindow->theme->maskkeyframe_data, PIXMAP_ALPHA);
148         draw(NORMAL_DRAW, 1);
149         update_cursor(0);
150         flash(0);
151 }
152
153 void TrackCanvas::resize_event()
154 {
155 //printf("TrackCanvas::resize_event 1\n");
156         draw(NORMAL_DRAW, 0);
157         flash(0);
158 //printf("TrackCanvas::resize_event 2\n");
159 }
160
161 int TrackCanvas::keypress_event()
162 {
163         return 0;
164 }
165
166 int TrackCanvas::cursor_leave_event()
167 {
168 // Because drag motion calls get_cursor_over_window we can be sure that
169 // all highlights get deleted now.
170 // This ended up blocking keyboard input from the drag operations.
171         if( timebar_position >= 0 )
172         {
173                 timebar_position = -1;
174                 if( pane->timebar )
175                         pane->timebar->update(1);
176         }
177
178         return 0;
179 //      return drag_motion();
180 }
181
182 int TrackCanvas::drag_motion_event()
183 {
184         return gui->drag_motion();
185 }
186
187 int TrackCanvas::drag_motion(
188                 Track **over_track, Edit **over_edit,
189                 PluginSet **over_pluginset, Plugin **over_plugin)
190 {
191         int cursor_x = get_relative_cursor_x();
192         int cursor_y = get_relative_cursor_y();
193         if( get_cursor_over_window() ) {
194                 drag_cursor_motion(cursor_x, cursor_y,
195                         over_track, over_edit, over_pluginset, over_plugin);
196         }
197         if( over_track && !*over_track )
198                 *over_track = pane->over_patchbay();
199         return 0;
200 }
201
202 int TrackCanvas::drag_cursor_motion(int cursor_x, int cursor_y,
203                 Track **over_track, Edit **over_edit,
204                 PluginSet **over_pluginset, Plugin **over_plugin)
205 {
206         if( cursor_x >= 0 && cursor_y >= 0 &&
207             cursor_x < get_w() && cursor_y < get_h() )
208         {
209 //printf("TrackCanvas::drag_motion %d %d\n", __LINE__, pane->number);
210 // Find the edit and track the cursor is over
211                 for(Track *track = mwindow->edl->tracks->first; track; track = track->next)
212                 {
213                         int64_t track_x, track_y, track_w, track_h;
214                         track_dimensions(track, track_x, track_y, track_w, track_h);
215
216                         if(cursor_y >= track_y &&
217                                 cursor_y < track_y + track_h)
218                         {
219                                 *over_track = track;
220                                 for(Edit *edit = track->edits->first; edit; edit = edit->next)
221                                 {
222                                         int64_t edit_x, edit_y, edit_w, edit_h;
223                                         edit_dimensions(edit, edit_x, edit_y, edit_w, edit_h);
224                                         if( cursor_y < edit_y || cursor_y >= edit_y + edit_h ) continue;
225                                         if( cursor_x >= edit_x && cursor_x < edit_x + edit_w ) {
226                                                 *over_edit = edit;
227                                                 break;
228                                         }
229                                         if( edit != track->edits->last ) continue;
230                                         if( mwindow->session->current_operation != DRAG_ATRANSITION &&
231                                             mwindow->session->current_operation != DRAG_VTRANSITION ) continue;
232                                         if( !edit->silence() ) {
233                                                 // add silence to allow drag transition past last edit
234                                                 //  will be deleted by Edits::optimize if not used
235                                                 double length = mwindow->edl->session->default_transition_length;
236                                                 int64_t start = edit->startproject+edit->length;
237                                                 int64_t units = track->to_units(length, 1);
238                                                 track->edits->create_silence(start, start+units);
239                                                 continue;
240                                         }
241                                         if( cursor_x >= edit_x ) { *over_edit = edit; break; }
242                                 }
243
244                                 for(int i = 0; i < track->plugin_set.total; i++)
245                                 {
246                                         PluginSet *pluginset = track->plugin_set.values[i];
247                                         for(Plugin *plugin = (Plugin*)pluginset->first;
248                                                 plugin;
249                                                 plugin = (Plugin*)plugin->next)
250                                         {
251                                                 int64_t plugin_x, plugin_y, plugin_w, plugin_h;
252                                                 plugin_dimensions(plugin, plugin_x, plugin_y, plugin_w, plugin_h);
253
254                                                 if(cursor_y >= plugin_y &&
255                                                         cursor_y < plugin_y + plugin_h)
256                                                 {
257                                                         *over_pluginset = plugin->plugin_set;
258
259                                                         if(cursor_x >= plugin_x &&
260                                                                 cursor_x < plugin_x + plugin_w)
261                                                         {
262                                                                 *over_plugin = plugin;
263                                                                 break;
264                                                         }
265                                                 }
266                                         }
267                                 }
268                                 break;
269                         }
270                 }
271         }
272
273         return 0;
274 }
275
276
277 int TrackCanvas::drag_stop_event()
278 {
279         int result = gui->drag_stop();
280         if( !result && mwindow->session->current_operation ) {
281                 mwindow->session->current_operation = NO_OPERATION;
282                 drag_scroll = 0;
283         }
284         return result;
285 }
286
287 int TrackCanvas::drag_stop(int *redraw)
288 {
289         int result = 0;
290         int insertion  = 0;
291         int over_window = 0;
292         int cursor_x = -1, cursor_y = -1;
293
294         if( get_cursor_over_window() ) {
295                 if( (cursor_x = get_relative_cursor_x()) >= 0 && cursor_x < get_w() &&
296                     (cursor_y = get_relative_cursor_y()) >= 0 && cursor_y < get_h() )
297                         over_window = 1;
298                 else {
299                         Track *track = pane->over_patchbay();
300                         if( track && mwindow->session->track_highlighted == track )
301                                 over_window = 1;
302                 }
303         }
304
305         if( over_window ) {
306                 switch(mwindow->session->current_operation) {
307                 case DRAG_VTRANSITION:
308                 case DRAG_ATRANSITION:
309                         if(mwindow->session->edit_highlighted) {
310                                 if( (mwindow->session->current_operation == DRAG_ATRANSITION &&
311                                      mwindow->session->track_highlighted->data_type == TRACK_AUDIO) ||
312                                     (mwindow->session->current_operation == DRAG_VTRANSITION &&
313                                      mwindow->session->track_highlighted->data_type == TRACK_VIDEO) ) {
314                                         mwindow->session->current_operation = NO_OPERATION;
315                                         mwindow->paste_transition();
316                                         result = 1;
317                                 }
318                         }
319                         *redraw = 1;
320                         break;
321
322 // Behavior for dragged plugins is limited by the fact that a shared plugin
323 // can only refer to a standalone plugin that exists in the same position in
324 // time.  Dragging a plugin from one point in time to another can't produce
325 // a shared plugin to the original plugin.  In this case we relocate the
326 // plugin instead of sharing it.
327                 case DRAG_AEFFECT_COPY:
328                 case DRAG_VEFFECT_COPY:
329                         if( mwindow->session->track_highlighted &&
330                             ((mwindow->session->current_operation == DRAG_AEFFECT_COPY &&
331                               mwindow->session->track_highlighted->data_type == TRACK_AUDIO) ||
332                              (mwindow->session->current_operation == DRAG_VEFFECT_COPY &&
333                               mwindow->session->track_highlighted->data_type == TRACK_VIDEO)) ) {
334                                 mwindow->session->current_operation = NO_OPERATION;
335
336                                 int64_t drop_position = -1;
337                                 Plugin *drag_plugin = mwindow->session->drag_plugin;
338                                 PluginSet *hi_plugin_set = mwindow->session->pluginset_highlighted;
339                                 Track *hi_track = mwindow->session->track_highlighted;
340
341 // Insert shared plugin in source
342 // Move source to different location
343                                 if( hi_plugin_set && hi_plugin_set->track == drag_plugin->track ) {
344 //printf("TrackCanvas::drag_stop 6\n");
345                                         drop_position = drop_plugin_position(hi_plugin_set, drag_plugin);
346                                         if( drop_position < 0 ) {
347                                                 result = 1;
348                                                 break;          // Do not do anything
349                                         }
350
351                                         Track *track = mwindow->session->track_highlighted;
352                                         drop_position = track->frame_align(drop_position, 0);
353                                         mwindow->move_effect(drag_plugin, hi_plugin_set, drop_position);
354                                         result = 1;
355                                 }
356                                 else if( hi_track ) {
357 // Put it in a new plugin set determined by an edit boundary, or at the start of the track
358                                         Edit *hi_edit = mwindow->session->edit_highlighted;
359                                         drop_position = hi_edit ? hi_edit->startproject : 0;
360                                         if( drop_position < 0 ) {
361                                                 result = 1;
362                                                 break;          // Do not do anything
363                                         }
364
365                                         Track *track = mwindow->session->track_highlighted;
366                                         drop_position = track->frame_align(drop_position, 0);
367                                         mwindow->move_effect(drag_plugin, hi_track, drop_position);
368                                         result = 1;
369                                 }
370                         }
371                         break;
372
373                 case DRAG_AEFFECT:
374                 case DRAG_VEFFECT:
375                         if( mwindow->session->track_highlighted &&
376                             ((mwindow->session->current_operation == DRAG_AEFFECT &&
377                               mwindow->session->track_highlighted->data_type == TRACK_AUDIO) ||
378                              (mwindow->session->current_operation == DRAG_VEFFECT &&
379                               mwindow->session->track_highlighted->data_type == TRACK_VIDEO)) ) {
380 // Drop all the effects
381                                 PluginSet *plugin_set = mwindow->session->pluginset_highlighted;
382                                 Track *track = mwindow->session->track_highlighted;
383                                 double start = 0;
384                                 double length = track->get_length();
385
386                                 if(mwindow->session->plugin_highlighted) {
387                                         start = track->from_units(mwindow->session->plugin_highlighted->startproject);
388                                         length = track->from_units(mwindow->session->plugin_highlighted->length);
389                                         if(length <= 0) length = track->get_length();
390                                 }
391                                 else if(mwindow->session->pluginset_highlighted) {
392                                                 start = track->from_units(plugin_set->length());
393                                         length = track->get_length() - start;
394                                         if(length <= 0) length = track->get_length();
395                                 }
396                                 else if(mwindow->edl->local_session->get_selectionend() >
397                                         mwindow->edl->local_session->get_selectionstart()) {
398                                         start = mwindow->edl->local_session->get_selectionstart();
399                                         length = mwindow->edl->local_session->get_selectionend() -
400                                                 mwindow->edl->local_session->get_selectionstart();
401                                 }
402 // Move to a point between two edits
403                                 else if(mwindow->session->edit_highlighted) {
404                                         start = mwindow->session->track_highlighted->from_units(
405                                                 mwindow->session->edit_highlighted->startproject);
406                                         length = mwindow->session->track_highlighted->from_units(
407                                                 mwindow->session->edit_highlighted->length);
408                                 }
409                                 start = mwindow->edl->align_to_frame(start, 0);
410                                 mwindow->insert_effects_canvas(start, length);
411                                 *redraw = 1;
412                         }
413                         if( mwindow->session->track_highlighted )
414                                 result = 1;  // we have to cleanup
415                         break;
416
417                 case DRAG_ASSET:
418                         if(mwindow->session->track_highlighted) {
419                                 double asset_duration = 0;
420                                 int64_t asset_length_units = 0;
421
422                                 if(mwindow->session->current_operation == DRAG_ASSET &&
423                                         mwindow->session->drag_assets->total) {
424                                         Indexable *indexable = mwindow->session->drag_assets->values[0];
425                                         // we use video if we are over video and audio if we are over audio
426                                         if( indexable->have_video() &&
427                                             mwindow->session->track_highlighted->data_type == TRACK_VIDEO ) {
428                                                 // Images have length -1
429                                                 int64_t video_length = indexable->get_video_frames();
430                                                 if (video_length < 0) {
431                                                         if(mwindow->edl->session->si_useduration)
432                                                                 video_length = mwindow->edl->session->si_duration;
433                                                         else
434                                                                 video_length = 1.0 / mwindow->edl->session->frame_rate ;
435                                                 }
436                                                 asset_duration = video_length / indexable->get_frame_rate();
437                                         }
438                                         else if( indexable->have_audio() &&
439                                                  mwindow->session->track_highlighted->data_type == TRACK_AUDIO ) {
440                                                 int64_t audio_length = indexable->get_audio_samples();
441                                                 asset_duration = (double)audio_length / indexable->get_sample_rate();
442                                         }
443                                         else {
444                                                 result = 1;
445                                                 break;  // Do not do anything
446                                         }
447                                 }
448                                 else if( mwindow->session->current_operation == DRAG_ASSET &&
449                                          mwindow->session->drag_clips->total ) {
450                                         EDL *clip = mwindow->session->drag_clips->values[0];
451                                         asset_duration = clip->tracks->total_length();
452                                 }
453                                 else {
454                                         printf("DRAG_ASSET error: Asset dropped, but both drag_clips and drag_assets total is zero\n");
455                                 }
456
457                                 asset_length_units = mwindow->session->track_highlighted->to_units(asset_duration, 1);
458                                 int64_t drop_position = drop_edit_position (&insertion, NULL, asset_length_units);
459                                 if( drop_position < 0 ) {
460                                         result = 1;
461                                         break;          // Do not do anything
462                                 }
463
464                                 Track *track = mwindow->session->track_highlighted;
465                                 double track_position = track->from_units(drop_position);
466                                 track_position = mwindow->edl->align_to_frame(track_position, 0);
467
468 //                              if (!insertion) {
469 //                                      // FIXME, we should create an mwindow/EDL method that overwrites, without clearing the keyframes and autos
470 //                                      // Unfortunately, this is _a lot_ of work to do right
471 //                                      printf("Problematic insertion\n");
472 //                                      mwindow->edl->tracks->clear(track_position,
473 //                                              track_position + asset_duration, 0);
474 //                              }
475                                 mwindow->paste_assets(track_position, track, !insertion);
476                                 result = 1;    // need to be one no matter what, since we have track highlited so we have to cleanup....
477                         }
478                         break;
479
480                 case DRAG_EDIT:
481                         mwindow->session->current_operation = NO_OPERATION;
482                         if(mwindow->session->track_highlighted) {
483                                 if( mwindow->session->track_highlighted->data_type ==
484                                         mwindow->session->drag_edit->track->data_type) {
485                                         int64_t drop_position = drop_edit_position(&insertion,
486                                                         mwindow->session->drag_edit,
487                                                         mwindow->session->drag_edit->length);
488                                         if( drop_position < 0 ) {
489                                                 result = 1;
490                                                 break;          // Do not do anything
491                                         }
492                                         Track *track = mwindow->session->track_highlighted;
493                                         double track_position = track->from_units(drop_position);
494                                         track_position = mwindow->edl->align_to_frame(track_position, 0);
495                                         mwindow->move_edits(mwindow->session->drag_edits,
496                                                         track, track_position, insertion);
497                                 }
498
499                                 result = 1;
500                         }
501                         break;
502                 case DRAG_GROUP:
503                         mwindow->session->current_operation = NO_OPERATION;
504                         EDL *drag_group = mwindow->session->drag_group;
505                         if( drag_group ) {
506                                 Track *drop_track = mwindow->session->track_highlighted;
507                                 Track *drag_track = mwindow->session->drag_group_first_track;
508                                 Edit *drag_edit = mwindow->session->drag_group_edit;
509                                 Track *edit_track = drag_edit ? drag_edit->track : 0;
510                                 while( drop_track && edit_track ) {
511                                         if( edit_track == drag_track ) break;
512                                         edit_track = edit_track->previous;
513                                         drop_track = drop_track->previous;
514                                 }
515                                 if( drop_track ) {
516                                         double cur_pos = mwindow->session->drag_group_position;
517                                         double new_pos = mwindow->edl->get_cursor_position(cursor_x, pane->number);
518                                         new_pos -= mwindow->session->drag_position - cur_pos;
519                                         new_pos = mwindow->edl->align_to_frame(new_pos, 0);
520                                         double drop_position = new_pos;
521                                         int ret = test_track_group(drag_group, drop_track, new_pos);
522                                         if( !ret && new_pos != drop_position ) {
523                                                 drop_position = new_pos;
524                                                 ret = test_track_group(drag_group, drop_track, new_pos);
525                                         }
526                                         if( ret >= 0 )
527                                                 mwindow->move_group(drag_group, drop_track, drop_position,
528                                                         ret > 0 ? !shift_down() : shift_down());
529                                         drag_group->remove_user();
530                                         mwindow->session->drag_group = 0;
531                                 }
532                         }
533                         result = 1;
534                         break;
535                 }
536         }
537
538         return result;
539 }
540
541 int TrackCanvas::drag_start_event()
542 {
543         int result = 0;
544         int redraw = 0;
545         int rerender = 0;
546         int new_cursor, update_cursor;
547
548         if( mwindow->session->current_operation == GROUP_TOGGLE )
549                 mwindow->session->current_operation = NO_OPERATION;
550         else if( mwindow->session->current_operation != NO_OPERATION )
551                 return 0;
552
553         if(is_event_win()) {
554                 if(do_plugins(get_drag_x(), get_drag_y(),
555                                 1, 0, redraw, rerender)) {
556                         result = 1;
557                 }
558                 else if(do_edits(get_drag_x(), get_drag_y(),
559                                 0, 1, redraw, rerender, new_cursor, update_cursor)) {
560                         result = 1;
561                 }
562         }
563
564         return result;
565 }
566
567 int64_t TrackCanvas::drop_edit_position(int *is_insertion, Edit *moved_edit, int64_t moved_edit_length)
568 {
569         // get the canvas/track position
570         Track *track = mwindow->session->track_highlighted;
571         int cursor_x = get_relative_cursor_x();
572         double zoom_scale = (double)mwindow->edl->session->sample_rate / mwindow->edl->local_session->zoom_sample;
573         double cur_pos = (cursor_x + mwindow->edl->local_session->view_start[pane->number]) / zoom_scale;
574         double position = mwindow->edl->align_to_frame(cur_pos, 1);
575         if( position <= 0 ) {
576                 *is_insertion = 1;
577                 return 0;
578         }
579         double cursor_position = position;
580         int64_t drop_position = track->to_units(cursor_position, 1);
581         if( moved_edit ) { // relative cursor position depends upon drop point
582                 double moved_edit_start = moved_edit->track->from_units(moved_edit->startproject);
583                 position -= mwindow->session->drag_position - moved_edit_start;
584         }
585         int64_t edit_position = track->to_units(position, 1);
586         int64_t grab_position = edit_position;
587         if( !moved_edit )  // for clips and assets acts as they were grabbed in the middle
588                 grab_position -= moved_edit_length / 2;
589         Edit *last_edit = track->edits->last;
590         if( !last_edit || edit_position >= (last_edit->startproject+last_edit->length) ) {
591                 *is_insertion = 0;
592                 return edit_position;
593         }
594
595         int64_t drop_start = 0, drop_end = 0;  // drop zone boundries
596         Edit *next_edit = track->edits->first;
597         while( next_edit ) {
598                 Edit *edit = next_edit;  next_edit = (Edit *)edit->next;
599                 int64_t edit_start = edit->startproject;
600                 int64_t edit_end = edit_start + edit->length;
601                 double edit_start_pos = edit->track->from_units(edit_start);
602                 if( (fabs(edit_start_pos-cursor_position)*zoom_scale) < HANDLE_W ) {
603                         *is_insertion = 1; // cursor is close to the beginning of an edit -> insertion
604                         return edit_start;
605                 }
606                 double edit_end_pos = edit->track->from_units(edit_end);
607                 if( (fabs(edit_end_pos-cursor_position)*zoom_scale) < HANDLE_W ) {
608                         *is_insertion = 1; // cursor is close to the end of an edit -> insertion
609                         return edit_end;
610                 }
611                 if( edit != moved_edit && !edit->silence() )
612                         drop_start = edit_end; // reset drop zone
613                 if( next_edit ) {
614                         if( next_edit == moved_edit || next_edit->silence() ) continue;
615                         drop_end = edit_end;
616                 }
617                 else
618                         drop_end = INT64_MAX;
619                 if( edit_position >= drop_start &&
620                     edit_position+moved_edit_length < drop_end ) {
621                         *is_insertion = 0; // fits in the zone
622                         return edit_position;
623                 }
624                 if( drop_position < drop_end ) { // drop in the zone
625                         if( (drop_end - drop_start) >= moved_edit_length ) {
626                                 *is_insertion = 0; // fits in the zone, but over the edge
627                                 int64_t dx0 = llabs(drop_position - drop_start);
628                                 int64_t dx1 = llabs(drop_position - drop_end);
629                                 return dx0 < dx1 ? drop_start : drop_end - moved_edit_length;
630                         }
631                         *is_insertion = 1;
632                         int64_t edit_center = (edit_start + edit_end) / 2;
633                         return position < edit_center ? drop_start : drop_end;
634                 }
635         }
636
637         *is_insertion = 0;
638         return -1;
639 }
640
641 int64_t TrackCanvas::drop_plugin_position(PluginSet *plugin_set, Plugin *moved_plugin)
642 {
643         // get the canvas/track position
644         Track *track = plugin_set->track;
645         double moved_plugin_length = moved_plugin->track->from_units(moved_plugin->length);
646         int64_t track_plugin_length = track->to_units(moved_plugin_length, 0);
647         int cursor_x = get_relative_cursor_x();
648         double zoom_scale = (double)mwindow->edl->session->sample_rate / mwindow->edl->local_session->zoom_sample;
649         double cur_pos = (cursor_x + mwindow->edl->local_session->view_start[pane->number]) / zoom_scale;
650         double position = mwindow->edl->align_to_frame(cur_pos, 1);
651         if( position <= 0 ) return 0;
652         int64_t drop_position = track->to_units(position, 1);
653         Plugin *last_plugin = (Plugin *)plugin_set->last;
654         if( !last_plugin ) return drop_position;
655         double plugin_set_end = last_plugin->track->from_units(last_plugin->startproject+last_plugin->length);
656         if( position >= plugin_set_end ) return drop_position;
657         double moved_plugin_start = moved_plugin->track->from_units(moved_plugin->startproject);
658         position -= mwindow->session->drag_position - moved_plugin_start;
659         int64_t plugin_position = track->to_units(position, 1);
660
661         int64_t drop_start = 0, drop_end = 0;  // drop zone boundries
662         Plugin *next_plugin = (Plugin *)plugin_set->first;
663         while( next_plugin ) {
664                 Plugin *plugin = next_plugin;  next_plugin = (Plugin *)plugin->next;
665                 int64_t plugin_start = plugin->startproject;
666                 int64_t plugin_end = plugin_start + plugin->length;
667                 double plugin_end_pos = plugin->track->from_units(plugin_end);
668                 int64_t track_plugin_end = track->to_units(plugin_end_pos, 0);
669                 if( plugin != moved_plugin && !plugin->silence() )
670                         drop_start = track_plugin_end;
671                 if( next_plugin ) {
672                         if( next_plugin == moved_plugin || next_plugin->silence() ) continue;
673                         drop_end = track_plugin_end;
674                 }
675                 else
676                         drop_end = INT64_MAX;
677                 if( plugin_position >= drop_start && // fits in the zone
678                     plugin_position+track_plugin_length < drop_end ) {
679                         return plugin_position;
680                 }
681                 if( drop_position < drop_end ) { // drop in the zone
682                         if( (drop_end - drop_start) >= track_plugin_length ) {
683                                 int64_t dx0 = llabs(drop_position - drop_start);
684                                 int64_t dx1 = llabs(drop_position - drop_end);
685                                 return dx0 < dx1 ? drop_start : drop_end - track_plugin_length;
686                         }
687                 }
688         }
689
690         return -1;
691 }
692
693 void TrackCanvas::draw(int mode, int hide_cursor)
694 {
695         const int debug = 0;
696
697 // Swap pixmap layers
698         if(get_w() != background_pixmap->get_w() ||
699                 get_h() != background_pixmap->get_h())
700         {
701                 delete background_pixmap;
702                 background_pixmap = new BC_Pixmap(this, get_w(), get_h());
703         }
704
705 // Cursor disappears after resize when this is called.
706 // Cursor doesn't redraw after editing when this isn't called.
707         if(pane->cursor && hide_cursor) pane->cursor->hide();
708         draw_top_background(get_parent(), 0, 0, get_w(), get_h(), background_pixmap);
709
710         if(debug) PRINT_TRACE
711         draw_resources(mode);
712
713         if(debug) PRINT_TRACE
714         draw_overlays();
715         if(debug) PRINT_TRACE
716 }
717
718 void TrackCanvas::update_cursor(int flush)
719 {
720         if( arrow_mode() )
721                 set_cursor(ARROW_CURSOR, 0, flush);
722         else if( ibeam_mode() )
723                 set_cursor(IBEAM_CURSOR, 0, flush);
724 }
725
726
727 void TrackCanvas::test_timer()
728 {
729         if( resource_timer->get_difference() > 1000 && !hourglass_enabled ) {
730                 start_hourglass();
731                 hourglass_enabled = 1;
732         }
733 }
734
735
736 void TrackCanvas::draw_indexes(Indexable *indexable)
737 {
738         IndexState *index_state = indexable->index_state;
739 // Don't redraw raw samples
740         if(index_state->index_zoom > mwindow->edl->local_session->zoom_sample)
741                 return;
742         draw_resources(NORMAL_DRAW, 1, indexable);
743         draw_overlays();
744         flash(0);
745 }
746
747 void TrackCanvas::draw_resources(int mode,
748         int indexes_only,
749         Indexable *indexable)
750 {
751         const int debug = 0;
752
753         if(debug) PRINT_TRACE
754
755 // can't stop thread here, because this is called for every pane
756 //      if(mode != IGNORE_THREAD && !indexes_only)
757 //              gui->resource_thread->stop_draw(!indexes_only);
758
759         if(mode != IGNORE_THREAD &&
760                 !indexes_only &&
761                 !gui->resource_thread->interrupted)
762         {
763                 printf("TrackCanvas::draw_resources %d: called without stopping ResourceThread\n",
764                         __LINE__);
765
766                 BC_Signals::dump_stack();
767         }
768
769         if(debug) PRINT_TRACE
770
771         resource_timer->update();
772
773 // Age resource pixmaps for deletion
774         if(!indexes_only)
775                 for(int i = 0; i < gui->resource_pixmaps.total; i++)
776                         gui->resource_pixmaps.values[i]->visible--;
777
778         if(mode == FORCE_REDRAW)
779                 gui->resource_pixmaps.remove_all_objects();
780
781         if(debug) PRINT_TRACE
782
783 // Search every edit
784         for(Track *current = mwindow->edl->tracks->first;
785                 current;
786                 current = NEXT)
787         {
788                 if(debug) PRINT_TRACE
789                 for(Edit *edit = current->edits->first; edit; edit = edit->next)
790                 {
791                         if(debug) PRINT_TRACE
792                         if( current->data_type != TRACK_SUBTITLE )
793                                 if(!edit->asset && !edit->nested_edl) continue;
794                         if(indexes_only)
795                         {
796                                 if(edit->track->data_type != TRACK_AUDIO) continue;
797
798                                 if(edit->nested_edl &&
799                                         strcmp(indexable->path, edit->nested_edl->path)) continue;
800
801                                 if(edit->asset &&
802                                         strcmp(indexable->path, edit->asset->path)) continue;
803                         }
804
805                         if(debug) PRINT_TRACE
806
807                         int64_t edit_x, edit_y, edit_w, edit_h;
808                         edit_dimensions(edit, edit_x, edit_y, edit_w, edit_h);
809
810 // Edit is visible
811                         if(MWindowGUI::visible(edit_x, edit_x + edit_w, 0, get_w()) &&
812                                 MWindowGUI::visible(edit_y, edit_y + edit_h, 0, get_h()))
813                         {
814                                 int64_t pixmap_x, pixmap_w, pixmap_h;
815                                 if(debug) PRINT_TRACE
816
817 // Search for existing pixmap containing edit
818                                 for(int i = 0; i < gui->resource_pixmaps.total; i++)
819                                 {
820                                         ResourcePixmap* pixmap = gui->resource_pixmaps.values[i];
821 // Same pointer can be different edit if editing took place
822                                         if(pixmap->edit_id == edit->id &&
823                                                 pixmap->pane_number == pane->number)
824                                         {
825                                                 pixmap->visible = 1;
826                                                 break;
827                                         }
828                                 }
829                                 if(debug) PRINT_TRACE
830
831 // Get new size, offset of pixmap needed
832                                 get_pixmap_size(edit,
833                                         edit_x,
834                                         edit_w,
835                                         pixmap_x,
836                                         pixmap_w,
837                                         pixmap_h);
838                                 if(debug) PRINT_TRACE
839
840 // Draw new data
841                                 if(pixmap_w && pixmap_h)
842                                 {
843 // Create pixmap if it doesn't exist
844                                         ResourcePixmap* pixmap = create_pixmap(edit, edit_x,
845                                                 pixmap_x, pixmap_w, pixmap_h);
846 // Resize it if it's bigger
847                                         if( pixmap_w > pixmap->pixmap_w ||
848                                             pixmap_h > pixmap->pixmap_h)
849                                                 pixmap->resize(pixmap_w, pixmap_h);
850                                         pixmap->update_settings(edit, edit_x, edit_w,
851                                                 pixmap_x, pixmap_w, pixmap_h);
852 // Draw data
853                                         if( current->show_assets() )
854                                                 pixmap->draw_data(this,
855                                                         edit, edit_x, edit_w,
856                                                         pixmap_x, pixmap_w, pixmap_h,
857                                                         mode, indexes_only);
858                                         else {
859                                                 set_bg_color(BLACK);
860                                                 clear_box(0,0, pixmap_w,pixmap_h, pixmap);
861                                         }
862 // Draw title
863                                         if( current->show_titles() )
864                                                 pixmap->draw_title(this,
865                                                         edit, edit_x, edit_w,
866                                                         pixmap_x, pixmap_w);
867 // Resize it if it's smaller
868                                         if(pixmap_w < pixmap->pixmap_w ||
869                                                 pixmap_h < pixmap->pixmap_h)
870                                                 pixmap->resize(pixmap_w, pixmap_h);
871
872 // Copy pixmap to background canvas
873                                         background_pixmap->draw_pixmap(pixmap,
874                                                 pixmap->pixmap_x,
875                                                 current->y_pixel - mwindow->edl->local_session->track_start[pane->number],
876                                                 pixmap->pixmap_w,
877                                                 edit_h);
878                                 }
879                                 if(debug) PRINT_TRACE
880
881                         }
882                 }
883         }
884
885
886 // Delete unused pixmaps
887         if(debug) PRINT_TRACE
888         if(!indexes_only)
889                 for(int i = gui->resource_pixmaps.total - 1; i >= 0; i--)
890                         if(gui->resource_pixmaps.values[i]->visible < PIXMAP_AGE)
891                         {
892 //printf("TrackCanvas::draw_resources %d\n", __LINE__);
893                                 delete gui->resource_pixmaps.values[i];
894                                 gui->resource_pixmaps.remove(gui->resource_pixmaps.values[i]);
895                         }
896         if(debug) PRINT_TRACE
897
898         if(hourglass_enabled)
899         {
900                 stop_hourglass();
901                 hourglass_enabled = 0;
902         }
903         if(debug) PRINT_TRACE
904
905 // can't stop thread here, because this is called for every pane
906 //      if(mode != IGNORE_THREAD && !indexes_only)
907 //              gui->resource_thread->start_draw();
908         if(debug) PRINT_TRACE
909
910
911 }
912
913 ResourcePixmap* TrackCanvas::create_pixmap(Edit *edit,
914         int64_t edit_x,
915         int64_t pixmap_x,
916         int64_t pixmap_w,
917         int64_t pixmap_h)
918 {
919         ResourcePixmap *result = 0;
920
921         for(int i = 0; i < gui->resource_pixmaps.total; i++)
922         {
923 //printf("TrackCanvas::create_pixmap 1 %d %d\n", edit->id, resource_pixmaps.values[i]->edit->id);
924                 if(gui->resource_pixmaps.values[i]->edit_id == edit->id &&
925                         gui->resource_pixmaps.values[i]->pane_number == pane->number)
926                 {
927                         result = gui->resource_pixmaps.values[i];
928                         break;
929                 }
930         }
931
932         if(!result)
933         {
934 //SET_TRACE
935                 result = new ResourcePixmap(mwindow,
936                         gui,
937                         edit,
938                         pane->number,
939                         pixmap_w,
940                         pixmap_h);
941 //SET_TRACE
942                 gui->resource_pixmaps.append(result);
943         }
944
945 //      result->resize(pixmap_w, pixmap_h);
946         return result;
947 }
948
949 void TrackCanvas::get_pixmap_size(Edit *edit,
950         int64_t edit_x,
951         int64_t edit_w,
952         int64_t &pixmap_x,
953         int64_t &pixmap_w,
954         int64_t &pixmap_h)
955 {
956
957 // Align x on frame boundaries
958
959
960 //      switch(edit->edits->track->data_type)
961 //      {
962 //              case TRACK_AUDIO:
963
964                         pixmap_x = edit_x;
965                         pixmap_w = edit_w;
966                         if(pixmap_x < 0)
967                         {
968                                 pixmap_w -= -edit_x;
969                                 pixmap_x = 0;
970                         }
971
972                         if(pixmap_x + pixmap_w > get_w())
973                         {
974                                 pixmap_w = get_w() - pixmap_x;
975                         }
976
977 //                      break;
978 //
979 //              case TRACK_VIDEO:
980 //              {
981 //                      int64_t picon_w = (int64_t)(edit->picon_w() + 0.5);
982 //                      int64_t frame_w = (int64_t)(edit->frame_w() + 0.5);
983 //                      int64_t pixel_increment = MAX(picon_w, frame_w);
984 //                      int64_t pixmap_x1 = edit_x;
985 //                      int64_t pixmap_x2 = edit_x + edit_w;
986 //
987 //                      if(pixmap_x1 < 0)
988 //                      {
989 //                              pixmap_x1 = (int64_t)((double)-edit_x / pixel_increment) *
990 //                                      pixel_increment +
991 //                                      edit_x;
992 //                      }
993 //
994 //                      if(pixmap_x2 > get_w())
995 //                      {
996 //                              pixmap_x2 = (int64_t)((double)(get_w() - edit_x) / pixel_increment + 1) *
997 //                                      pixel_increment +
998 //                                      edit_x;
999 //                      }
1000 //                      pixmap_x = pixmap_x1;
1001 //                      pixmap_w = pixmap_x2 - pixmap_x1;
1002 //                      break;
1003 //              }
1004 //      }
1005
1006         pixmap_h = mwindow->edl->local_session->zoom_track;
1007         Track *track = edit->edits->track;
1008         if( track->show_titles() )
1009                 pixmap_h += mwindow->theme->get_image("title_bg_data")->get_h();
1010 //printf("get_pixmap_size %d %d %d %d\n", edit_x, edit_w, pixmap_x, pixmap_w);
1011 }
1012
1013 void TrackCanvas::edit_dimensions(Edit *edit,
1014         int64_t &x, int64_t &y, int64_t &w, int64_t &h)
1015 {
1016         x = Units::round(edit->track->from_units(edit->startproject) *
1017                         mwindow->edl->session->sample_rate /
1018                         mwindow->edl->local_session->zoom_sample -
1019                         mwindow->edl->local_session->view_start[pane->number]);
1020
1021         y = edit->edits->track->y_pixel - mwindow->edl->local_session->track_start[pane->number];
1022
1023 // Method for calculating w so when edits are together we never get off by one error due to rounding
1024         int64_t x_next = Units::round(edit->track->from_units(edit->startproject + edit->length) *
1025                         mwindow->edl->session->sample_rate /
1026                         mwindow->edl->local_session->zoom_sample -
1027                         mwindow->edl->local_session->view_start[pane->number]);
1028         w = x_next - x;
1029
1030         int edit_h = 0;
1031         if( edit->track->show_titles() )
1032                 edit_h += mwindow->theme->get_image("title_bg_data")->get_h();
1033         if( edit->track->show_assets() )
1034                 edit_h += resource_h();
1035         h = edit_h;
1036 }
1037
1038 void TrackCanvas::track_dimensions(Track *track, int64_t &x, int64_t &y, int64_t &w, int64_t &h)
1039 {
1040         x = 0;
1041         w = get_w();
1042         y = track->y_pixel - mwindow->edl->local_session->track_start[pane->number];
1043         h = track->vertical_span(mwindow->theme);
1044 }
1045
1046
1047 void TrackCanvas::draw_paste_destination()
1048 {
1049         //int cursor_x = get_relative_cursor_x();
1050         //int cursor_y = get_relative_cursor_y();
1051         int current_atrack = 0;
1052         int current_vtrack = 0;
1053         int current_aedit = 0;
1054         int current_vedit = 0;
1055         int64_t w = 0;
1056         int64_t x;
1057         double position;
1058         int insertion  = 0;
1059
1060 //if(pane->number == BOTTOM_RIGHT_PANE)
1061 //printf("TrackCanvas::draw_paste_destination %d %p\n", __LINE__, mwindow->session->track_highlighted);
1062
1063         if((mwindow->session->current_operation == DRAG_ASSET &&
1064                         (mwindow->session->drag_assets->total ||
1065                         mwindow->session->drag_clips->total)) ||
1066                 (mwindow->session->current_operation == DRAG_EDIT &&
1067                         mwindow->session->drag_edits->total)) {
1068                 Indexable *indexable = 0;
1069                 EDL *clip = 0;
1070                 //int draw_box = 0;
1071
1072                 if(mwindow->session->current_operation == DRAG_ASSET &&
1073                         mwindow->session->drag_assets->size())
1074                         indexable = mwindow->session->drag_assets->get(0);
1075
1076                 if(mwindow->session->current_operation == DRAG_ASSET &&
1077                         mwindow->session->drag_clips->size())
1078                         clip = mwindow->session->drag_clips->get(0);
1079
1080                 int has_audio = 0, has_video = 0;
1081                 double paste_audio_length = 0, paste_video_length = 0;
1082                 double paste_audio_position = -1, paste_video_position = -1;
1083
1084                 if( indexable ) {
1085                         has_audio = indexable->have_audio();
1086                         paste_audio_length = !has_audio ? 0 :
1087                                  (double)indexable->get_audio_samples() / indexable->get_sample_rate();
1088                         has_video = indexable->have_video();
1089                         Asset *asset = indexable->is_asset ? (Asset *)indexable : 0;
1090                         // Images have length -1
1091                         if( asset && asset->video_data && asset->video_length < 0 ) {
1092                                 paste_video_length = mwindow->edl->session->si_useduration ?
1093                                         mwindow->edl->session->si_duration / asset->frame_rate :
1094                                         1.0 / asset->frame_rate ;  // 1 frame
1095                         }
1096                         else
1097                                 paste_video_length = !has_video ? 0 :
1098                                         (double)indexable->get_video_frames() / indexable->get_frame_rate();
1099                 }
1100
1101                 if( clip ) {
1102                         has_audio = clip->tracks->total_audio_tracks() > 0 ? 1 : 0;
1103                         paste_audio_length = !has_audio ? 0 : clip->tracks->total_audio_length();
1104                         has_video = clip->tracks->total_video_tracks() > 0 ? 1 : 0;
1105                         paste_video_length = !has_video ? 0 : clip->tracks->total_video_length();
1106                 }
1107
1108 // 'Align cursor on frame' lengths calculations
1109                 if( mwindow->edl->session->cursor_on_frames ) {
1110                         double fps = mwindow->edl->session->frame_rate;
1111                         double aud = floor(paste_audio_length * fps) / fps;
1112                         double vid = floor(paste_video_length * fps) / fps;
1113                         double length = has_video && has_audio ?
1114                                         aud < vid ? aud : vid :
1115                                 has_video ? vid :
1116                                 has_audio ? aud : 0;
1117                         paste_video_length = paste_audio_length = length;
1118                 }
1119
1120                 if( has_audio ) { // we use video if we are over video and audio if we are over audio
1121                         int64_t length = 0;
1122                         switch( mwindow->session->track_highlighted->data_type ) {
1123                         case TRACK_VIDEO: length = paste_video_length;  break;
1124                         case TRACK_AUDIO: length = paste_audio_length;  break;
1125                         }
1126                         int64_t asset_length = mwindow->session->track_highlighted->
1127                                 to_units(length, 1);
1128                         paste_audio_position = mwindow->session->track_highlighted->
1129                                 from_units(drop_edit_position(&insertion, NULL, asset_length));
1130                 }
1131                 if( has_video ) {
1132                         int64_t asset_length = mwindow->session->track_highlighted->
1133                                 to_units(paste_video_length, 1);
1134                         paste_video_position = mwindow->session->track_highlighted->
1135                                 from_units(drop_edit_position(&insertion, NULL, asset_length));
1136                 }
1137
1138 // Get destination track
1139                 for(Track *dest = mwindow->session->track_highlighted;
1140                         dest;
1141                         dest = dest->next) {
1142                         if(dest->record) {
1143 // Get source width in pixels
1144                                 w = -1;
1145 // Use start of highlighted edit
1146                                 if(mwindow->session->edit_highlighted) {
1147                                         position = mwindow->session->track_highlighted->from_units(
1148                                                 mwindow->session->edit_highlighted->startproject);
1149                                 }
1150                                 else {
1151 // Use end of highlighted track, disregarding effects
1152                                         position = mwindow->session->track_highlighted->from_units(
1153                                                 mwindow->session->track_highlighted->edits->length());
1154                                 }
1155
1156 // Get the x coordinate
1157                                 x = Units::to_int64(position *
1158                                         mwindow->edl->session->sample_rate /
1159                                         mwindow->edl->local_session->zoom_sample) -
1160                                         mwindow->edl->local_session->view_start[pane->number];
1161
1162                                 double paste_position = -1.;
1163                                 if(dest->data_type == TRACK_AUDIO) {
1164                                         if(indexable && current_atrack < indexable->get_audio_channels()) {
1165 //printf("TrackCanvas::draw_paste_destination %d %d\n", __LINE__, current_atrack);
1166                                                 w = Units::to_int64((double)indexable->get_audio_samples() /
1167                                                         indexable->get_sample_rate() *
1168                                                         mwindow->edl->session->sample_rate /
1169                                                         mwindow->edl->local_session->zoom_sample);
1170                                                 paste_position = paste_audio_position;
1171                                         }
1172                                         else if(clip && current_atrack < clip->tracks->total_audio_tracks()) {
1173                                                 w = Units::to_int64((double)clip->tracks->total_length() *
1174                                                         mwindow->edl->session->sample_rate /
1175                                                         mwindow->edl->local_session->zoom_sample);
1176                                                 paste_position = paste_audio_position;
1177 //printf("draw_paste_destination %d\n", x);
1178                                         }
1179                                         else if(mwindow->session->current_operation == DRAG_EDIT &&
1180                                                 current_aedit < mwindow->session->drag_edits->total) {
1181                                                 Edit *edit;
1182                                                 while(current_aedit < mwindow->session->drag_edits->total &&
1183                                                         mwindow->session->drag_edits->values[current_aedit]->track->data_type != TRACK_AUDIO)
1184                                                         current_aedit++;
1185
1186                                                 if(current_aedit < mwindow->session->drag_edits->total) {
1187                                                         edit = mwindow->session->drag_edits->values[current_aedit];
1188                                                         w = Units::to_int64(edit->length / mwindow->edl->local_session->zoom_sample);
1189                                                         paste_position = mwindow->session->track_highlighted->
1190                                                                 from_units(drop_edit_position(&insertion,
1191                                                                         mwindow->session->drag_edit,
1192                                                                         mwindow->session->drag_edit->length));
1193                                                         current_aedit++;
1194                                                 }
1195                                         }
1196                                         if( paste_position >= 0 ) {
1197                                                 position = paste_position;
1198                                                 current_atrack++;
1199                                                 //draw_box = 1;
1200                                         }
1201                                         else
1202                                                 w = -1;
1203                                 }
1204                                 else if(dest->data_type == TRACK_VIDEO) {
1205 //printf("draw_paste_destination 1\n");
1206                                         if(indexable && current_vtrack < indexable->get_video_layers())
1207                                         {
1208                                                 w = Units::to_int64((double)indexable->get_video_frames() /
1209                                                         indexable->get_frame_rate() *
1210                                                         mwindow->edl->session->sample_rate /
1211                                                         mwindow->edl->local_session->zoom_sample);
1212                                                 paste_position = paste_video_position;
1213                                         }
1214                                         else if(clip && current_vtrack < clip->tracks->total_video_tracks()) {
1215                                                 w = Units::to_int64(clip->tracks->total_length() *
1216                                                         mwindow->edl->session->sample_rate /
1217                                                         mwindow->edl->local_session->zoom_sample);
1218                                                 paste_position = paste_video_position;
1219                                         }
1220                                         else if(mwindow->session->current_operation == DRAG_EDIT &&
1221                                                 current_vedit < mwindow->session->drag_edits->total) {
1222                                                 Edit *edit;
1223                                                 while(current_vedit < mwindow->session->drag_edits->total &&
1224                                                         mwindow->session->drag_edits->values[current_vedit]->track->data_type != TRACK_VIDEO)
1225                                                         current_vedit++;
1226
1227                                                 if(current_vedit < mwindow->session->drag_edits->total) {
1228                                                         edit = mwindow->session->drag_edits->values[current_vedit];
1229                                                         w = Units::to_int64(edit->track->from_units(edit->length) *
1230                                                                 mwindow->edl->session->sample_rate /
1231                                                                 mwindow->edl->local_session->zoom_sample);
1232                                                         paste_position = mwindow->session->track_highlighted->
1233                                                                 from_units(drop_edit_position(&insertion,
1234                                                                         mwindow->session->drag_edit,
1235                                                                         mwindow->session->drag_edit->length));
1236                                                         current_vedit++;
1237                                                 }
1238                                         }
1239                                         if( paste_position >= 0 ) {
1240                                                 position = paste_position;
1241                                                 current_vtrack++;
1242                                                 //draw_box = 1;
1243                                         }
1244                                         else
1245                                                 w = -1;
1246                                 }
1247
1248                                 if(w >= 0) {
1249 // Get the x coordinate
1250                                         x = Units::to_int64(position *
1251                                                 mwindow->edl->session->sample_rate /
1252                                                 mwindow->edl->local_session->zoom_sample) -
1253                                                 mwindow->edl->local_session->view_start[pane->number];
1254                                         int y = dest->y_pixel - mwindow->edl->local_session->track_start[pane->number];
1255                                         int h = dest->vertical_span(mwindow->theme);
1256
1257 //printf("TrackCanvas::draw_paste_destination 2 %d %d %d %d\n", x, y, w, h);
1258                                         if(x < -BC_INFINITY) {
1259                                                 w -= -BC_INFINITY - x;
1260                                                 x += -BC_INFINITY - x;
1261                                         }
1262                                         w = MIN(65535, w);
1263 // if(pane->number == TOP_RIGHT_PANE)
1264 // printf("TrackCanvas::draw_paste_destination %d %d %d %d %d\n",
1265 // __LINE__, x, y, w, h);
1266                                         if (insertion)
1267                                                 draw_highlight_insertion(x, y, w, h);
1268                                         else
1269                                                 draw_highlight_rectangle(x, y, w, h);
1270                                 }
1271                         }
1272                 }
1273         }
1274 }
1275
1276 void TrackCanvas::plugin_dimensions(Plugin *plugin, int64_t &x, int64_t &y, int64_t &w, int64_t &h)
1277 {
1278         x = Units::round(plugin->track->from_units(plugin->startproject) *
1279                 mwindow->edl->session->sample_rate /
1280                 mwindow->edl->local_session->zoom_sample -
1281                 mwindow->edl->local_session->view_start[pane->number]);
1282         w = Units::round(plugin->track->from_units(plugin->length) *
1283                 mwindow->edl->session->sample_rate /
1284                 mwindow->edl->local_session->zoom_sample);
1285         y = plugin->track->y_pixel
1286                 - mwindow->edl->local_session->track_start[pane->number];
1287         if( plugin->track->show_titles() )
1288                 y += mwindow->theme->get_image("title_bg_data")->get_h();
1289         if( plugin->track->show_assets() )
1290                 y += resource_h();
1291         y += plugin->plugin_set->get_number() *
1292                         mwindow->theme->get_image("plugin_bg_data")->get_h();
1293         h = mwindow->theme->get_image("plugin_bg_data")->get_h();
1294 }
1295
1296 int TrackCanvas::resource_h()
1297 {
1298         return mwindow->edl->local_session->zoom_track;
1299 }
1300
1301 void TrackCanvas::draw_highlight_rectangle(int x, int y, int w, int h)
1302 {
1303
1304 // if we have to draw a highlighted rectangle completely on the left or completely on the right of the viewport,
1305 // just draw arrows, so user has indication that something is there
1306 // FIXME: get better colors
1307
1308         if (x + w <= 0)
1309         {
1310                 draw_triangle_left(0, y + h /6, h * 2/3, h * 2/3, BLACK, GREEN, YELLOW, RED, BLUE);
1311                 return;
1312         } else
1313         if (x >= get_w())
1314         {
1315                 draw_triangle_right(get_w() - h * 2/3, y + h /6, h * 2/3, h * 2/3, BLACK, GREEN, YELLOW, RED, BLUE);
1316                 return;
1317         }
1318
1319 // Fix bug in heroines & cvs version as of 22.8.2005:
1320 // If we grab when zoomed in and zoom out while dragging, when edit gets really narrow strange things start happening
1321         if (w >= 0 && w < 3) {x -= w /2; w = 3;};
1322         if(x < -10)
1323         {
1324                 w += x - -10;
1325                 x = -10;
1326         }
1327
1328         if(y < -10)
1329         {
1330                 h += y - -10;
1331                 y = -10;
1332         }
1333
1334         w = MIN(w, get_w() + 20);
1335         h = MIN(h, get_h() + 20);
1336         if(w > 0 && h > 0)
1337         {
1338                 set_color(mwindow->preferences->highlight_inverse);
1339                 set_inverse();
1340                 //draw_rectangle(x, y, w, h);
1341                 draw_rectangle(x + 1, y + 1, w - 2, h - 2);
1342                 draw_rectangle(x + 2, y + 2, w - 4, h - 4);
1343                 set_opaque();
1344                 draw_rectangle(x, y, w, h);
1345         }
1346 //if(pane->number == TOP_RIGHT_PANE)
1347 //printf("TrackCanvas::draw_highlight_rectangle %d %d %d %d %d\n", __LINE__, x, y, w, h);
1348 }
1349
1350 void TrackCanvas::draw_highlight_insertion(int x, int y, int w, int h)
1351 {
1352
1353 // if we have to draw a highlighted rectangle completely on the left or completely on the right of the viewport,
1354 // just draw arrows, so user has indication that something is there
1355 // FIXME: get better colors
1356
1357
1358
1359         int h1 = h / 8;
1360         int h2 = h / 4;
1361
1362         set_inverse();
1363
1364 /* these don't look so good
1365
1366         draw_line(x, y, x, y+h);
1367         draw_line(x - h2 * 2, y + h1*2,   x - h2, y+h1*2);
1368         draw_line(x - h2 * 2, y + h1*2+1, x - h2, y+h1*2+1);
1369         draw_line(x - h2 * 2, y + h1*6,   x - h2, y+h1*6);
1370         draw_line(x - h2 * 2, y + h1*6+1, x - h2, y+h1*6+1);
1371 */
1372         draw_triangle_right(x - h2, y + h1, h2, h2, BLACK, GREEN, YELLOW, RED, BLUE);
1373         draw_triangle_right(x - h2, y + h1*5, h2, h2, BLACK, GREEN, YELLOW, RED, BLUE);
1374
1375 /*      draw_line(x + h2 * 2, y + h1*2,   x + h2, y+h1*2);
1376         draw_line(x + h2 * 2, y + h1*2+1, x + h2, y+h1*2+1);
1377         draw_line(x + h2 * 2, y + h1*6,   x + h2, y+h1*6);
1378         draw_line(x - h2 * 2, y + h1*6+1, x + h2, y+h1*6+1);
1379 */
1380         draw_triangle_left(x, y + h1, h2, h2, BLACK, GREEN, YELLOW, RED, BLUE);
1381         draw_triangle_left(x, y + h1*5, h2, h2, BLACK, GREEN, YELLOW, RED, BLUE);
1382
1383 // draw the box centred around x
1384         x -= w / 2;
1385 // Fix bug in heroines & cvs version as of 22.8.2005:
1386 // If we grab when zoomed in and zoom out while dragging, when edit gets really narrow strange things start happening
1387         if (w >= 0 && w < 3) {x -= w /2; w = 3;};
1388         if(x < -10)
1389         {
1390                 w += x - -10;
1391                 x = -10;
1392         }
1393         if(y < -10)
1394         {
1395                 h += y - -10;
1396                 y = -10;
1397         }
1398         w = MIN(w, get_w() + 20);
1399         h = MIN(h, get_h() + 20);
1400         set_color(mwindow->preferences->highlight_inverse);
1401         set_inverse();
1402         draw_rectangle(x, y, w, h);
1403         draw_rectangle(x + 1, y + 1, w - 2, h - 2);
1404         set_opaque();
1405 //printf("TrackCanvas::draw_highlight_insertion %d %d %d %d\n", x, y, w, h);
1406 }
1407
1408 void TrackCanvas::draw_playback_cursor()
1409 {
1410 // Called before playback_cursor exists
1411 //      if(mwindow->playback_cursor && mwindow->playback_cursor->visible)
1412 //      {
1413 //              mwindow->playback_cursor->visible = 0;
1414 //              mwindow->playback_cursor->draw();
1415 //      }
1416 }
1417
1418 void TrackCanvas::get_handle_coords(Edit *edit, int64_t &x, int64_t &y, int64_t &w, int64_t &h, int side)
1419 {
1420         int handle_w = mwindow->theme->edithandlein_data[0]->get_w();
1421         int handle_h = mwindow->theme->edithandlein_data[0]->get_h();
1422
1423         edit_dimensions(edit, x, y, w, h);
1424
1425         if( edit->track->show_titles() )
1426                 y += mwindow->theme->get_image("title_bg_data")->get_h();
1427
1428         if(side == EDIT_OUT)
1429                 x += w - handle_w;
1430
1431         h = handle_h;
1432         w = handle_w;
1433 }
1434
1435 void TrackCanvas::get_transition_coords(Edit *edit,
1436                 int64_t &x, int64_t &y, int64_t &w, int64_t &h)
1437 {
1438         int transition_w = 30, transition_h = 30;
1439         int has_titles = edit->track->show_titles();
1440         int has_assets = edit->track->show_assets();
1441         double title_bg_h = mwindow->theme->get_image("title_bg_data")->get_h();
1442         double asset_h = resource_h();
1443         double ys = has_assets ? asset_h : has_titles ? title_bg_h : 0;
1444         double dy = has_titles ?
1445                 ( has_assets ? title_bg_h + asset_h/2 : title_bg_h/2 ) :
1446                 ( has_assets ? asset_h/2 : 0) ;
1447         double title_h = mwindow->theme->title_h;
1448         if( dy < title_h / 2 ) { ys = title_h;  dy = ys / 2; }
1449         y += dy;
1450
1451         x -= transition_w / 2;
1452         y -= transition_h / 2;
1453         w = transition_w;
1454         h = transition_h;
1455 }
1456
1457 void TrackCanvas::draw_highlighting()
1458 {
1459         int64_t x, y, w, h;
1460         int draw_box = 0;
1461
1462         switch(mwindow->session->current_operation)
1463         {
1464                 case DRAG_ATRANSITION:
1465                 case DRAG_VTRANSITION:
1466 //printf("TrackCanvas::draw_highlighting 1 %p %p\n",
1467 //      mwindow->session->track_highlighted, mwindow->session->edit_highlighted);
1468                         if(mwindow->session->edit_highlighted) {
1469                                 if((mwindow->session->current_operation == DRAG_ATRANSITION &&
1470                                         mwindow->session->track_highlighted->data_type == TRACK_AUDIO) ||
1471                                         (mwindow->session->current_operation == DRAG_VTRANSITION &&
1472                                         mwindow->session->track_highlighted->data_type == TRACK_VIDEO)) {
1473                                         edit_dimensions(mwindow->session->edit_highlighted,
1474                                                 x, y, w, h);
1475                                         if(MWindowGUI::visible(x, x + w, 0, get_w()) &&
1476                                                 MWindowGUI::visible(y, y + h, 0, get_h())) {
1477                                                 draw_box = 1;
1478                                                 get_transition_coords(mwindow->session->edit_highlighted,
1479                                                         x, y, w, h);
1480                                         }
1481                                 }
1482                         }
1483                         break;
1484
1485 // Dragging a new effect from the Resource window
1486                 case DRAG_AEFFECT:
1487                 case DRAG_VEFFECT:
1488                         if(mwindow->session->track_highlighted &&
1489                                 ((mwindow->session->current_operation == DRAG_AEFFECT &&
1490                                   mwindow->session->track_highlighted->data_type == TRACK_AUDIO) ||
1491                                  (mwindow->session->current_operation == DRAG_VEFFECT &&
1492                                   mwindow->session->track_highlighted->data_type == TRACK_VIDEO))) {
1493 // Put it before another plugin
1494                                 if(mwindow->session->plugin_highlighted) {
1495                                         plugin_dimensions(mwindow->session->plugin_highlighted,
1496                                                 x, y, w, h);
1497 //printf("TrackCanvas::draw_highlighting 1 %d %d\n", x, w);
1498                                 }
1499 // Put it after a plugin set
1500                                 else if( mwindow->session->pluginset_highlighted &&
1501                                          mwindow->session->pluginset_highlighted->last ) {
1502                                         plugin_dimensions((Plugin*)mwindow->session->pluginset_highlighted->last,
1503                                                 x, y, w, h);
1504 //printf("TrackCanvas::draw_highlighting 1 %d %d\n", x, w);
1505                                         int64_t track_x, track_y, track_w, track_h;
1506                                         track_dimensions(mwindow->session->track_highlighted,
1507                                                 track_x, track_y, track_w, track_h);
1508
1509                                         x += w;
1510                                         w = Units::round(
1511                                                         mwindow->session->track_highlighted->get_length() *
1512                                                         mwindow->edl->session->sample_rate /
1513                                                         mwindow->edl->local_session->zoom_sample -
1514                                                         mwindow->edl->local_session->view_start[pane->number]) -
1515                                                 x;
1516 //printf("TrackCanvas::draw_highlighting 2 %d\n", w);
1517                                         if(w <= 0) w = track_w;
1518                                 }
1519                                 else {
1520                                         track_dimensions(mwindow->session->track_highlighted,
1521                                                 x, y, w, h);
1522
1523 //printf("TrackCanvas::draw_highlighting 1 %d %d %d %d\n", x, y, w, h);
1524 // Put it in a new plugin set determined by the selected range
1525                                         if(mwindow->edl->local_session->get_selectionend() >
1526                                                 mwindow->edl->local_session->get_selectionstart()) {
1527                                                 x = Units::to_int64(mwindow->edl->local_session->get_selectionstart() *
1528                                                         mwindow->edl->session->sample_rate /
1529                                                         mwindow->edl->local_session->zoom_sample -
1530                                                         mwindow->edl->local_session->view_start[pane->number]);
1531                                                 w = Units::to_int64((mwindow->edl->local_session->get_selectionend() -
1532                                                         mwindow->edl->local_session->get_selectionstart()) *
1533                                                         mwindow->edl->session->sample_rate /
1534                                                         mwindow->edl->local_session->zoom_sample);
1535                                         }
1536 // Put it in a new plugin set determined by an edit boundary
1537                                         else if(mwindow->session->edit_highlighted) {
1538                                                 int64_t temp_y, temp_h;
1539                                                 edit_dimensions(mwindow->session->edit_highlighted,
1540                                                         x, temp_y, w, temp_h);
1541                                         }
1542 // Put it at the beginning of the track in a new plugin set
1543                                 }
1544
1545                                 if( MWindowGUI::visible(x, x + w, 0, get_w()) &&
1546                                     MWindowGUI::visible(y, y + h, 0, get_h()) ) {
1547 //printf("TrackCanvas::draw_highlighting 1\n");
1548                                         draw_box = 1;
1549                                 }
1550                         }
1551                         break;
1552
1553                 case DRAG_ASSET:
1554                         if(mwindow->session->track_highlighted) {
1555 //                              track_dimensions(mwindow->session->track_highlighted, x, y, w, h);
1556
1557 //                              if(MWindowGUI::visible(y, y + h, 0, get_h()))
1558 //                              {
1559                                         draw_paste_destination();
1560 //                              }
1561                         }
1562                         break;
1563
1564                 case DRAG_EDIT:
1565                         if(mwindow->session->track_highlighted) {
1566 //                              track_dimensions(mwindow->session->track_highlighted, x, y, w, h);
1567 //
1568 //                              if(MWindowGUI::visible(y, y + h, 0, get_h())) {
1569                                         draw_paste_destination();
1570 //                              }
1571                         }
1572                         break;
1573                 case DRAG_GROUP:
1574                         if( mwindow->session->track_highlighted && mwindow->session->drag_group &&
1575                             mwindow->session->drag_group_edit && mwindow->session->drag_group_first_track ) {
1576                                 Track *track = mwindow->session->track_highlighted;
1577                                 EDL *drag_group = mwindow->session->drag_group;
1578                                 Track *edit_track = mwindow->session->drag_group_edit->track;
1579                                 Track *drag_track = mwindow->session->drag_group_first_track;
1580                                 while( track && edit_track && edit_track != drag_track ) {
1581                                         edit_track = edit_track->previous;
1582                                         track = track->previous;
1583                                 }
1584                                 int cx = get_cursor_x();
1585                                 double cur_pos = mwindow->session->drag_group_position;
1586                                 double new_pos = mwindow->edl->get_cursor_position(cx, pane->number);
1587                                 new_pos -= mwindow->session->drag_position - cur_pos;
1588                                 new_pos = mwindow->edl->align_to_frame(new_pos, 0);
1589                                 double drop_position = new_pos;
1590                                 int color = GREEN;
1591                                 int ret = test_track_group(drag_group, track, new_pos);
1592                                 if( ret < 0 )
1593                                         color = ORANGE;
1594                                 else if( !ret ) {
1595                                         if( new_pos != drop_position ) {
1596                                                 double pos = new_pos;
1597                                                 pos += mwindow->session->drag_position - cur_pos;
1598                                                 cx = mwindow->edl->get_position_cursorx(pos, pane->number);
1599                                                 ret = test_track_group(drag_group, track, new_pos);
1600                                         }
1601                                         color = ret > 0 ? YELLOW : shift_down() ? RED : BLUE;
1602                                 }
1603                                 track_dimensions(mwindow->session->track_highlighted, x, y, w, h);
1604                                 int dx = cx - mwindow->session->drag_origin_x;
1605                                 int dy = y - mwindow->session->drag_origin_y;
1606                                 draw_selected_edits(mwindow->edl, dx, dy, color, -1);
1607                         }
1608                         break;
1609 // Dragging an effect from the timeline
1610                 case DRAG_AEFFECT_COPY:
1611                 case DRAG_VEFFECT_COPY:
1612                         if( (mwindow->session->plugin_highlighted || mwindow->session->track_highlighted) &&
1613                             ((mwindow->session->current_operation == DRAG_AEFFECT_COPY &&
1614                               mwindow->session->track_highlighted->data_type == TRACK_AUDIO) ||
1615                              (mwindow->session->current_operation == DRAG_VEFFECT_COPY &&
1616                               mwindow->session->track_highlighted->data_type == TRACK_VIDEO))) {
1617
1618                                 int64_t plugin_position = -1;
1619                                 Plugin *drag_plugin = mwindow->session->drag_plugin;
1620                                 PluginSet *hi_plugin_set = mwindow->session->pluginset_highlighted;
1621                                 Track *hi_track = mwindow->session->track_highlighted;
1622                                 Edit *hi_edit = mwindow->session->edit_highlighted;
1623 // Put it into a silence zone
1624                                 if( hi_plugin_set && hi_plugin_set->last &&
1625                                     hi_plugin_set->track == drag_plugin->track ) {
1626                                         plugin_dimensions((Plugin *)hi_plugin_set->last, x, y, w, h);
1627                                         plugin_position = drop_plugin_position(hi_plugin_set, drag_plugin);
1628                                         hi_track = drag_plugin->track;
1629                                 }
1630                                 else if( hi_track ) {
1631 // Put it in a new plugin set determined by an edit boundary, or at the start of the track
1632                                         track_dimensions(hi_track, x, y, w, h);
1633                                         plugin_position = hi_edit ? hi_edit->startproject : 0;
1634                                 }
1635
1636                                 if( plugin_position < 0 ) break;
1637
1638 // Calculate length of plugin based on data type of track and units
1639                                 double zoom_scale = (double)mwindow->edl->session->sample_rate /
1640                                                 mwindow->edl->local_session->zoom_sample;
1641                                 x = Units::round(hi_track->from_units(plugin_position) * zoom_scale) -
1642                                                 mwindow->edl->local_session->view_start[pane->number];
1643                                 w = Units::round(hi_track->from_units(drag_plugin->length) * zoom_scale);
1644
1645                                 if( MWindowGUI::visible(x, x + w, 0, get_w()) &&
1646                                     MWindowGUI::visible(y, y + h, 0, get_h()) ) {
1647                                         draw_box = 1;
1648                                 }
1649                         }
1650                         break;
1651
1652                 case DRAG_PLUGINKEY:
1653                         if(mwindow->session->plugin_highlighted &&
1654                            mwindow->session->current_operation == DRAG_PLUGINKEY)
1655                         {
1656 // Just highlight the plugin
1657                                 plugin_dimensions(mwindow->session->plugin_highlighted, x, y, w, h);
1658
1659                                 if(MWindowGUI::visible(x, x + w, 0, get_w()) &&
1660                                         MWindowGUI::visible(y, y + h, 0, get_h()))
1661                                 {
1662                                         draw_box = 1;
1663                                 }
1664                         }
1665                         break;
1666
1667         }
1668
1669         if( draw_box )
1670                 draw_highlight_rectangle(x, y, w, h);
1671
1672         draw_selected_edits(mwindow->edl, 0, 0, GREEN+BLUE, RED);
1673 }
1674
1675 // x does not reliably draw a really big rectangle
1676 void TrackCanvas::draw_selected(int x, int y, int w, int h)
1677 {
1678         int x1 = bmax(x, 0), x2 = bmin(x+w, get_w());
1679         if( x1 > x2 ) return;
1680         int y1 = bmax(y, 0), y2 = bmin(y+h, get_h());
1681         if( y1 > y2 ) return;
1682         if( x   >= 0 && x   < get_w() ) draw_line(x,y1,   x,y2);
1683         if( x+w >= 0 && x+w < get_w() ) draw_line(x+w,y1, x+w,y2);
1684         if( y   >= 0 && y   < get_h() ) draw_line(x1,y,   x2,y);
1685         if( y+h >= 0 && y+h < get_h() ) draw_line(x1,y+h, x2,y+h);
1686 }
1687
1688 void TrackCanvas::draw_selected_edits(EDL *edl, int dx, int dy, int color0, int color1)
1689 {
1690         for( Track *track=edl->tracks->first; track; track=track->next ) {
1691                 for( Edit *edit=track->edits->first; edit; edit=edit->next ) {
1692                         if( !edit->is_selected ) continue;
1693                         int64_t x, y, w, h;
1694                         edit_dimensions(edit, x, y, w, h);
1695                         x += dx;  y += dy;
1696                         if( !MWindowGUI::visible(x, x + w, 0, get_w()) ) continue;
1697                         if( !MWindowGUI::visible(y, y + h, 0, get_h()) ) continue;
1698                         set_opaque();
1699                         int inner = color1 < 0 ? color0 : !edit->group_id ? color0 :
1700                                 mwindow->get_group_color(edit->group_id);
1701                         set_color(inner);
1702                         draw_selected(x, y, w, h);
1703                         int outer = color1 < 0 ? color0 : !edit->group_id ? color1 : inner;
1704                         set_color(outer);
1705                         draw_selected(x-1, y-1, w+2, h+2);
1706                         draw_selected(x-2, y-2, w+1, h+1);
1707                 }
1708         }
1709 }
1710
1711 void TrackCanvas::draw_plugins()
1712 {
1713         char string[BCTEXTLEN];
1714         int current_on = 0;
1715         int current_show = 0;
1716         int current_preset = 0;
1717
1718         for(int i = 0; i < plugin_on_toggles.total; i++)
1719                 plugin_on_toggles.values[i]->in_use = 0;
1720         for(int i = 0; i < plugin_show_toggles.total; i++)
1721                 plugin_show_toggles.values[i]->in_use = 0;
1722         for(int i = 0; i < preset_edit_buttons.total; i++)
1723                 plugin_show_toggles.values[i]->in_use = 0;
1724
1725
1726         for(Track *track = mwindow->edl->tracks->first;
1727                 track;
1728                 track = track->next)
1729         {
1730                 if(track->expand_view)
1731                 {
1732                         for(int i = 0; i < track->plugin_set.total; i++)
1733                         {
1734                                 PluginSet *pluginset = track->plugin_set.values[i];
1735
1736                                 for(Plugin *plugin = (Plugin*)pluginset->first; plugin; plugin = (Plugin*)plugin->next)
1737                                 {
1738                                         int64_t total_x, y, total_w, h;
1739                                         plugin_dimensions(plugin, total_x, y, total_w, h);
1740
1741                                         if(MWindowGUI::visible(total_x, total_x + total_w, 0, get_w()) &&
1742                                                 MWindowGUI::visible(y, y + h, 0, get_h()) &&
1743                                                 plugin->plugin_type != PLUGIN_NONE)
1744                                         {
1745                                                 int x = total_x, w = total_w, left_margin = 5;
1746                                                 int right_margin = 5;
1747                                                 if(x < 0)
1748                                                 {
1749                                                         w -= -x;
1750                                                         x = 0;
1751                                                 }
1752                                                 if(w + x > get_w()) w -= (w + x) - get_w();
1753
1754                                                 draw_3segmenth(x,
1755                                                         y,
1756                                                         w,
1757                                                         total_x,
1758                                                         total_w,
1759                                                         mwindow->theme->get_image("plugin_bg_data"),
1760                                                         0);
1761                                                 set_color(mwindow->theme->title_color);
1762                                                 set_font(mwindow->theme->title_font);
1763                                                 plugin->calculate_title(string, 0);
1764
1765 // Truncate string to int64_test visible in background
1766                                                 int len = strlen(string), j;
1767                                                 for(j = len; j >= 0; j--)
1768                                                 {
1769                                                         if(left_margin + get_text_width(mwindow->theme->title_font, string) > w)
1770                                                         {
1771                                                                 string[j] = 0;
1772                                                         }
1773                                                         else
1774                                                                 break;
1775                                                 }
1776
1777 // Justify the text on the left boundary of the edit if it is visible.
1778 // Otherwise justify it on the left side of the screen.
1779                                                 int64_t text_x = total_x + left_margin;
1780                                                 int64_t text_w = get_text_width(mwindow->theme->title_font, string, strlen(string));
1781                                                 text_x = MAX(left_margin, text_x);
1782                                                 draw_text(text_x,
1783                                                         y + get_text_ascent(mwindow->theme->title_font) + 2,
1784                                                         string,
1785                                                         strlen(string),
1786                                                         0);
1787                                                 int64_t min_x = total_x + text_w;
1788
1789
1790 // Update plugin toggles
1791                                                 int toggle_x = total_x + total_w;
1792                                                 int toggle_y = y;
1793                                                 toggle_x = MIN(get_w() - right_margin, toggle_x);
1794
1795 // On toggle
1796                                                 toggle_x -= PluginOn::calculate_w(mwindow) + 10;
1797                                                 if(toggle_x > min_x)
1798                                                 {
1799                                                         if(current_on >= plugin_on_toggles.total)
1800                                                         {
1801                                                                 PluginOn *plugin_on = new PluginOn(mwindow, toggle_x, toggle_y, plugin);
1802                                                                 add_subwindow(plugin_on);
1803                                                                 plugin_on_toggles.append(plugin_on);
1804                                                         }
1805                                                         else
1806                                                         {
1807                                                                 plugin_on_toggles.values[current_on]->update(toggle_x, toggle_y, plugin);
1808                                                         }
1809                                                         current_on++;
1810                                                 }
1811
1812 // Toggles for standalone plugins only
1813                                                 if(plugin->plugin_type == PLUGIN_STANDALONE)
1814                                                 {
1815 // Show
1816                                                         toggle_x -= PluginShow::calculate_w(mwindow) + 10;
1817                                                         if(toggle_x > min_x)
1818                                                         {
1819                                                                 if(current_show >= plugin_show_toggles.total)
1820                                                                 {
1821                                                                         PluginShow *plugin_show = new PluginShow(mwindow, toggle_x, toggle_y, plugin);
1822                                                                         add_subwindow(plugin_show);
1823                                                                         plugin_show_toggles.append(plugin_show);
1824                                                                 }
1825                                                                 else
1826                                                                 {
1827                                                                         plugin_show_toggles.values[current_show]->update(toggle_x, toggle_y, plugin);
1828                                                                 }
1829                                                                 current_show++;
1830                                                         }
1831                                                         toggle_x -= PluginPresetEdit::calculate_w(mwindow) + 10;
1832                                                         if(toggle_x > min_x)
1833                                                         {
1834                                                                 if(current_preset >= preset_edit_buttons.total)
1835                                                                 {
1836                                                                         PluginPresetEdit *preset_edit = new PluginPresetEdit(mwindow, toggle_x, toggle_y, plugin);
1837                                                                         add_subwindow(preset_edit);
1838                                                                         preset_edit_buttons.append(preset_edit);
1839                                                                 }
1840                                                                 else
1841                                                                 {
1842                                                                         preset_edit_buttons.values[current_preset]->update(toggle_x, toggle_y, plugin);
1843                                                                 }
1844                                                                 current_preset++;
1845                                                         }
1846                                                 }
1847                                         }
1848                                 }
1849                         }
1850                 }
1851         }
1852
1853 // Remove unused toggles
1854
1855         while(current_preset < preset_edit_buttons.total)
1856         {
1857                 preset_edit_buttons.remove_object_number(current_preset);
1858         }
1859         while(current_show < plugin_show_toggles.total)
1860         {
1861                 plugin_show_toggles.remove_object_number(current_show);
1862         }
1863
1864         while(current_on < plugin_on_toggles.total)
1865         {
1866                 plugin_on_toggles.remove_object_number(current_on);
1867         }
1868 }
1869
1870 void TrackCanvas::refresh_plugintoggles()
1871 {
1872         for(int i = 0; i < plugin_on_toggles.total; i++)
1873         {
1874                 PluginOn *on = plugin_on_toggles.values[i];
1875                 on->reposition_window(on->get_x(), on->get_y());
1876         }
1877         for(int i = 0; i < plugin_show_toggles.total; i++)
1878         {
1879                 PluginShow *show = plugin_show_toggles.values[i];
1880                 show->reposition_window(show->get_x(), show->get_y());
1881         }
1882         for(int i = 0; i < preset_edit_buttons.total; i++)
1883         {
1884                 PluginPresetEdit *preset_edit = preset_edit_buttons.values[i];
1885                 preset_edit->reposition_window(preset_edit->get_x(), preset_edit->get_y());
1886         }
1887 }
1888
1889 void TrackCanvas::draw_hard_edges()
1890 {
1891         int64_t x, y, w, h;
1892
1893         for(Track *track = mwindow->edl->tracks->first; track; track = track->next) {
1894                 for(Edit *edit = track->edits->first; edit; edit = edit->next) {
1895                         if( !edit->hard_left && !edit->hard_right ) continue;
1896                         edit_dimensions(edit, x, y, w, h);
1897                         set_color(GREEN);
1898                         set_opaque();
1899                         int y1 = y;
1900                         if( track->show_titles() )
1901                                 y1 += mwindow->theme->get_image("title_bg_data")->get_h();
1902                         if( track->show_assets() )
1903                                 y1 += resource_h();
1904                         if( y1 == y )
1905                                 y1 += mwindow->theme->title_h;
1906                         if( edit->hard_left ) {
1907                                 ArrayList<int> xpt, ypt;
1908                                 xpt.append(x);              ypt.append(y1);
1909                                 xpt.append(x+HANDLE_W);     ypt.append(y1);
1910                                 xpt.append(x);              ypt.append(y1-HANDLE_H);
1911                                 fill_polygon(&xpt, &ypt);
1912                         }
1913                         if( edit->hard_right ) {
1914                                 ArrayList<int> xpt, ypt;   int x1 = x+w-1;
1915                                 xpt.append(x1);            ypt.append(y1);
1916                                 xpt.append(x1-HANDLE_W);   ypt.append(y1);
1917                                 xpt.append(x1);            ypt.append(y1-HANDLE_H);
1918                                 fill_polygon(&xpt, &ypt);
1919                         }
1920                 }
1921         }
1922 }
1923
1924 void TrackCanvas::draw_inout_points()
1925 {
1926 }
1927
1928
1929 void TrackCanvas::draw_drag_handle()
1930 {
1931         if( mwindow->session->current_operation != DRAG_EDITHANDLE2 &&
1932             mwindow->session->current_operation != DRAG_PLUGINHANDLE2 ) return;
1933         int64_t pixel1 = Units::round(mwindow->session->drag_position *
1934                 mwindow->edl->session->sample_rate /
1935                 mwindow->edl->local_session->zoom_sample -
1936                 mwindow->edl->local_session->view_start[pane->number]);
1937         set_color(!snapped ? GREEN : (snapped=0, YELLOW));
1938         set_inverse();
1939         draw_line(pixel1, 0, pixel1, get_h());
1940         set_opaque();
1941
1942         if( mwindow->session->current_operation != DRAG_EDITHANDLE2 ) return;
1943         if( !mwindow->session->drag_edit ) return;
1944         int group_id = mwindow->session->drag_edit->group_id;
1945         if( !group_id ) return;
1946         int64_t dx, dy, dw, dh;
1947         edit_dimensions(mwindow->session->drag_edit, dx, dy, dw, dh);
1948         int drag_handle = mwindow->session->drag_handle;
1949         int64_t pixel0 = !drag_handle ? dx : dx + dw;
1950         int delta = pixel1 - pixel0;
1951         set_color(LTPURPLE);
1952         set_line_width(3);
1953
1954         for( Track *track=mwindow->edl->tracks->first; track; track=track->next ) {
1955                 Edit *left = 0, *right = 0;
1956                 double start = DBL_MAX, end = DBL_MIN;
1957                 for( Edit *edit=track->edits->first; edit; edit=edit->next ) {
1958                         if( edit->group_id != group_id ) continue;
1959                         double edit_start = edit->track->from_units(edit->startproject);
1960                         if( edit_start < start ) { start = edit_start;  left = edit; }
1961                         double edit_end = edit->track->from_units(edit->startproject+edit->length);
1962                         if( edit_end > end ) { end = edit_end;  right = edit; }
1963                 }
1964                 Edit *edit = !drag_handle ? left : right;
1965                 if( !edit ) continue;
1966                 Indexable *idxbl = edit->asset;
1967                 if( !idxbl ) idxbl = edit->nested_edl;
1968                 int can_drag = idxbl ? 1 : 0;
1969                 if( drag_handle ) {
1970                         int64_t source_len = !idxbl ? -1 :
1971                                 edit->track->data_type == TRACK_AUDIO ?
1972                                         idxbl->get_audio_samples() :
1973                                 edit->track->data_type == TRACK_VIDEO ?
1974                                         idxbl->get_video_frames() : -1;
1975                         if( edit->startsource + edit->length >= source_len )
1976                                 can_drag = 0;
1977                 }
1978                 else if( !edit->startsource )
1979                         can_drag = 0;
1980                 int64_t x, y, w, h;
1981                 edit_dimensions(edit, x, y, w, h);
1982                 if( y+h < 0 || y >= get_h() ) continue;
1983                 int edge_x = !drag_handle ? x : x + w;
1984                 int edge_y = y + h/2, k = 10;
1985                 if( edge_x >= 0 && edge_x < get_w() ) {
1986                         if( !can_drag ) {
1987                                 draw_line(edge_x-k,edge_y-k, edge_x+k,edge_y+k);
1988                                 draw_line(edge_x-k,edge_y+k, edge_x+k,edge_y-k);
1989                         }
1990                         else if( !drag_handle ) {
1991                                 draw_line(edge_x+k,edge_y-k, edge_x,edge_y);
1992                                 draw_line(edge_x+k,edge_y+k, edge_x,edge_y);
1993                         }
1994                         else {
1995                                 draw_line(edge_x,edge_y, edge_x-k,edge_y-k);
1996                                 draw_line(edge_x,edge_y, edge_x-k,edge_y+k);
1997                         }
1998                 }
1999                 edge_x += delta;
2000                 if( edge_x >= 0 && edge_x < get_w() ) {
2001                         draw_line(edge_x, y, edge_x, y+h);
2002                 }
2003         }
2004         set_line_width(1);
2005 }
2006
2007
2008 void TrackCanvas::draw_transitions()
2009 {
2010         int64_t x, y, w, h;
2011
2012         for(Track *track = mwindow->edl->tracks->first; track; track = track->next) {
2013                 if( !track->show_transitions() ) continue;
2014
2015                 for(Edit *edit = track->edits->first; edit; edit = edit->next) {
2016                         if(!edit->transition) continue;
2017                         edit_dimensions(edit, x, y, w, h);
2018                         int strip_x = x, edit_y = y;
2019                         get_transition_coords(edit, x, y, w, h);
2020                         int strip_y = y - mwindow->theme->get_image("plugin_bg_data")->get_h();
2021                         if( track->show_assets() && track->show_titles() )
2022                                 edit_y += mwindow->theme->get_image("title_bg_data")->get_h();
2023                         if( strip_y < edit_y ) strip_y = edit_y;
2024
2025                         int strip_w = Units::round(edit->track->from_units(edit->transition->length) *
2026                                 mwindow->edl->session->sample_rate / mwindow->edl->local_session->zoom_sample);
2027                         if( MWindowGUI::visible(x, x + w, 0, get_w()) &&
2028                             MWindowGUI::visible(y, y + h, 0, get_h()) ) {
2029                                 PluginServer *server = mwindow->scan_plugindb(edit->transition->title,
2030                                                 track->data_type);
2031                                 if( !server ) continue;
2032                                 VFrame *picon = server->get_picon();
2033                                 if( !picon ) continue;
2034                                 int picon_w = picon->get_w(), picon_h = picon->get_h();
2035                                 int track_h = edit->track->vertical_span(mwindow->theme);
2036                                 if( picon_h > track_h ) picon_h = track_h;
2037                                 draw_vframe(picon, x, y, w, h, 0, 0, picon_w, picon_h);
2038                         }
2039                         if(MWindowGUI::visible(strip_x, strip_x + strip_w, 0, get_w()) &&
2040                                 MWindowGUI::visible(strip_y, strip_y + h, 0, get_h())) {
2041                                 int x = strip_x, w = strip_w;
2042                                 if( x < 0 ) {  w -= -x;  x = 0; }
2043                                 if( w + x > get_w() ) w -= (w + x) - get_w();
2044
2045                                 draw_3segmenth( x, strip_y, w, strip_x, strip_w,
2046                                         mwindow->theme->get_image("plugin_bg_data"), 0);
2047                         }
2048                 }
2049         }
2050 }
2051
2052 void TrackCanvas::draw_loop_points()
2053 {
2054 //printf("TrackCanvas::draw_loop_points 1\n");
2055         if(mwindow->edl->local_session->loop_playback)
2056         {
2057 //printf("TrackCanvas::draw_loop_points 2\n");
2058                 int64_t x = Units::round(mwindow->edl->local_session->loop_start *
2059                         mwindow->edl->session->sample_rate /
2060                         mwindow->edl->local_session->zoom_sample -
2061                         mwindow->edl->local_session->view_start[pane->number]);
2062 //printf("TrackCanvas::draw_loop_points 3\n");
2063
2064                 if(MWindowGUI::visible(x, x + 1, 0, get_w()))
2065                 {
2066                         set_color(GREEN);
2067                         draw_line(x, 0, x, get_h());
2068                 }
2069 //printf("TrackCanvas::draw_loop_points 4\n");
2070
2071                 x = Units::round(mwindow->edl->local_session->loop_end *
2072                         mwindow->edl->session->sample_rate /
2073                         mwindow->edl->local_session->zoom_sample -
2074                         mwindow->edl->local_session->view_start[pane->number]);
2075 //printf("TrackCanvas::draw_loop_points 5\n");
2076
2077                 if(MWindowGUI::visible(x, x + 1, 0, get_w()))
2078                 {
2079                         set_color(GREEN);
2080                         draw_line(x, 0, x, get_h());
2081                 }
2082 //printf("TrackCanvas::draw_loop_points 6\n");
2083         }
2084 //printf("TrackCanvas::draw_loop_points 7\n");
2085 }
2086
2087 void TrackCanvas::draw_brender_range()
2088 {
2089         if( !mwindow->preferences->use_brender || !mwindow->brender_active ) return;
2090         if( mwindow->edl->session->brender_start >= mwindow->edl->session->brender_end ) return;
2091         if( mwindow->edl->session->brender_end > 0 )
2092         {
2093                 int64_t x1 = Units::round(mwindow->edl->session->brender_start *
2094                         mwindow->edl->session->sample_rate /
2095                         mwindow->edl->local_session->zoom_sample -
2096                         mwindow->edl->local_session->view_start[pane->number]);
2097                 if(MWindowGUI::visible(x1, x1 + 1, 0, get_w()))
2098                 {
2099                         set_color(RED);
2100                         draw_line(x1, 0, x1, get_h());
2101                 }
2102                 int64_t x2 = Units::round(mwindow->edl->session->brender_end *
2103                         mwindow->edl->session->sample_rate /
2104                         mwindow->edl->local_session->zoom_sample -
2105                         mwindow->edl->local_session->view_start[pane->number]);
2106
2107                 if(MWindowGUI::visible(x2, x2 + 1, 0, get_w()))
2108                 {
2109                         set_color(RED);
2110                         draw_line(x2, 0, x2, get_h());
2111                 }
2112         }
2113 }
2114
2115 // The operations which correspond to each automation type
2116 int TrackCanvas::auto_operations[AUTOMATION_TOTAL] =
2117 {
2118         DRAG_MUTE,
2119         DRAG_CAMERA_X,
2120         DRAG_CAMERA_Y,
2121         DRAG_CAMERA_Z,
2122         DRAG_PROJECTOR_X,
2123         DRAG_PROJECTOR_Y,
2124         DRAG_PROJECTOR_Z,
2125         DRAG_FADE,
2126         DRAG_PAN,
2127         DRAG_MODE,
2128         DRAG_MASK,
2129         DRAG_SPEED
2130 };
2131
2132 // The buttonpress operations, so nothing changes unless the mouse moves
2133 // a certain amount.  This allows the keyframe to be used to position the
2134 // insertion point without moving itself.
2135 static int pre_auto_operations[AUTOMATION_TOTAL] =
2136 {
2137         DRAG_MUTE,
2138         DRAG_CAMERA_X,
2139         DRAG_CAMERA_Y,
2140         DRAG_CAMERA_Z,
2141         DRAG_PROJECTOR_X,
2142         DRAG_PROJECTOR_Y,
2143         DRAG_PROJECTOR_Z,
2144         DRAG_FADE,
2145         DRAG_PAN_PRE,
2146         DRAG_MODE_PRE,
2147         DRAG_MASK_PRE,
2148         DRAG_SPEED
2149 };
2150
2151
2152 int TrackCanvas::do_keyframes(int cursor_x,
2153         int cursor_y,
2154         int draw,
2155         int buttonpress,
2156         int &new_cursor,
2157         int &update_cursor,
2158         int &rerender)
2159 {
2160 // Note: button 3 (right mouse button) is not eaten to allow
2161 // track context menu to appear
2162         int result = 0;
2163         EDLSession *session = mwindow->edl->session;
2164
2165
2166
2167         static BC_Pixmap *auto_pixmaps[AUTOMATION_TOTAL] =
2168         {
2169                 0, 0, 0, 0, 0, 0, 0, 0,
2170                 pankeyframe_pixmap,
2171                 modekeyframe_pixmap,
2172                 maskkeyframe_pixmap,
2173         };
2174
2175
2176
2177         for(Track *track = mwindow->edl->tracks->first;
2178                 track && !result;
2179                 track = track->next) {
2180                 Auto *auto_keyframe = 0;
2181                 Automation *automation = track->automation;
2182
2183
2184 // Handle keyframes in reverse drawing order if a button press
2185                 int start = 0;
2186                 int end = AUTOMATION_TOTAL;
2187                 int step = 1;
2188                 if(buttonpress)
2189                 {
2190                         start = AUTOMATION_TOTAL - 1;
2191                         end = -1;
2192                         step = -1;
2193                 }
2194                 for(int i = start; i != end && !result; i += step)
2195                 {
2196 // Event not trapped and automation visible
2197                         Autos *autos = automation->autos[i];
2198                         if(!result && session->auto_conf->autos[i] && autos) {
2199                                 switch(i) {
2200                                 case AUTOMATION_MODE:
2201                                 case AUTOMATION_PAN:
2202                                 case AUTOMATION_MASK:
2203                                         result = do_autos(track, automation->autos[i],
2204                                                 cursor_x, cursor_y, draw,
2205                                                 buttonpress, auto_pixmaps[i],
2206                                                 auto_keyframe, rerender);
2207                                                 break;
2208
2209                                 default: {
2210                                         switch(autos->get_type()) {
2211                                         case Autos::AUTOMATION_TYPE_FLOAT: {
2212                                                 Automation automation(0, track);
2213                                                 int grouptype = automation.autogrouptype(i, track);
2214                                                 if( buttonpress && i == AUTOMATION_SPEED ) {
2215                                                         mwindow->speed_before();
2216                                                 }
2217
2218                                                 if(draw) // Do dropshadow
2219                                                         result = do_float_autos(track, autos,
2220                                                                 cursor_x, cursor_y, draw,
2221                                                                 buttonpress, 1, 1, MDGREY,
2222                                                                 auto_keyframe, grouptype);
2223                                                 result = do_float_autos(track, autos,
2224                                                         cursor_x, cursor_y, draw, buttonpress,
2225                                                         0, 0, GWindowGUI::auto_colors[i],
2226                                                         auto_keyframe, grouptype);
2227
2228                                                 if( !result && buttonpress && i == AUTOMATION_SPEED )
2229                                                         mwindow->speed_after(-1);
2230                                                 int current_grouptype = mwindow->edl->local_session->zoombar_showautotype;
2231                                                 if( result && buttonpress && grouptype != current_grouptype ) {
2232                                                         mwindow->edl->local_session->zoombar_showautotype = grouptype;
2233                                                         mwindow->gui->zoombar->update_autozoom();
2234                                                 }
2235                                                 break; }
2236
2237                                         case Autos::AUTOMATION_TYPE_INT: {
2238                                                 if(draw) // Do dropshadow
2239                                                         result = do_int_autos(track, autos,
2240                                                                 cursor_x, cursor_y, draw,
2241                                                                 buttonpress, 1, 1, MDGREY,
2242                                                                 auto_keyframe);
2243                                                 result = do_int_autos(track, autos,
2244                                                         cursor_x, cursor_y, draw, buttonpress,
2245                                                         0, 0, GWindowGUI::auto_colors[i],
2246                                                         auto_keyframe);
2247                                                 break; }
2248                                         }
2249                                         break; }
2250                                 }
2251
2252                                 if(result)
2253                                 {
2254                                         if(mwindow->session->current_operation == auto_operations[i])
2255                                                 rerender = 1;
2256
2257 // printf("TrackCanvas::do_keyframes %d %d %d\n",
2258 // __LINE__,
2259 // mwindow->session->current_operation,
2260 // auto_operations[i]);
2261                                         if(buttonpress)
2262                                         {
2263                                                 if (buttonpress == 2 && auto_keyframe )
2264                                                 {
2265                                                         double position = track->from_units(auto_keyframe->position);
2266                                                         mwindow->edl->local_session->set_selectionstart(position);
2267                                                         mwindow->edl->local_session->set_selectionend(position);
2268                                                 }
2269                                                 if (buttonpress != 3)
2270                                                 {
2271                                                         if(i == AUTOMATION_FADE || i == AUTOMATION_SPEED)
2272                                                                 fill_ganged_autos(get_double_click(), 0, track,
2273                                                                         (FloatAuto*)mwindow->session->drag_auto);
2274                                                         mwindow->session->current_operation = pre_auto_operations[i];
2275                                                         update_drag_caption();
2276                                                         rerender = 1;
2277                                                 }
2278                                                 else if( auto_keyframe )
2279                                                 {
2280                                                         gui->keyframe_menu->update(automation,
2281                                                                 autos,
2282                                                                 auto_keyframe);
2283                                                         gui->keyframe_menu->activate_menu();
2284                                                         rerender = 1; // the position changes
2285                                                 }
2286                                                 else if( autos )
2287                                                 {
2288                                                         gui->keyframe_hide->update(autos);
2289                                                         gui->keyframe_hide->activate_menu();
2290                                                         rerender = 1; // the position changes
2291                                                 }
2292                                                 if(buttonpress == 1 && ctrl_down() &&
2293                                                    AUTOMATION_TYPE_FLOAT == autos->get_type())
2294                                                         rerender = 1; // special case: curve mode changed
2295                                         }
2296                                 }
2297                         }
2298                 }
2299
2300                 if(!result && session->auto_conf->plugins) {
2301                         Plugin *plugin;
2302                         KeyFrame *keyframe;
2303                         result = do_plugin_autos(track, cursor_x, cursor_y,
2304                                 draw, buttonpress, plugin, keyframe);
2305                         if(result && mwindow->session->current_operation == DRAG_PLUGINKEY) {
2306                                 rerender = 1;
2307                         }
2308                         if(result && (buttonpress == 1)) {
2309                                 mwindow->session->current_operation = DRAG_PLUGINKEY_PRE;
2310                                 update_drag_caption();
2311                                 rerender = 1;
2312                         }
2313                         else if (result && (buttonpress == 3)) {
2314                                 gui->keyframe_menu->update(plugin, keyframe);
2315                                 gui->keyframe_menu->activate_menu();
2316                                 rerender = 1; // the position changes
2317                         }
2318                 }
2319         }
2320
2321 // Final pass to trap event
2322         for(int i = 0; i < AUTOMATION_TOTAL; i++) {
2323                 if(mwindow->session->current_operation == pre_auto_operations[i] ||
2324                         mwindow->session->current_operation == auto_operations[i]) {
2325                         result = 1;
2326                         break;
2327                 }
2328         }
2329
2330         if(mwindow->session->current_operation == DRAG_PLUGINKEY ||
2331                 mwindow->session->current_operation == DRAG_PLUGINKEY_PRE) {
2332                 result = 1;
2333         }
2334
2335         update_cursor = 1;
2336         if(result) {
2337                 new_cursor = UPRIGHT_ARROW_CURSOR;
2338         }
2339
2340
2341         return result;
2342 }
2343
2344 void TrackCanvas::draw_keyframe_reticle()
2345 {
2346         int keyframe_hairline = mwindow->preferences->keyframe_reticle;
2347         if( keyframe_hairline == HAIRLINE_NEVER ) return;
2348
2349         int current_op = mwindow->session->current_operation, dragging = 0;
2350         for( int i=0; !dragging && i<AUTOMATION_TOTAL; ++i )
2351                 if( current_op == auto_operations[i] ) dragging = 1;
2352         if( dragging && !mwindow->session->drag_auto ) dragging = 0;
2353
2354         int autoidx = dragging && keyframe_hairline != HAIRLINE_ALWAYS ?
2355                 mwindow->session->drag_auto->autos->autoidx : -1;
2356
2357         if( get_buttonpress() == LEFT_BUTTON && dragging &&
2358             keyframe_hairline == HAIRLINE_DRAGGING ) {
2359                 draw_hairline(mwindow->session->drag_auto, RED, 1);
2360                 return;
2361         }
2362
2363         if( keyframe_hairline == HAIRLINE_ALWAYS || ( get_buttonpress() == MIDDLE_BUTTON &&
2364             keyframe_hairline == HAIRLINE_DRAGGING && dragging ) ) {
2365                 int show = dragging || keyframe_hairline == HAIRLINE_ALWAYS ? 1 : 0;
2366                 for( Track *track = mwindow->edl->tracks->first; track; track=track->next ) {
2367                         Automation *automation = track->automation;
2368                         for( int i=0; i<AUTOMATION_TOTAL; ++i ) {
2369                                 if( !mwindow->edl->session->auto_conf->autos[i] ) continue;
2370                                 // automation visible
2371                                 Autos *autos = automation->autos[i];
2372                                 if( !autos ) continue;
2373                                 if( autoidx >= 0 && autos->autoidx != autoidx ) continue;
2374                                 for( Auto *auto_keyframe=autos->first; auto_keyframe;
2375                                      auto_keyframe = auto_keyframe->next ) {
2376                                         draw_hairline(auto_keyframe, BLUE, show);
2377                                 }
2378                         }
2379                 }
2380
2381                 if( dragging )
2382                         draw_hairline(mwindow->session->drag_auto, RED, 1);
2383         }
2384 }
2385
2386 void TrackCanvas::draw_auto(Auto *current,
2387         int x,
2388         int y,
2389         int center_pixel,
2390         int zoom_track)
2391 {
2392         int x1, y1, x2, y2;
2393
2394         x1 = x - HANDLE_W / 2;
2395         x2 = x + HANDLE_W / 2;
2396         y1 = center_pixel + y - HANDLE_W / 2;
2397         y2 = center_pixel + y + HANDLE_W / 2;
2398
2399         if(y1 < center_pixel + -zoom_track / 2) y1 = center_pixel + -zoom_track / 2;
2400         if(y2 > center_pixel + zoom_track / 2) y2 = center_pixel + zoom_track / 2;
2401
2402         draw_box(x1, y1, x2 - x1, y2 - y1);
2403 }
2404
2405
2406 // This draws lines for bezier in & out controls
2407 void TrackCanvas::draw_cropped_line(int x1,
2408         int y1,
2409         int x2,
2410         int y2,
2411         int min_y,
2412         int max_y)
2413 {
2414
2415
2416 // Don't care about x since it is clipped by the window.
2417 // Put y coords in ascending order
2418         if(y2 < y1) {
2419                 y2 ^= y1; y1 ^= y2; y2 ^= y1;
2420                 x2 ^= x1; x1 ^= x2; x2 ^= x1;
2421         }
2422
2423
2424
2425         double slope = (double)(x2 - x1) / (y2 - y1);
2426 //printf("TrackCanvas::draw_cropped_line %d %d %d %d %d\n", __LINE__, x1, y1, x2, y2);
2427         if(y1 < min_y) {
2428                 x1 = (int)(x1 + (min_y - y1) * slope);
2429                 y1 = min_y;
2430         }
2431         else if(y1 >= max_y) {
2432                 x1 = (int)(x1 + (max_y - 1 - y1) * slope);
2433                 y1 = max_y - 1;
2434         }
2435
2436         if(y2 >= max_y) {
2437                 x2 = (int)(x2 + (max_y - 1 - y2) * slope);
2438                 y2 = max_y - 1;
2439         }
2440         else if(y2 < min_y) {
2441                 x2 = (int)(x2 + (min_y - y2) * slope);
2442                 y1 = min_y;
2443         }
2444
2445
2446 //printf("TrackCanvas::draw_cropped_line %d %d %d %d %d\n", __LINE__, x1, y1, x2, y2);
2447         if( y1 >= min_y && y1 < max_y &&
2448             y2 >= min_y && y2 < max_y )
2449                 draw_line(x1, y1, x2, y2);
2450 }
2451
2452
2453 void TrackCanvas::draw_floatauto(FloatAuto *current,
2454         int x,
2455         int y,
2456         int in_x,
2457         int in_y,
2458         int out_x,
2459         int out_y,
2460         int center_pixel,
2461         int zoom_track,
2462         int color)
2463 {
2464         int x1 = x - HANDLE_W / 2; // Center
2465         int x2 = x + HANDLE_W / 2;
2466         int y1 = center_pixel + y - HANDLE_H / 2;
2467         int y2 = center_pixel + y + HANDLE_H / 2;
2468         int ymin = center_pixel - zoom_track / 2;
2469         int ymax = center_pixel + zoom_track / 2;
2470         CLAMP(y1, ymin, ymax);
2471         CLAMP(y2, ymin, ymax);
2472
2473         if(y2 - 1 > y1)
2474         {
2475                 set_color(BLACK);
2476                 draw_box(x1 + 1, y1 + 1, x2 - x1, y2 - y1);
2477                 set_color(color);
2478                 draw_box(x1, y1, x2 - x1, y2 - y1);
2479         }
2480
2481 // show bezier control points (only) if this
2482 // floatauto doesn't adjust it's tangents automatically
2483         if(current->curve_mode != FloatAuto::FREE &&
2484            current->curve_mode != FloatAuto::TFREE)
2485                 return;
2486
2487         if(in_x != x)
2488                 draw_floatauto_ctrlpoint(x, y, in_x, in_y, center_pixel, zoom_track, color);
2489         if(out_x != x)
2490                 draw_floatauto_ctrlpoint(x, y, out_x, out_y, center_pixel, zoom_track, color);
2491 }
2492
2493 inline int quantize(float f) { return (int)floor(f + 0.5); }
2494
2495 inline void TrackCanvas::draw_floatauto_ctrlpoint(
2496         int x, int y, int cp_x, int cp_y, int center_pixel,
2497         int zoom_track, int color)
2498 // draw the tangent and a handle for given bézier ctrl point
2499 {
2500         bool handle_visible = (abs(cp_y) <= zoom_track / 2);
2501
2502         float slope = (float)(cp_y - y)/(cp_x - x);
2503         CLAMP(cp_y, -zoom_track / 2, zoom_track / 2);
2504         if(slope != 0)
2505                 cp_x = x + quantize((cp_y - y) / slope);
2506
2507         y    += center_pixel;
2508         cp_y += center_pixel;
2509
2510         // drawing the tangent as a dashed line...
2511         int const dash = HANDLE_W;
2512         int const gap  = HANDLE_W / 2;
2513         float sx = 3 * (cp_x - x) / 4.;
2514         float ex = 0;
2515
2516         // q is the x displacement for a unit line of slope
2517         float q = (sx > 0 ? 1 : -1) / sqrt(1 + slope * slope);
2518
2519         float dist = 1/q * sx;
2520         if( dist > dash )
2521                 ex = sx - q * dash;
2522
2523         set_color(color);
2524         do {
2525                 float sy = slope * sx, ey = slope * ex;
2526                 draw_line(quantize(sx + x), quantize(sy + y), quantize(ex + x), quantize(ey + y));
2527                 sx = ex - q * gap;
2528                 ex = sx - q * dash;
2529         } while(q*ex > 0);
2530
2531         if(handle_visible)
2532         {
2533                 int r = HANDLE_W / 2;
2534                 int cp_x1 = cp_x - r;
2535                 int cp_y1 = cp_y - r;
2536                 set_color(BLACK);
2537                 draw_disc(cp_x1, cp_y1, 2 * r, 2 * r);
2538                 set_color(color);
2539                 draw_circle(cp_x1, cp_y1, 2 * r, 2 * r);
2540         }
2541 }
2542
2543
2544 int TrackCanvas::test_auto(Auto *current,
2545         int x, int y, int center_pixel, int zoom_track,
2546         int cursor_x, int cursor_y, int buttonpress)
2547 {
2548         int x1, y1, x2, y2;
2549         int result = 0;
2550
2551         x1 = x - HANDLE_W / 2;
2552         x2 = x + HANDLE_W / 2;
2553         y1 = center_pixel + y - HANDLE_H / 2;
2554         y2 = center_pixel + y + HANDLE_H / 2;
2555         int ymin = center_pixel - zoom_track / 2;
2556         int ymax = center_pixel + zoom_track / 2;
2557         CLAMP(y1, ymin, ymax);
2558         CLAMP(y2, ymin, ymax);
2559
2560         if(cursor_x >= x1 && cursor_x < x2 && cursor_y >= y1 && cursor_y < y2)
2561         {
2562                 if(buttonpress && buttonpress != 3)
2563                 {
2564                         mwindow->session->drag_auto = current;
2565                         mwindow->session->drag_start_percentage = (float)((IntAuto*)current)->value;
2566                         // Toggle Autos don't respond to vertical zoom, they always show up
2567                         // with "on" == 100% == line on top
2568                         mwindow->session->drag_start_position = current->position;
2569                         mwindow->session->drag_origin_x = cursor_x;
2570                         mwindow->session->drag_origin_y = cursor_y;
2571                 }
2572                 result = 1;
2573         }
2574
2575         if(buttonpress && buttonpress != 3 && result)
2576         {
2577 //printf("TrackCanvas::test_auto %d\n", __LINE__);
2578                 mwindow->undo->update_undo_before();
2579         }
2580
2581         return result;
2582 }
2583
2584 // some Helpers for test_floatauto(..)
2585 // and for dragging the tangents/ctrl points
2586 inline float test_curve_line( int x0, int y0, int ctrl_x, int ctrl_y,
2587         float cursor_x, float cursor_y)
2588 {
2589 // Control point switched off?
2590         if( x0 == ctrl_x ) return 0.0;
2591         double x1 = ctrl_x-x0, y1 = ctrl_y-y0;
2592         double x = cursor_x-x0, y = cursor_y-y0;
2593 // wrong side of ctrl handle
2594         if( x*x1 < 0 ) return 0.0;
2595 // outside handle radius
2596         if( (x*x + y*y) > (x1*x1 + y1*y1) ) return 0;
2597         double xx1 = x1*x1, yy1 = y1*y1;
2598         double xx = x*x, yy = y*y;
2599 // distance squared from cursor to cursor projected to line from ctrl to handle
2600 //   along a line perpendicular to line from ctrl to handle (closest approach)
2601 // (x**2*y1**2 - 2*x*x1*y*y1 + x1**2*y**2)/(x1**2 + y1**2)
2602         double dist2 = (xx*yy1 - 2*x*x1*y*y1 + xx1*yy)/(xx1 + yy1);
2603         return dist2 < (HANDLE_W*HANDLE_W)/4. ? x/x1 : 0.;
2604 }
2605
2606
2607 inline
2608 float levered_position(float position, float ref_pos)
2609 {
2610         if( 1e-6 > fabs(ref_pos) || isnan(ref_pos))
2611                 return 0.0;
2612         return ref_pos / position;
2613 }
2614
2615
2616 float TrackCanvas::value_to_percentage(float auto_value, int autogrouptype)
2617 // transforms automation value into current display coords,
2618 // dependant on current automation display range for the given kind of automation
2619 {
2620         if(!mwindow || !mwindow->edl) return 0;
2621         float automation_min = mwindow->edl->local_session->automation_mins[autogrouptype];
2622         float automation_max = mwindow->edl->local_session->automation_maxs[autogrouptype];
2623         float automation_range = automation_max - automation_min;
2624         if( 0 >= automation_range || isnan(auto_value) || isinf(auto_value) )
2625                 return 0;
2626         return (auto_value - automation_min) / automation_range;
2627 }
2628
2629
2630
2631 int TrackCanvas::test_floatauto(FloatAuto *current, int x, int y, int in_x,
2632         int in_y, int out_x, int out_y, int center_pixel, int zoom_track,
2633         int cursor_x, int cursor_y, int buttonpress, int autogrouptype)
2634 {
2635         int result = 0;
2636
2637         int x1 = x - HANDLE_W / 2;
2638         int x2 = x + HANDLE_W / 2;
2639         int y1 = center_pixel + y - HANDLE_W / 2;
2640         int y2 = center_pixel + y + HANDLE_W / 2;
2641         int ymin = center_pixel - zoom_track / 2;
2642         int ymax = center_pixel + zoom_track / 2;
2643         CLAMP(y1, ymin, ymax);
2644         CLAMP(y2, ymin, ymax);
2645
2646         int in_x1 = in_x - HANDLE_W / 2;
2647         int in_x2 = in_x + HANDLE_W / 2;
2648         int in_y1 = center_pixel + in_y - HANDLE_W / 2;
2649         int in_y2 = center_pixel + in_y + HANDLE_W / 2;
2650         CLAMP(in_y1, ymin, ymax);
2651         CLAMP(in_y2, ymin, ymax);
2652
2653         int out_x1 = out_x - HANDLE_W / 2;
2654         int out_x2 = out_x + HANDLE_W / 2;
2655         int out_y1 = center_pixel + out_y - HANDLE_W / 2;
2656         int out_y2 = center_pixel + out_y + HANDLE_W / 2;
2657         CLAMP(out_y1, ymin, ymax);
2658         CLAMP(out_y2, ymin, ymax);
2659
2660
2661 //printf("TrackCanvas::test_floatauto %d %d %d %d %d %d\n", cursor_x, cursor_y, x1, x2, y1, y2);
2662 // buttonpress could be the start of a drag operation
2663 #define INIT_DRAG(POS,VAL) \
2664                 mwindow->session->drag_auto = current;      \
2665                 mwindow->session->drag_origin_x = cursor_x;  \
2666                 mwindow->session->drag_origin_y = cursor_y;   \
2667                 mwindow->session->drag_start_position = (POS); \
2668                 mwindow->session->drag_start_percentage = (VAL);
2669
2670 #define WITHIN(X1,X2,Y1,Y2) (cursor_x >=(X1) && cursor_x <(X2) && cursor_y >=(Y1) && cursor_y <(Y2) )
2671
2672
2673 // without modifier we are manipulating the automation node
2674 // with ALT it's about dragging only the value of the node
2675 // with SHIFT the value snaps to the value of neighbouring nodes
2676 // CTRL indicates we are rather manipulating the tangent(s) of the node
2677
2678         if(!ctrl_down())
2679         {
2680                 if( WITHIN(x1,x2,y1,y2))
2681                 {       // cursor hits node
2682                         result = 1;
2683
2684                         if(buttonpress && (buttonpress != 3))
2685                         {
2686                                 INIT_DRAG(current->position, value_to_percentage(current->get_value(), autogrouptype))
2687                                 mwindow->session->drag_handle = 0;
2688                 }       }
2689         }
2690         else // ctrl_down()
2691         {
2692                 if( WITHIN(x1,x2,y1,y2))
2693                 {
2694                         result = 1;
2695                         if(buttonpress && (buttonpress != 3))
2696                         {
2697                                 // could be ctrl-click or ctrl-drag
2698                                 // click would cycle through tangent modes
2699                                 ((FloatAuto*)current)->toggle_curve_mode();
2700
2701                                 // drag will start dragging the tangent, if applicable
2702                                 INIT_DRAG(current->position, value_to_percentage(current->get_value(), autogrouptype))
2703                                 mwindow->session->drag_handle = 0;
2704                         }
2705                 }
2706
2707                 float lever = 0.0; // we use the tangent as a draggable lever. 1.0 is at the ctrl point
2708
2709 // Test in control
2710                 if( in_x != x && current->position > 0 &&
2711                         (FloatAuto::FREE == current->curve_mode ||
2712                          FloatAuto::TFREE == current->curve_mode))
2713 // act on in control handle only if
2714 // tangent is significant and is editable (not automatically choosen)
2715                 {
2716                         lever = test_curve_line(x, y, in_x, in_y, cursor_x, cursor_y-center_pixel);
2717  // either cursor in ctrl-point handle or cursor on tangent line
2718                         if( WITHIN(in_x1,in_x2,in_y1,in_y2) || lever > 0.0 ) {
2719                                 result = 1;
2720                                 if(buttonpress && (buttonpress != 3)) {
2721                                         if(lever == 0.0) lever=1.0; // we entered by dragging the handle...
2722 //                                      lever = 1.0;
2723                                         mwindow->session->drag_handle = 1;
2724                                         float new_invalue = current->get_value() + lever * current->get_control_in_value();
2725                                         INIT_DRAG(current->position + (int64_t)(lever * current->get_control_in_position()),
2726                                                   value_to_percentage(new_invalue, autogrouptype))
2727                                 }
2728                         }
2729                 }
2730
2731 // Test out control
2732                 if(out_x != x &&
2733                         (FloatAuto::FREE == current->curve_mode ||
2734                          FloatAuto::TFREE == current->curve_mode))
2735 // act on out control only if tangent is significant and is editable
2736                 {
2737                         lever = test_curve_line(x, y, out_x, out_y, cursor_x, cursor_y-center_pixel);
2738                         if(WITHIN(out_x1,out_x2,out_y1,out_y2) || lever > 0.0 ) {
2739                                 result = 1;
2740                                 if(buttonpress && (buttonpress != 3)) {
2741                                         if(lever == 0.0) lever=1.0;
2742 //                                      lever = 1.0;
2743                                         mwindow->session->drag_handle = 2;
2744                                         float new_outvalue = current->get_value() + lever * current->get_control_out_value();
2745                                         INIT_DRAG(current->position + (int64_t)(lever * current->get_control_out_position()),
2746                                                   value_to_percentage(new_outvalue, autogrouptype))
2747                                 }
2748                         }
2749                 }
2750         } // end ctrl_down()
2751
2752 #undef WITHIN
2753 #undef INIT_DRAG
2754
2755 // if(buttonpress)
2756 // printf("TrackCanvas::test_floatauto 2 drag_handle=%d ctrl_down=%d cursor_x=%d cursor_y=%d x1=%d x2=%d y1=%d y2=%d\n",
2757 // mwindow->session->drag_handle,
2758 // ctrl_down(),
2759 // cursor_x,
2760 // cursor_y,
2761 // x1, x2, y1, y2);
2762         if(buttonpress && (buttonpress != 3) && result)
2763         {
2764                 mwindow->undo->update_undo_before();
2765         }
2766
2767         return result;
2768 }
2769
2770
2771 // Get the float value & y for position x on the canvas
2772 #define X_TO_FLOATLINE(x) \
2773         int64_t position1 = (int64_t)(unit_start + x * zoom_units); \
2774         int64_t position2 = (int64_t)(unit_start + x * zoom_units) + 1; \
2775 /* Call by reference fails for some reason here */ \
2776         float value1 = autos->get_value(position1, PLAY_FORWARD, previous1, next1); \
2777         float value2 = autos->get_value(position2, PLAY_FORWARD, previous1, next1); \
2778         double position = unit_start + x * zoom_units; \
2779         double value = 0; \
2780         if(position2 > position1) \
2781         { \
2782                 value = value1 + \
2783                         (value2 - value1) * \
2784                         (position - position1) / \
2785                         (position2 - position1); \
2786         } \
2787         else \
2788         { \
2789                 value = value1; \
2790         } \
2791         AUTOMATIONCLAMPS(value, autogrouptype); \
2792         int y = center_pixel + \
2793                 (int)(((value - automation_min) / automation_range - 0.5) * -yscale);
2794
2795
2796 void TrackCanvas::draw_floatline(int center_pixel,
2797         FloatAuto *previous, FloatAuto *next, FloatAutos *autos,
2798         double unit_start, double zoom_units, double yscale,
2799         int x1, int y1, int x2, int y2,
2800         int color, int autogrouptype)
2801 {
2802 // Solve bezier equation for either every pixel or a certain large number of
2803 // points.
2804
2805 // Not using slope intercept
2806         x1 = MAX(0, x1);
2807         int prev_y = y1 + center_pixel;
2808
2809
2810 // Call by reference fails for some reason here
2811         FloatAuto *previous1 = previous, *next1 = next;
2812         float automation_min = mwindow->edl->local_session->automation_mins[autogrouptype];
2813         float automation_max = mwindow->edl->local_session->automation_maxs[autogrouptype];
2814         float automation_range = automation_max - automation_min;
2815
2816         for(int x = x1; x < x2; x++)
2817         {
2818 // Interpolate value between frames
2819                 X_TO_FLOATLINE(x)
2820
2821                 if(/* x > x1 && */
2822                         y >= center_pixel - yscale / 2 &&
2823                         y < center_pixel + yscale / 2 - 1)
2824                 {
2825 // printf("TrackCanvas::draw_floatline y=%d min=%d max=%d\n",
2826 // y,
2827 // (int)(center_pixel - yscale / 2),
2828 // (int)(center_pixel + yscale / 2 - 1));
2829
2830 //printf("draw_line(%d,%d,  %d,%d)\n", x - 1, prev_y  , x, y);
2831                         draw_line(x - 1, prev_y  , x, y   );
2832                 }
2833                 prev_y = y;
2834         }
2835 }
2836
2837
2838
2839
2840
2841 int TrackCanvas::test_floatline(int center_pixel,
2842                 FloatAutos *autos,
2843                 double unit_start,
2844                 double zoom_units,
2845                 double yscale,
2846                 int x1,
2847                 int x2,
2848                 int cursor_x,
2849                 int cursor_y,
2850                 int buttonpress,
2851                 int autogrouptype)
2852 {
2853         int result = 0;
2854
2855
2856         float automation_min = mwindow->edl->local_session->automation_mins[autogrouptype];
2857         float automation_max = mwindow->edl->local_session->automation_maxs[autogrouptype];
2858         float automation_range = automation_max - automation_min;
2859         FloatAuto *previous1 = 0, *next1 = 0;
2860         X_TO_FLOATLINE(cursor_x);
2861
2862         if(cursor_x >= x1 &&
2863                 cursor_x < x2 &&
2864                 cursor_y >= y - HANDLE_W / 2 &&
2865                 cursor_y < y + HANDLE_W / 2 &&
2866                 !ctrl_down())
2867         {
2868                 result = 1;
2869
2870 // Menu
2871                 if(buttonpress == 3)
2872                 {
2873                 }
2874                 else
2875 // Create keyframe
2876                 if(buttonpress)
2877                 {
2878                         Auto *current;
2879                         mwindow->undo->update_undo_before();
2880                         double position = autos->track->from_units(position1);
2881                         position = mwindow->edl->align_to_frame(position, 0);
2882                         int64_t new_position = autos->track->to_units(position,0);
2883                         current = mwindow->session->drag_auto = autos->insert_auto(new_position);
2884                         ((FloatAuto*)current)->set_value(value);
2885                         mwindow->session->drag_start_percentage = value_to_percentage(value, autogrouptype);
2886                         mwindow->session->drag_start_position = current->position;
2887                         mwindow->session->drag_origin_x = cursor_x;
2888                         mwindow->session->drag_origin_y = cursor_y;
2889                         mwindow->session->drag_handle = 0;
2890                 }
2891         }
2892
2893
2894         return result;
2895 }
2896
2897
2898 void TrackCanvas::fill_ganged_autos(int all, float change, Track *skip, FloatAuto *fauto)
2899 {
2900         if( !skip->gang ) return;
2901 // Handles the special case of modifying a fadeauto
2902 // when there are ganged faders on several tracks
2903         double position = skip->from_units(fauto->position);
2904         int autoidx = fauto->autos->autoidx;
2905
2906         for(Track *current = mwindow->edl->tracks->first; current; current = NEXT) {
2907                 if( (all || current->data_type == skip->data_type) &&
2908                     current->gang && current->record && current != skip ) {
2909                         FloatAutos *fade_autos = (FloatAutos*)current->automation->autos[autoidx];
2910                         float auto_min = mwindow->edl->local_session->automation_mins[fade_autos->autogrouptype];
2911                         float auto_max = mwindow->edl->local_session->automation_maxs[fade_autos->autogrouptype];
2912                         int64_t current_position = current->to_units(position, 1);
2913                         FloatAuto *keyframe = (FloatAuto*)fade_autos->get_auto_at_position(position);
2914                         if( keyframe ) {
2915 // keyframe exists, just change it
2916                                 float value = keyframe->get_value();
2917                                 float new_value = value + change;
2918                                 CLAMP(new_value, auto_min, auto_max);
2919                                 keyframe->adjust_to_new_coordinates(current_position, new_value);
2920                         }
2921                         else {
2922 // create keyframe on neighbouring track at the point in time given by fauto
2923                                 FloatAuto *previous = 0, *next = 0;
2924                                 float value = fade_autos->get_value(current_position, PLAY_FORWARD, previous, next);
2925                                 float new_value = value + change;
2926                                 CLAMP(new_value, auto_min, auto_max);
2927                                 keyframe = (FloatAuto*)fade_autos->insert_auto(current_position);
2928                                 keyframe->set_value(new_value);
2929                         }
2930                         mwindow->session->drag_auto_gang->append((Auto *)keyframe);
2931                 }
2932         }
2933 }
2934
2935 void TrackCanvas::update_ganged_autos(float change, Track *skip, FloatAuto *fauto)
2936 {
2937         double position = skip->from_units(fauto->position);
2938 // Move the gangs
2939         for (int i = 0; i < mwindow->session->drag_auto_gang->total; i++) {
2940                 FloatAuto *keyframe = (FloatAuto *)mwindow->session->drag_auto_gang->values[i];
2941                 int64_t keyframe_position = keyframe->autos->track->to_units(position, 1);
2942                 float new_value = keyframe->get_value() + change;
2943                 CLAMP(new_value,
2944                       mwindow->edl->local_session->automation_mins[keyframe->autos->autogrouptype],
2945                       mwindow->edl->local_session->automation_maxs[keyframe->autos->autogrouptype]);
2946                 keyframe->adjust_to_new_coordinates(keyframe_position, new_value);
2947         }
2948 }
2949
2950 void TrackCanvas::clear_ganged_autos()
2951 {
2952 // remove the gangs
2953         for (int i = 0; i < mwindow->session->drag_auto_gang->total; i++) {
2954                 FloatAuto *keyframe = (FloatAuto *)mwindow->session->drag_auto_gang->values[i];
2955                 keyframe->autos->remove_nonsequential(keyframe);
2956         }
2957         mwindow->session->drag_auto_gang->remove_all();
2958 }
2959
2960
2961 void TrackCanvas::draw_toggleline(int center_pixel,
2962         int x1,
2963         int y1,
2964         int x2,
2965         int y2)
2966 {
2967         draw_line(x1, center_pixel + y1, x2, center_pixel + y1);
2968
2969         if(y2 != y1)
2970         {
2971                 draw_line(x2, center_pixel + y1, x2, center_pixel + y2);
2972         }
2973 }
2974
2975 int TrackCanvas::test_toggleline(Autos *autos,
2976         int center_pixel,
2977         int x1,
2978         int y1,
2979         int x2,
2980         int y2,
2981         int cursor_x,
2982         int cursor_y,
2983         int buttonpress)
2984 {
2985         int result = 0;
2986         if(cursor_x >= x1 && cursor_x < x2)
2987         {
2988                 int miny = center_pixel + y1 - HANDLE_W / 2;
2989                 int maxy = center_pixel + y1 + HANDLE_W / 2;
2990                 if(cursor_y >= miny && cursor_y < maxy)
2991                 {
2992                         result = 1;
2993
2994 // Menu
2995                         if(buttonpress == 3)
2996                         {
2997                         }
2998                         else
2999 // Insert keyframe
3000                         if(buttonpress)
3001                         {
3002                                 Auto *current;
3003                                 double position = (double)(cursor_x +
3004                                                 mwindow->edl->local_session->view_start[pane->number]) *
3005                                         mwindow->edl->local_session->zoom_sample /
3006                                         mwindow->edl->session->sample_rate;
3007                                 int64_t unit_position = autos->track->to_units(position, 0);
3008                                 int new_value = (int)((IntAutos*)autos)->get_automation_constant(unit_position, unit_position);
3009
3010                                 mwindow->undo->update_undo_before();
3011
3012                                 current = mwindow->session->drag_auto = autos->insert_auto(unit_position);
3013                                 ((IntAuto*)current)->value = new_value;
3014                                 // Toggle Autos don't respond to vertical zoom, they always show up
3015                                 // with "on" == 100% == line on top
3016                                 mwindow->session->drag_start_percentage = (float)new_value;
3017                                 mwindow->session->drag_start_position = current->position;
3018                                 mwindow->session->drag_origin_x = cursor_x;
3019                                 mwindow->session->drag_origin_y = cursor_y;
3020                         }
3021                 }
3022         };
3023
3024         return result;
3025 }
3026
3027 void TrackCanvas::calculate_viewport(Track *track,
3028         double &view_start,   // Seconds
3029         double &unit_start,
3030         double &view_end,     // Seconds
3031         double &unit_end,
3032         double &yscale,
3033         int &center_pixel,
3034         double &zoom_sample,
3035         double &zoom_units)
3036 {
3037
3038         view_start = (double)mwindow->edl->local_session->view_start[pane->number] *
3039                 mwindow->edl->local_session->zoom_sample /
3040                 mwindow->edl->session->sample_rate;
3041         unit_start = track->to_doubleunits(view_start);
3042         view_end = (double)(mwindow->edl->local_session->view_start[pane->number] +
3043                 get_w()) *
3044                 mwindow->edl->local_session->zoom_sample /
3045                 mwindow->edl->session->sample_rate;
3046         unit_end = track->to_doubleunits(view_end);
3047
3048         int y = track->y_pixel
3049                         - mwindow->edl->local_session->track_start[pane->number];
3050         int has_titles = track->show_titles();
3051         int has_assets = track->show_assets();
3052         double title_bg_h = mwindow->theme->get_image("title_bg_data")->get_h();
3053         double asset_h = resource_h();
3054         double title_h = mwindow->theme->title_h;
3055         double ys = has_assets ? asset_h : has_titles ? title_bg_h : 0;
3056         double dy = has_titles ?
3057                 ( has_assets ? title_bg_h + asset_h/2 : title_bg_h/2) :
3058                 ( has_assets ? asset_h/2 : 0) ;
3059         if( dy < title_h/2 ) { ys = title_h;  dy = ys / 2; }
3060         yscale = ys;
3061         center_pixel = y + dy;
3062
3063         zoom_sample = mwindow->edl->local_session->zoom_sample;
3064         zoom_units = track->to_doubleunits(zoom_sample / mwindow->edl->session->sample_rate);
3065 }
3066
3067 float TrackCanvas::percentage_to_value(float percentage,
3068         int is_toggle,
3069         Auto *reference,
3070         int autogrouptype)
3071 {
3072         float result;
3073         if(is_toggle)
3074         {
3075                 if(percentage > 0.5)
3076                         result = 1;
3077                 else
3078                         result = 0;
3079         }
3080         else
3081         {
3082                 float automation_min = mwindow->edl->local_session->automation_mins[autogrouptype];
3083                 float automation_max = mwindow->edl->local_session->automation_maxs[autogrouptype];
3084                 float automation_range = automation_max - automation_min;
3085
3086                 result = percentage * automation_range + automation_min;
3087                 if(reference)
3088                 {
3089                         FloatAuto *ptr = (FloatAuto*)reference;
3090                         result -= ptr->get_value();
3091                 }
3092 //printf("TrackCanvas::percentage_to_value %d %f\n", __LINE__, result);
3093         }
3094         return result;
3095 }
3096
3097
3098 void TrackCanvas::calculate_auto_position(double *x, double *y,
3099         double *in_x, double *in_y, double *out_x, double *out_y,
3100         Auto *current, double unit_start, double zoom_units, double yscale,
3101         int autogrouptype)
3102 {
3103         float automation_min = mwindow->edl->local_session->automation_mins[autogrouptype];
3104         float automation_max = mwindow->edl->local_session->automation_maxs[autogrouptype];
3105         float automation_range = automation_max - automation_min;
3106         FloatAuto *ptr = (FloatAuto*)current;
3107         *x = (double)(ptr->position - unit_start) / zoom_units;
3108         *y = ((ptr->get_value() - automation_min) / automation_range - 0.5) * -yscale;
3109
3110         if(in_x) {
3111 //              *in_x = EQUIV(ptr->control_in_value, 0.0) ? *x : *x - mwindow->theme->control_pixels;
3112                 *in_x = (double)(ptr->position + ptr->get_control_in_position() - unit_start) / zoom_units;
3113         }
3114
3115         if(in_y) {
3116                 *in_y = (((ptr->get_value() + ptr->get_control_in_value()) -
3117                                 automation_min) / automation_range - 0.5) * -yscale;
3118         }
3119
3120         if(out_x) {
3121 //              *out_x = EQUIV(ptr->control_out_value, 0.0) ? *x : *x + mwindow->theme->control_pixels;
3122                 *out_x = (double)(ptr->position + ptr->get_control_out_position() - unit_start) / zoom_units;
3123         }
3124
3125         if(out_y) {
3126                 *out_y = (((ptr->get_value() + ptr->get_control_out_value()) -
3127                                  automation_min) / automation_range - 0.5) * -yscale;
3128         }
3129 }
3130
3131
3132 int TrackCanvas::do_float_autos(Track *track, Autos *autos, int cursor_x, int cursor_y,
3133                 int draw, int buttonpress, int x_offset, int y_offset, int color,
3134                 Auto* &auto_instance, int autogrouptype)
3135 {
3136         int result = 0;
3137         int center_pixel, draw_auto;
3138         double view_start, unit_start;
3139         double view_end, unit_end, yscale;
3140         double zoom_sample, zoom_units;
3141         double in_x2, in_y2, out_x2, out_y2;
3142         double slope;
3143         //int skip = 0;
3144
3145         auto_instance = 0;
3146
3147         if(draw) set_color(color);
3148
3149         calculate_viewport(track, view_start, unit_start, view_end, unit_end,
3150                         yscale, center_pixel, zoom_sample, zoom_units);
3151
3152 // Get first auto before start
3153         Auto *current = 0, *previous = 0;
3154
3155         for( current = autos->last;
3156                 current && current->position >= unit_start;
3157                 current = PREVIOUS ) ;
3158
3159         Auto *first_auto = current ? current :
3160                  autos->first ? autos->first : autos->default_auto;
3161
3162         double ax = 0, ay = 0, ax2 = 0, ay2 = 0;
3163         if( first_auto ) {
3164                 calculate_auto_position(&ax, &ay, 0, 0, 0, 0,
3165                         first_auto, unit_start, zoom_units, yscale, autogrouptype);
3166         }
3167         if( current )
3168                 current = NEXT;
3169         else {
3170                 current = autos->first;
3171                 ax = 0;
3172         }
3173
3174         do {
3175                 //skip = 0;
3176                 draw_auto = 1;
3177
3178                 if(current) {
3179                         calculate_auto_position(&ax2, &ay2, &in_x2, &in_y2, &out_x2, &out_y2,
3180                                 current, unit_start, zoom_units, yscale, autogrouptype);
3181                 }
3182                 else {
3183                         ax2 = get_w();
3184                         ay2 = ay;
3185                         //skip = 1;
3186                 }
3187
3188                 slope = ax2 > ax ? (ay2 - ay) / (ax2 - ax) : 0;
3189
3190                 if(ax2 > get_w()) {
3191                         draw_auto = 0;
3192                         ax2 = get_w();
3193                         ay2 = ay + slope * (get_w() - ax);
3194                 }
3195
3196                 if(ax < 0) {
3197                         ay = ay + slope * (0 - ax);
3198                         ax = 0;
3199                 }
3200
3201 // Draw or test handle
3202                 if( current && !result && current != autos->default_auto ) {
3203                         if( !draw && track->record ) {
3204                                 result = test_floatauto((FloatAuto*)current, (int)ax2, (int)ay2,
3205                                         (int)in_x2, (int)in_y2, (int)out_x2, (int)out_y2,
3206                                         (int)center_pixel, (int)yscale, cursor_x, cursor_y,
3207                                         buttonpress, autogrouptype);
3208                                 if( result )
3209                                         auto_instance = current;
3210                         }
3211                         if( draw && draw_auto ) {
3212                                 draw_floatauto((FloatAuto*)current, (int)ax2 + x_offset, (int)ay2,
3213                                         (int)in_x2 + x_offset, (int)in_y2,
3214                                         (int)out_x2 + x_offset, (int)out_y2,
3215                                         (int)center_pixel + y_offset, (int)yscale, color);
3216                         }
3217                 }
3218
3219 // Draw or test joining line
3220                 if( !draw && !result && track->record /* && buttonpress != 3 */ ) {
3221                         result = test_floatline(center_pixel,
3222                                 (FloatAutos*)autos, unit_start, zoom_units, yscale,
3223 // Exclude auto coverage from the end of the line.  The auto overlaps
3224                                 (int)ax, (int)ax2 - HANDLE_W / 2, cursor_x, cursor_y,
3225                                 buttonpress, autogrouptype);
3226                 }
3227                 if( draw )
3228                         draw_floatline(center_pixel, (FloatAuto*)previous, (FloatAuto*)current,
3229                                 (FloatAutos*)autos, unit_start, zoom_units, yscale,
3230                                 (int)ax, (int)ay, (int)ax2, (int)ay2,
3231                                 color, autogrouptype);
3232
3233                 if( current ) {
3234                         previous = current;
3235                         current = NEXT;
3236                 }
3237
3238                 ax = ax2;  ay = ay2;
3239         } while( current && current->position <= unit_end && !result );
3240
3241         if( ax < get_w() && !result ) {
3242                 ax2 = get_w();  ay2 = ay;
3243                 if(!draw && track->record /* && buttonpress != 3 */ ) {
3244                         result = test_floatline(center_pixel,
3245                                 (FloatAutos*)autos, unit_start, zoom_units, yscale,
3246                                 (int)ax, (int)ax2, cursor_x, cursor_y,
3247                                 buttonpress, autogrouptype);
3248                 }
3249                 if( draw )
3250                         draw_floatline(center_pixel,
3251                                 (FloatAuto*)previous, (FloatAuto*)current,
3252                                 (FloatAutos*)autos, unit_start, zoom_units, yscale,
3253                                 (int)ax, (int)ay, (int)ax2, (int)ay2,
3254                                 color, autogrouptype);
3255         }
3256
3257         return result;
3258 }
3259
3260
3261 int TrackCanvas::do_int_autos(Track *track,
3262                 Autos *autos,
3263                 int cursor_x,
3264                 int cursor_y,
3265                 int draw,
3266                 int buttonpress,
3267                 int x_offset,
3268                 int y_offset,
3269                 int color,
3270                 Auto *&auto_instance)
3271 {
3272         int result = 0;
3273         double view_start;
3274         double unit_start;
3275         double view_end;
3276         double unit_end;
3277         double yscale;
3278         int center_pixel;
3279         double zoom_sample;
3280         double zoom_units;
3281         double ax, ay, ax2, ay2;
3282
3283         auto_instance = 0;
3284
3285         if(draw) set_color(color);
3286
3287         calculate_viewport(track,
3288                 view_start,
3289                 unit_start,
3290                 view_end,
3291                 unit_end,
3292                 yscale,
3293                 center_pixel,
3294                 zoom_sample,
3295                 zoom_units);
3296
3297
3298         double high = -yscale * 0.8 / 2;
3299         double low = yscale * 0.8 / 2;
3300
3301 // Get first auto before start
3302         Auto *current;
3303         for(current = autos->last; current && current->position >= unit_start; current = PREVIOUS)
3304                 ;
3305
3306         if(current)
3307         {
3308                 ax = 0;
3309                 ay = ((IntAuto*)current)->value > 0 ? high : low;
3310                 current = NEXT;
3311         }
3312         else
3313         {
3314                 current = autos->first ? autos->first : autos->default_auto;
3315                 if(current)
3316                 {
3317                         ax = 0;
3318                         ay = ((IntAuto*)current)->value > 0 ? high : low;
3319                 }
3320                 else
3321                 {
3322                         ax = 0;
3323                         ay = yscale;
3324                 }
3325         }
3326
3327         do
3328         {
3329                 if(current)
3330                 {
3331                         ax2 = (double)(current->position - unit_start) / zoom_units;
3332                         ay2 = ((IntAuto*)current)->value > 0 ? high : low;
3333                 }
3334                 else
3335                 {
3336                         ax2 = get_w();
3337                         ay2 = ay;
3338                 }
3339
3340                 if(ax2 > get_w()) ax2 = get_w();
3341
3342                 if(current && !result)
3343                 {
3344                         if(current != autos->default_auto)
3345                         {
3346                                 if(!draw)
3347                                 {
3348                                         if(track->record)
3349                                         {
3350                                                 result = test_auto(current,
3351                                                         (int)ax2,
3352                                                         (int)ay2,
3353                                                         (int)center_pixel,
3354                                                         (int)yscale,
3355                                                         cursor_x,
3356                                                         cursor_y,
3357                                                         buttonpress);
3358                                                 if (result)
3359                                                         auto_instance = current;
3360                                         }
3361                                 }
3362                                 else
3363                                         draw_auto(current,
3364                                                 (int)ax2 + x_offset,
3365                                                 (int)ay2 + y_offset,
3366                                                 (int)center_pixel,
3367                                                 (int)yscale);
3368                         }
3369
3370                         current = NEXT;
3371                 }
3372
3373                 if(!draw)
3374                 {
3375                         if(!result)
3376                         {
3377                                 if(track->record /* && buttonpress != 3 */)
3378                                 {
3379                                         result = test_toggleline(autos,
3380                                                 center_pixel,
3381                                                 (int)ax,
3382                                                 (int)ay,
3383                                                 (int)ax2,
3384                                                 (int)ay2,
3385                                                 cursor_x,
3386                                                 cursor_y,
3387                                                 buttonpress);
3388                                 }
3389                         }
3390                 }
3391                 else
3392                         draw_toggleline(center_pixel + y_offset,
3393                                 (int)ax,
3394                                 (int)ay,
3395                                 (int)ax2,
3396                                 (int)ay2);
3397
3398                 ax = ax2;
3399                 ay = ay2;
3400         }while(current && current->position <= unit_end && !result);
3401
3402         if(ax < get_w() && !result)
3403         {
3404                 ax2 = get_w();
3405                 ay2 = ay;
3406                 if(!draw)
3407                 {
3408                         if(track->record /* && buttonpress != 3 */)
3409                         {
3410                                 result = test_toggleline(autos,
3411                                         center_pixel,
3412                                         (int)ax,
3413                                         (int)ay,
3414                                         (int)ax2,
3415                                         (int)ay2,
3416                                         cursor_x,
3417                                         cursor_y,
3418                                         buttonpress);
3419                         }
3420                 }
3421                 else
3422                         draw_toggleline(center_pixel + y_offset,
3423                                 (int)ax,
3424                                 (int)ay,
3425                                 (int)ax2,
3426                                 (int)ay2);
3427         }
3428         return result;
3429 }
3430
3431 int TrackCanvas::do_autos(Track *track,
3432                 Autos *autos,
3433                 int cursor_x,
3434                 int cursor_y,
3435                 int draw,
3436                 int buttonpress,
3437                 BC_Pixmap *pixmap,
3438                 Auto * &auto_instance,
3439                 int &rerender)
3440 {
3441         int result = 0;
3442
3443         double view_start;
3444         double unit_start;
3445         double view_end;
3446         double unit_end;
3447         double yscale;
3448         int center_pixel;
3449         double zoom_sample;
3450         double zoom_units;
3451
3452         calculate_viewport(track,
3453                 view_start,
3454                 unit_start,
3455                 view_end,
3456                 unit_end,
3457                 yscale,
3458                 center_pixel,
3459                 zoom_sample,
3460                 zoom_units);
3461
3462         Auto *current;
3463         auto_instance = 0;
3464
3465         for(current = autos->first; current && !result; current = NEXT)
3466         {
3467                 if(current->position >= unit_start && current->position < unit_end)
3468                 {
3469                         int64_t x, y;
3470                         x = (int64_t)((double)(current->position - unit_start) /
3471                                 zoom_units - (pixmap->get_w() / 2.0 + 0.5));
3472                         y = center_pixel - pixmap->get_h() / 2;
3473
3474                         if(!draw)
3475                         {
3476                                 if(cursor_x >= x && cursor_y >= y &&
3477                                         cursor_x < x + pixmap->get_w() &&
3478                                         cursor_y < y + pixmap->get_h())
3479                                 {
3480                                         result = 1;
3481                                         auto_instance = current;
3482
3483                                         if(buttonpress && (buttonpress != 3))
3484                                         {
3485                                                 mwindow->session->drag_auto = current;
3486                                                 mwindow->session->drag_start_position = current->position;
3487                                                 mwindow->session->drag_origin_x = cursor_x;
3488                                                 mwindow->session->drag_origin_y = cursor_y;
3489
3490                                                 double position = autos->track->from_units(current->position);
3491                                                 double center = (mwindow->edl->local_session->get_selectionstart(1) +
3492                                                         mwindow->edl->local_session->get_selectionend(1)) /
3493                                                         2;
3494
3495                                                 if(!shift_down())
3496                                                 {
3497                                                         mwindow->edl->local_session->set_selectionstart(position);
3498                                                         mwindow->edl->local_session->set_selectionend(position);
3499                                                 }
3500                                                 else
3501                                                 if(position < center)
3502                                                 {
3503                                                         mwindow->edl->local_session->set_selectionstart(position);
3504                                                 }
3505                                                 else
3506                                                         mwindow->edl->local_session->set_selectionend(position);
3507
3508                                                 rerender = 1;
3509                                         }
3510                                 }
3511                         }
3512                         else
3513                                 draw_pixmap(pixmap, x, y);
3514                 }
3515         }
3516
3517
3518         return result;
3519 }
3520
3521 // so this means it is always >0 when keyframe is found
3522 int TrackCanvas::do_plugin_autos(Track *track, int cursor_x, int cursor_y,
3523                 int draw, int buttonpress, Plugin* &keyframe_plugin,
3524                 KeyFrame* &keyframe_instance)
3525 {
3526         int result = 0;
3527
3528         double view_start;
3529         double unit_start;
3530         double view_end;
3531         double unit_end;
3532         double yscale;
3533         int center_pixel;
3534         double zoom_sample;
3535         double zoom_units;
3536
3537         if(!track->expand_view) return 0;
3538
3539         calculate_viewport(track,
3540                 view_start,
3541                 unit_start,
3542                 view_end,
3543                 unit_end,
3544                 yscale,
3545                 center_pixel,
3546                 zoom_sample,
3547                 zoom_units);
3548
3549
3550
3551         for(int i = 0; i < track->plugin_set.total && !result; i++)
3552         {
3553                 PluginSet *plugin_set = track->plugin_set.values[i];
3554                 int center_pixel = track->y_pixel -
3555                         mwindow->edl->local_session->track_start[pane->number];
3556                 if( track->show_titles() )
3557                         center_pixel += mwindow->theme->get_image("title_bg_data")->get_h();
3558                 if( track->show_assets() )
3559                         center_pixel += resource_h();
3560                 center_pixel += (i + 0.5) * mwindow->theme->get_image("plugin_bg_data")->get_h();
3561
3562                 for(Plugin *plugin = (Plugin*)plugin_set->first;
3563                         plugin && !result;
3564                         plugin = (Plugin*)plugin->next)
3565                 {
3566                         for(KeyFrame *keyframe = (KeyFrame*)plugin->keyframes->first;
3567                                 keyframe && !result;
3568                                 keyframe = (KeyFrame*)keyframe->next)
3569                         {
3570 //printf("TrackCanvas::draw_plugin_autos 3 %d\n", keyframe->position);
3571                                 if(keyframe->position >= unit_start && keyframe->position < unit_end)
3572                                 {
3573                                         int64_t x = (int64_t)((keyframe->position - unit_start) / zoom_units);
3574                                         int y = center_pixel - keyframe_pixmap->get_h() / 2;
3575
3576 //printf("TrackCanvas::draw_plugin_autos 4 %d %d\n", x, center_pixel);
3577                                         if(!draw)
3578                                         {
3579                                                 if(cursor_x >= x && cursor_y >= y &&
3580                                                         cursor_x < x + keyframe_pixmap->get_w() &&
3581                                                         cursor_y < y + keyframe_pixmap->get_h())
3582                                                 {
3583                                                         result = 1;
3584                                                         keyframe_plugin = plugin;
3585                                                         keyframe_instance = keyframe;
3586
3587                                                         if(buttonpress)
3588                                                         {
3589                                                                 mwindow->session->drag_auto = keyframe;
3590                                                                 mwindow->session->drag_start_position = keyframe->position;
3591                                                                 mwindow->session->drag_origin_x = cursor_x;
3592                                                                 mwindow->session->drag_origin_y = cursor_y;
3593
3594                                                                 double position = track->from_units(keyframe->position);
3595                                                                 double center = (mwindow->edl->local_session->get_selectionstart(1) +
3596                                                                         mwindow->edl->local_session->get_selectionend(1)) /
3597                                                                         2;
3598
3599                                                                 if(!shift_down())
3600                                                                 {
3601                                                                         mwindow->edl->local_session->set_selectionstart(position);
3602                                                                         mwindow->edl->local_session->set_selectionend(position);
3603                                                                 }
3604                                                                 else
3605                                                                 if(position < center)
3606                                                                 {
3607                                                                         mwindow->edl->local_session->set_selectionstart(position);
3608                                                                 }
3609                                                                 else
3610                                                                         mwindow->edl->local_session->set_selectionend(position);
3611                                                         }
3612                                                 }
3613                                         }
3614                                         else
3615                                                 draw_pixmap(keyframe_pixmap,
3616                                                         x,
3617                                                         y);
3618                                 }
3619                         }
3620                 }
3621         }
3622
3623
3624
3625 //      if(buttonpress && buttonpress != 3 && result)
3626 //      {
3627 //              mwindow->undo->update_undo_before();
3628 //      }
3629
3630         return result;
3631 }
3632
3633 int TrackCanvas::draw_hairline(Auto *auto_keyframe, int color, int show)
3634 {
3635         Track *track = auto_keyframe->autos->track;
3636         int autogrouptype = auto_keyframe->autos->autogrouptype;
3637
3638         int center_pixel;
3639         double view_start, unit_start;
3640         double view_end, unit_end, yscale;
3641         double zoom_sample, zoom_units;
3642
3643         calculate_viewport(track, view_start, unit_start, view_end, unit_end,
3644                         yscale, center_pixel, zoom_sample, zoom_units);
3645         if( auto_keyframe->position < unit_start ||
3646             auto_keyframe->position >= unit_end )
3647                 return 0;
3648
3649         double ax = 0, ay = 0;
3650         calculate_auto_position(&ax, &ay, 0, 0, 0, 0,
3651                 auto_keyframe, unit_start, zoom_units, yscale, autogrouptype);
3652
3653         set_color(color);
3654         draw_line(ax, 0, ax, get_h());
3655
3656         if( show ) {
3657                 char text[BCSTRLEN];
3658                 if( auto_keyframe->is_floatauto() ) {
3659                         FloatAuto *float_auto = (FloatAuto *)auto_keyframe;
3660                         sprintf(text, "%0.2f", float_auto->get_value());
3661                 }
3662                 else {
3663                         IntAuto *int_auto = (IntAuto *)auto_keyframe;
3664                         sprintf(text, "%d", int_auto->value);
3665                 }
3666                 int font = MEDIUMFONT;
3667                 int tw = get_text_width(font, text)  + TOOLTIP_MARGIN * 2;
3668                 int th = get_text_height(font, text) + TOOLTIP_MARGIN * 2;
3669                 set_color(get_resources()->tooltip_bg_color);
3670                 ax += HANDLE_W/2;
3671                 ay += center_pixel + HANDLE_W/2;
3672                 draw_box(ax, ay, tw, th);
3673                 set_color(BLACK);
3674                 draw_rectangle(ax, ay, tw, th);
3675                 set_font(font);
3676                 ax += TOOLTIP_MARGIN;
3677                 ay += TOOLTIP_MARGIN + get_text_ascent(font);
3678                 draw_text(ax, ay, text);
3679         }
3680         return 0;
3681 }
3682
3683 void TrackCanvas::draw_overlays()
3684 {
3685         int new_cursor, update_cursor, rerender;
3686
3687 // Move background pixmap to foreground pixmap
3688         draw_pixmap(background_pixmap,
3689                 0,
3690                 0,
3691                 get_w(),
3692                 get_h(),
3693                 0,
3694                 0);
3695
3696 // In/Out points
3697         draw_inout_points();
3698
3699 // Transitions
3700         draw_transitions();
3701
3702 // Plugins
3703         draw_plugins();
3704         draw_hard_edges();
3705
3706 // Loop points
3707         draw_loop_points();
3708         draw_brender_range();
3709
3710 // Highlighted areas
3711         draw_highlighting();
3712
3713 // Automation
3714         do_keyframes(0, 0, 1, 0, new_cursor, update_cursor, rerender);
3715
3716 // Selection cursor
3717         if(pane->cursor) pane->cursor->restore(1);
3718
3719 // Handle dragging
3720         draw_drag_handle();
3721
3722 // Playback cursor
3723         draw_playback_cursor();
3724
3725         draw_keyframe_reticle();
3726
3727         show_window(0);
3728 }
3729
3730 int TrackCanvas::activate()
3731 {
3732         if(!active)
3733         {
3734 //printf("TrackCanvas::activate %d %d\n", __LINE__, pane->number);
3735 //BC_Signals::dump_stack();
3736                 get_top_level()->deactivate();
3737                 active = 1;
3738                 set_active_subwindow(this);
3739                 pane->cursor->activate();
3740                 gui->focused_pane = pane->number;
3741         }
3742         return 0;
3743 }
3744
3745 int TrackCanvas::deactivate()
3746 {
3747         if(active)
3748         {
3749                 active = 0;
3750                 pane->cursor->deactivate();
3751         }
3752         return 0;
3753 }
3754
3755
3756 void TrackCanvas::update_drag_handle()
3757 {
3758         double new_position;
3759         int cursor_x = get_cursor_x();
3760
3761         new_position =
3762                 (double)(cursor_x +
3763                 mwindow->edl->local_session->view_start[pane->number]) *
3764                 mwindow->edl->local_session->zoom_sample /
3765                 mwindow->edl->session->sample_rate;
3766
3767         new_position =
3768                 mwindow->edl->align_to_frame(new_position, 0);
3769
3770         if( ctrl_down() && alt_down() ) {
3771 #define snapper(v) do { \
3772         double pos = (v); \
3773         if( pos < 0 ) break; \
3774         double dist = fabs(new_position - pos); \
3775         if( dist >= snap_min ) break; \
3776         snap_position = pos;  snap_min = dist; \
3777 } while(0)
3778                 double snap_position = new_position;
3779                 double snap_min = DBL_MAX;
3780                 if( mwindow->edl->local_session->inpoint_valid() )
3781                         snapper(mwindow->edl->local_session->get_inpoint());
3782                 if( mwindow->edl->local_session->outpoint_valid() )
3783                         snapper(mwindow->edl->local_session->get_outpoint());
3784                 snapper(mwindow->edl->prev_edit(new_position));
3785                 snapper(mwindow->edl->next_edit(new_position));
3786                 Label *prev_label = mwindow->edl->labels->prev_label(new_position);
3787                 if( prev_label ) snapper(prev_label->position);
3788                 Label *next_label = mwindow->edl->labels->next_label(new_position);
3789                 if( next_label ) snapper(next_label->position);
3790                 int snap_x = snap_position * mwindow->edl->session->sample_rate /
3791                         mwindow->edl->local_session->zoom_sample -
3792                         mwindow->edl->local_session->view_start[pane->number];
3793                 if( abs(snap_x - cursor_x) < HANDLE_W ) {
3794                         snapped = 1;
3795                         new_position = snap_position;
3796                 }
3797 #undef snapper
3798         }
3799
3800         if(new_position != mwindow->session->drag_position)
3801         {
3802                 mwindow->session->drag_position = new_position;
3803                 gui->mainclock->update(new_position);
3804                 timebar_position = new_position;
3805                 gui->update_timebar(0);
3806
3807                 EDL *edl = new EDL;
3808                 edl->create_objects();
3809                 edl->copy_all(mwindow->edl);
3810                 MainSession *session = mwindow->session;
3811                 int handle_mode = mwindow->edl->session->edit_handle_mode[session->drag_button];
3812                 edl->modify_edithandles(session->drag_start,
3813                         session->drag_position, session->drag_handle, handle_mode,
3814                         edl->session->labels_follow_edits,
3815                         edl->session->plugins_follow_edits,
3816                         edl->session->autos_follow_edits,
3817                         !session->drag_edit ? 0 : session->drag_edit->group_id);
3818
3819                 double position = -1;
3820                 switch( handle_mode ) {
3821                 case MOVE_RIPPLE:
3822                 case MOVE_ROLL:
3823                 case MOVE_SLIDE:
3824                         position = session->drag_position;
3825                         break;
3826                 case MOVE_SLIP:
3827                 case MOVE_EDGE:
3828                         position = session->drag_start;
3829                         break;
3830                 }
3831
3832                 if( position < 0 ) position = 0;
3833                 Track *track = session->drag_handle_track();
3834                 int64_t pos = track->to_units(position, 0);
3835                 render_handle_frame(edl, pos, shift_down() ? 0 :
3836                         session->drag_handle ? 1 : 2);
3837                 edl->remove_user();
3838         }
3839 }
3840
3841 int TrackCanvas::render_handle_frame(EDL *edl, int64_t pos, int mode)
3842 {
3843         int result = 0;
3844         int64_t left = pos-1;
3845         if( left < 0 ) left = 0;
3846         switch( mode ) {
3847         case 0: {
3848                 VFrame vlt(edl->get_w(), edl->get_h(), edl->session->color_model);
3849                 VFrame vrt(edl->get_w(), edl->get_h(), edl->session->color_model);
3850                 TransportCommand command;
3851                 command.command = CURRENT_FRAME;
3852                 command.get_edl()->copy_all((EDL *)edl);
3853                 command.change_type = CHANGE_ALL;
3854                 command.realtime = 0;
3855                 Preferences *preferences = mwindow->preferences;
3856                 RenderEngine *render_engine = new RenderEngine(0, preferences, 0, 0);
3857                 CICache *video_cache = new CICache(preferences);
3858                 render_engine->set_vcache(video_cache);
3859                 render_engine->arm_command(&command);
3860                 int64_t left = pos-1;
3861                 if( left < 0 ) left = 0;
3862                 VRender *vrender = render_engine->vrender;
3863                 result = vrender &&
3864                         !vrender->process_buffer(&vlt, left, 0) &&
3865                         !vrender->process_buffer(&vrt, pos , 0) ? 0 : 1;
3866                 delete render_engine;
3867                 delete video_cache;
3868                 mwindow->cwindow->gui->lock_window("TrackCanvas::render_handle_frame 0");
3869                 Canvas *canvas = mwindow->cwindow->gui->canvas;
3870                 canvas->lock_canvas("TrackCanvas::render_handle_frame 1");
3871                 int w = canvas->w, h = canvas->h, w2 = w/2, h2 = h/2;
3872                 int lx = 0, ly = h2/2, rx = w2, ry = h2/2;
3873                 BC_WindowBase *window = canvas->get_canvas();
3874                 window->set_color(BLACK);
3875                 window->clear_box(0,0, window->get_w(),window->get_h());
3876                 window->draw_vframe(&vlt, lx,ly, w2,h2, 0,0,vlt.get_w(),vlt.get_h());
3877                 window->draw_vframe(&vrt, rx,ry, w2,h2, 0,0,vrt.get_w(),vrt.get_h());
3878                 window->flash(1);
3879                 canvas->unlock_canvas();
3880                 mwindow->cwindow->gui->unlock_window();
3881                 break; }
3882         case 1:
3883         case 2: {
3884                 Track *track = mwindow->session->drag_handle_track();
3885                 double position = track->from_units(mode == 1 ? left : pos);
3886                 if( position < 0 ) position = 0;
3887                 edl->local_session->set_selectionstart(position);
3888                 edl->local_session->set_selectionend(position);
3889                 PlaybackEngine *playback_engine = mwindow->cwindow->playback_engine;
3890                 if( playback_engine->is_playing_back )
3891                         playback_engine->stop_playback(1);
3892                 mwindow->cwindow->playback_engine->refresh_frame(CHANGE_EDL, edl, 0);
3893                 break; }
3894         }
3895         return result;
3896 }
3897
3898 int TrackCanvas::update_drag_edit()
3899 {
3900         int result = 0;
3901
3902
3903
3904         return result;
3905 }
3906
3907 int TrackCanvas::get_drag_values(float *percentage,
3908         int64_t *position,
3909         int do_clamp,
3910         int cursor_x,
3911         int cursor_y,
3912         Auto *current)
3913 {
3914         //int x = cursor_x - mwindow->session->drag_origin_x;
3915         //int y = cursor_y - mwindow->session->drag_origin_y;
3916         *percentage = 0;
3917         *position = 0;
3918
3919         if(!current->autos->track->record) return 1;
3920         double view_start;
3921         double unit_start;
3922         double view_end;
3923         double unit_end;
3924         double yscale;
3925         int center_pixel;
3926         double zoom_sample;
3927         double zoom_units;
3928
3929         calculate_viewport(current->autos->track,
3930                 view_start,
3931                 unit_start,
3932                 view_end,
3933                 unit_end,
3934                 yscale,
3935                 center_pixel,
3936                 zoom_sample,
3937                 zoom_units);
3938
3939         *percentage = (float)(mwindow->session->drag_origin_y - cursor_y) /
3940                 yscale +
3941                 mwindow->session->drag_start_percentage;
3942         if(do_clamp) CLAMP(*percentage, 0, 1);
3943
3944         *position = Units::to_int64(zoom_units *
3945                 (cursor_x - mwindow->session->drag_origin_x) +
3946                 mwindow->session->drag_start_position + 0.5);
3947
3948         if((do_clamp) && *position < 0) *position = 0;
3949         return 0;
3950 }
3951
3952
3953 #define UPDATE_DRAG_HEAD(do_clamp) \
3954         int result = 0, center_pixel; \
3955         if(!current->autos->track->record) return 0; \
3956         double view_start, unit_start, view_end, unit_end; \
3957         double yscale, zoom_sample, zoom_units; \
3958  \
3959         calculate_viewport(current->autos->track,  \
3960                 view_start, unit_start, view_end, unit_end, \
3961                 yscale, center_pixel, zoom_sample, zoom_units); \
3962  \
3963         float percentage = (float)(mwindow->session->drag_origin_y - cursor_y) / \
3964                 yscale +  mwindow->session->drag_start_percentage; \
3965         if(do_clamp) CLAMP(percentage, 0, 1); \
3966  \
3967         int64_t position = Units::to_int64(zoom_units * \
3968                 (cursor_x - mwindow->session->drag_origin_x) + \
3969                 mwindow->session->drag_start_position); \
3970         if((do_clamp) && position < 0) position = 0;
3971
3972
3973 int TrackCanvas::update_drag_floatauto(int cursor_x, int cursor_y)
3974 {
3975         FloatAuto *current = (FloatAuto*)mwindow->session->drag_auto;
3976
3977         UPDATE_DRAG_HEAD(mwindow->session->drag_handle == 0);
3978         int x = cursor_x - mwindow->session->drag_origin_x;
3979         int y = cursor_y - mwindow->session->drag_origin_y;
3980         float value, old_value;
3981
3982         if( mwindow->session->drag_handle == 0 && (ctrl_down() && !shift_down()) ) {
3983 // not really editing the node, rather start editing the curve
3984 // tangent is editable and drag movement is significant
3985                 if( (FloatAuto::FREE == current->curve_mode ||
3986                      FloatAuto::TFREE==current->curve_mode) &&
3987                     (fabs(x) > HANDLE_W / 2 || fabs(y) > HANDLE_W / 2))
3988                         mwindow->session->drag_handle = x < 0 ? 1 : 2;
3989         }
3990
3991         switch(mwindow->session->drag_handle) {
3992         case 0: // Center
3993 // Snap to nearby values
3994                 old_value = current->get_value();
3995                 if(shift_down()) {
3996                         double value1, value2, distance1, distance2;
3997
3998                         if(current->previous) {
3999                                 int autogrouptype = current->previous->autos->autogrouptype;
4000                                 value = percentage_to_value(percentage, 0, 0, autogrouptype);
4001                                 value1 = ((FloatAuto*)current->previous)->get_value();
4002                                 distance1 = fabs(value - value1);
4003                                 current->set_value(value1);
4004                         }
4005
4006                         if(current->next) {
4007                                 int autogrouptype = current->next->autos->autogrouptype;
4008                                 value = percentage_to_value(percentage, 0, 0, autogrouptype);
4009                                 value2 = ((FloatAuto*)current->next)->get_value();
4010                                 distance2 = fabs(value - value2);
4011                                 if(!current->previous || distance2 < distance1) {
4012                                         current->set_value(value2);
4013                                 }
4014                         }
4015
4016                         if(!current->previous && !current->next) {
4017                                 current->set_value( ((FloatAutos*)current->autos)->default_);
4018                         }
4019                         value = current->get_value();
4020                 }
4021                 else {
4022                         int autogrouptype = current->autos->autogrouptype;
4023                         value = percentage_to_value(percentage, 0, 0, autogrouptype);
4024                 }
4025
4026                 if(alt_down() && !shift_down())
4027 // ALT constrains movement: fixed position, only changing the value
4028                         position = mwindow->session->drag_start_position;
4029
4030                 if(value != old_value || position != current->position) {
4031                         result = 1;
4032                         float change = value - old_value;
4033                         current->adjust_to_new_coordinates(position, value);
4034                         update_ganged_autos(change, current->autos->track, current);
4035                         show_message(current, 1,", %.2f", current->get_value());
4036                 }
4037                 break;
4038
4039 // In control
4040         case 1: {
4041                 int autogrouptype = current->autos->autogrouptype;
4042                 value = percentage_to_value(percentage, 0, current, autogrouptype);
4043                 if(value != current->get_control_in_value())
4044                 {
4045                         result = 1;
4046                         // note: (position,value) need not be at the location of the ctrl point,
4047                         // but could be somewhere in between on the curve (or even outward or
4048                         // on the opposit side). We set the new control point such as
4049                         // to point the curve through (position,value)
4050                         current->set_control_in_value(
4051                                 value * levered_position(position - current->position,
4052                                                          current->get_control_in_position()));
4053                         update_ganged_autos(0, current->autos->track, current);
4054                         show_message(current, 1,", %.2f", current->get_control_in_value());
4055                 }
4056                 break; }
4057
4058 // Out control
4059         case 2: {
4060                 int autogrouptype = current->autos->autogrouptype;
4061                 value = percentage_to_value(percentage, 0, current, autogrouptype);
4062                 if(value != current->get_control_out_value()) {
4063                         result = 1;
4064                         current->set_control_out_value(
4065                                 value * levered_position(position - current->position,
4066                                                          current->get_control_out_position()));
4067                         update_ganged_autos(0, current->autos->track, current);
4068                         show_message(current, 1,", %.2f", current->get_control_out_value());
4069                 }
4070                 break; }
4071         }
4072
4073         return result;
4074 }
4075
4076 int TrackCanvas::update_drag_toggleauto(int cursor_x, int cursor_y)
4077 {
4078         IntAuto *current = (IntAuto*)mwindow->session->drag_auto;
4079
4080         UPDATE_DRAG_HEAD(1);
4081         int value = (int)percentage_to_value(percentage, 1, 0, AUTOGROUPTYPE_INT255);
4082
4083         if(value != current->value || position != current->position)
4084         {
4085                 result = 1;
4086                 current->value = value;
4087                 current->position = position;
4088                 show_message(current, 0,", %d", current->value);
4089         }
4090
4091         return result;
4092 }
4093
4094 // Autos which can't change value through dragging.
4095
4096 int TrackCanvas::update_drag_auto(int cursor_x, int cursor_y)
4097 {
4098         Auto *current = (Auto*)mwindow->session->drag_auto;
4099
4100         UPDATE_DRAG_HEAD(1)
4101         if(position != current->position)
4102         {
4103                 result = 1;
4104                 current->position = position;
4105                 show_message(current, 0,"");
4106
4107                 double position_f = current->autos->track->from_units(current->position);
4108                 double center_f = (mwindow->edl->local_session->get_selectionstart(1) +
4109                         mwindow->edl->local_session->get_selectionend(1)) /
4110                         2;
4111                 if(!shift_down())
4112                 {
4113                         mwindow->edl->local_session->set_selectionstart(position_f);
4114                         mwindow->edl->local_session->set_selectionend(position_f);
4115                 }
4116                 else
4117                 if(position_f < center_f)
4118                 {
4119                         mwindow->edl->local_session->set_selectionstart(position_f);
4120                 }
4121                 else
4122                         mwindow->edl->local_session->set_selectionend(position_f);
4123         }
4124
4125
4126         return result;
4127 }
4128
4129 int TrackCanvas::update_drag_pluginauto(int cursor_x, int cursor_y)
4130 {
4131         KeyFrame *current = (KeyFrame*)mwindow->session->drag_auto;
4132
4133         UPDATE_DRAG_HEAD(1)
4134         if(position != current->position)
4135         {
4136 //      printf("uida: autos: %p, track: %p ta: %p\n", current->autos, current->autos->track, current->autos->track->automation);
4137                 Track *track = current->autos->track;
4138                 //PluginAutos *pluginautos = (PluginAutos *)current->autos;
4139                 PluginSet *pluginset;
4140                 Plugin *plugin = 0;
4141 // figure out the correct pluginset & correct plugin
4142                 int found = 0;
4143                 for(int i = 0; i < track->plugin_set.total; i++)
4144                 {
4145                         pluginset = track->plugin_set.values[i];
4146                         for(plugin = (Plugin *)pluginset->first; plugin; plugin = (Plugin *)plugin->next)
4147                         {
4148                                 KeyFrames *keyframes = plugin->keyframes;
4149                                 for(KeyFrame *currentkeyframe = (KeyFrame *)keyframes->first;
4150                                         currentkeyframe;
4151                                         currentkeyframe = (KeyFrame *) currentkeyframe->next)
4152                                 {
4153                                         if (currentkeyframe == current)
4154                                         {
4155                                                 found = 1;
4156                                                 break;
4157                                         }
4158
4159                                 }
4160                                 if (found) break;
4161                         }
4162                         if (found) break;
4163                 }
4164
4165                 mwindow->session->plugin_highlighted = plugin;
4166                 mwindow->session->track_highlighted = track;
4167                 result = 1;
4168                 current->position = position;
4169                 show_message(current, 0,"");
4170
4171                 double position_f = current->autos->track->from_units(current->position);
4172                 double center_f = (mwindow->edl->local_session->get_selectionstart(1) +
4173                         mwindow->edl->local_session->get_selectionend(1)) /
4174                         2;
4175                 if(!shift_down())
4176                 {
4177                         mwindow->edl->local_session->set_selectionstart(position_f);
4178                         mwindow->edl->local_session->set_selectionend(position_f);
4179                 }
4180                 else
4181                 if(position_f < center_f)
4182                 {
4183                         mwindow->edl->local_session->set_selectionstart(position_f);
4184                 }
4185                 else
4186                         mwindow->edl->local_session->set_selectionend(position_f);
4187         }
4188
4189
4190         return result;
4191 }
4192
4193 void TrackCanvas::update_drag_caption()
4194 {
4195         switch(mwindow->session->current_operation)
4196         {
4197                 case DRAG_FADE:
4198
4199                         break;
4200         }
4201 }
4202
4203
4204
4205 int TrackCanvas::cursor_update(int in_motion)
4206 {
4207         int result = 0;
4208         int cursor_x = 0;
4209         int cursor_y = 0;
4210         int update_clock = 0;
4211         int update_zoom = 0;
4212         int update_scroll = 0;
4213         int update_overlay = 0;
4214         int update_cursor = 0;
4215         int rerender = 0;
4216         double position = 0.;
4217 //printf("TrackCanvas::cursor_update %d\n", __LINE__);
4218
4219 // Default cursor
4220         int new_cursor =
4221                 arrow_mode() ? ARROW_CURSOR :
4222                 ibeam_mode() ? IBEAM_CURSOR : 0;
4223
4224         switch(mwindow->session->current_operation)
4225         {
4226                 case DRAG_EDITHANDLE1:
4227 // Outside threshold.  Upgrade status
4228                         if(active)
4229                         {
4230                                 if(labs(get_cursor_x() - mwindow->session->drag_origin_x) > HANDLE_W)
4231                                 {
4232                                         mwindow->session->current_operation = DRAG_EDITHANDLE2;
4233                                         update_overlay = 1;
4234                                 }
4235                         }
4236                         break;
4237
4238                 case DRAG_EDITHANDLE2:
4239                         if(active)
4240                         {
4241                                 update_drag_handle();
4242                                 update_overlay = 1;
4243                         }
4244                         break;
4245
4246                 case DRAG_PLUGINHANDLE1:
4247                         if(active)
4248                         {
4249                                 if(labs(get_cursor_x() - mwindow->session->drag_origin_x) > HANDLE_W)
4250                                 {
4251                                         mwindow->session->current_operation = DRAG_PLUGINHANDLE2;
4252                                         update_overlay = 1;
4253                                 }
4254                         }
4255                         break;
4256
4257                 case DRAG_PLUGINHANDLE2:
4258                         if(active)
4259                         {
4260                                 update_drag_handle();
4261                                 update_overlay = 1;
4262                         }
4263                         break;
4264
4265 // Rubber band curves
4266                 case DRAG_FADE:
4267                 case DRAG_SPEED:
4268                 case DRAG_CZOOM:
4269                 case DRAG_PZOOM:
4270                 case DRAG_CAMERA_X:
4271                 case DRAG_CAMERA_Y:
4272                 case DRAG_CAMERA_Z:
4273                 case DRAG_PROJECTOR_X:
4274                 case DRAG_PROJECTOR_Y:
4275                 case DRAG_PROJECTOR_Z:
4276                         if(active) rerender = update_overlay =
4277                                 update_drag_floatauto(get_cursor_x(), get_cursor_y());
4278                         if( rerender && mwindow->session->current_operation == DRAG_SPEED )
4279                                 mwindow->speed_after(!in_motion ? 1 : 0);
4280                         break;
4281
4282                 case DRAG_PLAY:
4283                         if(active) rerender = update_overlay =
4284                                 update_drag_toggleauto(get_cursor_x(), get_cursor_y());
4285                         break;
4286
4287                 case DRAG_MUTE:
4288                         if(active) rerender = update_overlay =
4289                                 update_drag_toggleauto(get_cursor_x(), get_cursor_y());
4290                         break;
4291
4292 // Keyframe icons are sticky
4293                 case DRAG_PAN_PRE:
4294                 case DRAG_MASK_PRE:
4295                 case DRAG_MODE_PRE:
4296                 case DRAG_PLUGINKEY_PRE:
4297                         if(active) {
4298                                 if(labs(get_cursor_x() - mwindow->session->drag_origin_x) > HANDLE_W) {
4299                                         mwindow->session->current_operation++;
4300                                         update_overlay = 1;
4301
4302                                         mwindow->undo->update_undo_before();
4303                                 }
4304                         }
4305                         break;
4306
4307                 case DRAG_PAN:
4308                 case DRAG_MASK:
4309                 case DRAG_MODE:
4310                         if(active) rerender = update_overlay =
4311                                 update_drag_auto(get_cursor_x(), get_cursor_y());
4312                         break;
4313
4314                 case DRAG_PLUGINKEY:
4315                         if(active) rerender = update_overlay =
4316                                 update_drag_pluginauto(get_cursor_x(), get_cursor_y());
4317                         break;
4318
4319                 case SELECT_REGION:
4320                         if(active) {
4321                                 cursor_x = get_cursor_x();
4322                                 cursor_y = get_cursor_y();
4323                                 position = (double)(cursor_x + mwindow->edl->local_session->view_start[pane->number]) *
4324                                         mwindow->edl->local_session->zoom_sample / mwindow->edl->session->sample_rate;
4325
4326                                 position = mwindow->edl->align_to_frame(position, 0);
4327                                 position = MAX(position, 0);
4328
4329                                 double start = mwindow->edl->local_session->get_selectionstart(1);
4330                                 double end = mwindow->edl->local_session->get_selectionend(1);
4331                                 if(position < selection_midpoint) {
4332                                         mwindow->edl->local_session->set_selectionend(selection_midpoint);
4333                                         mwindow->edl->local_session->set_selectionstart(position);
4334                                 }
4335                                 else {
4336                                         mwindow->edl->local_session->set_selectionstart(selection_midpoint);
4337                                         mwindow->edl->local_session->set_selectionend(position);
4338                                 }
4339         // Que the CWindow
4340                                 gui->unlock_window();
4341                                 int dir =
4342                                         start != mwindow->edl->local_session->get_selectionstart(1) ? 1 :
4343                                         end != mwindow->edl->local_session->get_selectionend(1) ? -1 : 0;
4344                                 mwindow->cwindow->update(dir, 0, 0, 0, 1);
4345                                 gui->lock_window("TrackCanvas::cursor_update 1");
4346         // Update the faders
4347                                 mwindow->update_plugin_guis();
4348                                 gui->update_patchbay();
4349
4350                                 timebar_position = mwindow->edl->local_session->get_selectionend(1);
4351
4352                                 gui->hide_cursor(0);
4353                                 gui->draw_cursor(1);
4354                                 gui->update_timebar(0);
4355                                 gui->flash_canvas(1);
4356                                 result = 1;
4357                                 update_clock = 1;
4358                                 update_zoom = 1;
4359                                 update_scroll = 1;
4360                         }
4361                         break;
4362
4363                 case DROP_TARGETING:
4364                         new_cursor = GRABBED_CURSOR;
4365                         result = 1;
4366                         break;
4367
4368                 default:
4369                         if(is_event_win() && cursor_inside()) {
4370 // Update clocks
4371                                 cursor_x = get_cursor_x();
4372                                 position = mwindow->edl->get_cursor_position(cursor_x, pane->number);
4373                                 position = mwindow->edl->align_to_frame(position, 0);
4374                                 update_clock = 1;
4375 // set all timebars
4376                                 for(int i = 0; i < TOTAL_PANES; i++)
4377                                         if(gui->pane[i]) gui->pane[i]->canvas->timebar_position = position;
4378
4379 //printf("TrackCanvas::cursor_update %d %d %p %p\n", __LINE__, pane->number, pane, pane->timebar);
4380                                 gui->update_timebar(0);
4381 // Update cursor
4382                                 if(do_transitions(get_cursor_x(), get_cursor_y(),
4383                                                 0, new_cursor, update_cursor)) break;
4384                                 if(do_keyframes(get_cursor_x(), get_cursor_y(),
4385                                         0, 0, new_cursor, update_cursor, rerender)) break;
4386                                 if(do_edit_handles(get_cursor_x(), get_cursor_y(),
4387                                         0, rerender, update_overlay, new_cursor, update_cursor)) break;
4388 // Plugin boundaries
4389                                 if(do_plugin_handles(get_cursor_x(), get_cursor_y(),
4390                                         0, rerender, update_overlay, new_cursor, update_cursor)) break;
4391                                 if(do_edits(get_cursor_x(), get_cursor_y(),
4392                                         0, 0, update_overlay, rerender, new_cursor, update_cursor)) break;
4393                         }
4394                         break;
4395         }
4396
4397 //printf("TrackCanvas::cursor_update 1\n");
4398         if(update_cursor && new_cursor != get_cursor())
4399         {
4400                 set_cursor(new_cursor, 0, 1);
4401         }
4402
4403 //printf("TrackCanvas::cursor_update 1 %d\n", rerender);
4404         if(rerender && render_timer->get_difference() > 0.25 ) {
4405                 render_timer->update();
4406                 mwindow->restart_brender();
4407                 mwindow->sync_parameters(CHANGE_PARAMS);
4408                 mwindow->update_plugin_guis();
4409                 gui->unlock_window();
4410                 mwindow->cwindow->update(1, 0, 0, 0, 1);
4411                 gui->lock_window("TrackCanvas::cursor_update 2");
4412         }
4413         if(rerender) {
4414 // Update faders
4415                 gui->update_patchbay();
4416         }
4417
4418
4419         if(update_clock) {
4420                 if(!mwindow->cwindow->playback_engine->is_playing_back)
4421                         gui->mainclock->update(position);
4422         }
4423
4424         if(update_zoom) {
4425                 gui->zoombar->update();
4426         }
4427
4428         if(update_scroll) {
4429                 if(!drag_scroll &&
4430                         (cursor_x >= get_w() || cursor_x < 0 || cursor_y >= get_h() || cursor_y < 0))
4431                         start_dragscroll();
4432                 else
4433                 if(drag_scroll &&
4434                         (cursor_x < get_w() && cursor_x >= 0 && cursor_y < get_h() && cursor_y >= 0))
4435                         stop_dragscroll();
4436         }
4437
4438         if(update_overlay) {
4439                 gui->draw_overlays(1);
4440         }
4441
4442 //printf("TrackCanvas::cursor_update %d\n", __LINE__);
4443         return result;
4444 }
4445
4446 int TrackCanvas::cursor_motion_event()
4447 {
4448         return cursor_update(1);
4449 }
4450
4451 void TrackCanvas::start_dragscroll()
4452 {
4453         if(!drag_scroll) {
4454                 drag_scroll = 1;
4455                 set_repeat(BC_WindowBase::get_resources()->scroll_repeat);
4456 //printf("TrackCanvas::start_dragscroll 1\n");
4457         }
4458 }
4459
4460 void TrackCanvas::stop_dragscroll()
4461 {
4462         if(drag_scroll) {
4463                 drag_scroll = 0;
4464                 unset_repeat(BC_WindowBase::get_resources()->scroll_repeat);
4465 //printf("TrackCanvas::stop_dragscroll 1\n");
4466         }
4467 }
4468
4469 int TrackCanvas::repeat_event(int64_t duration)
4470 {
4471         if(!drag_scroll) return 0;
4472         if(duration != BC_WindowBase::get_resources()->scroll_repeat) return 0;
4473
4474         int sample_movement = 0;
4475         int track_movement = 0;
4476         int64_t x_distance = 0;
4477         int64_t y_distance = 0;
4478         double position = 0;
4479         int result = 0;
4480
4481         switch(mwindow->session->current_operation) {
4482                 case SELECT_REGION:
4483 //printf("TrackCanvas::repeat_event 1 %d\n", mwindow->edl->local_session->view_start);
4484                 if(get_cursor_x() > get_w()) {
4485                                 x_distance = get_cursor_x() - get_w();
4486                                 sample_movement = 1;
4487                 }
4488                 else if(get_cursor_x() < 0) {
4489                         x_distance = get_cursor_x();
4490                         sample_movement = 1;
4491                 }
4492
4493                 if(get_cursor_y() > get_h()) {
4494                         y_distance = get_cursor_y() - get_h();
4495                         track_movement = 1;
4496                 }
4497                 else if(get_cursor_y() < 0) {
4498                         y_distance = get_cursor_y();
4499                         track_movement = 1;
4500                 }
4501                 result = 1;
4502                 break;
4503         }
4504
4505         if(sample_movement) {
4506                 position = (double)(get_cursor_x() +
4507                         mwindow->edl->local_session->view_start[pane->number] +
4508                         x_distance) *
4509                         mwindow->edl->local_session->zoom_sample /
4510                         mwindow->edl->session->sample_rate;
4511                 position = mwindow->edl->align_to_frame(position, 0);
4512                 position = MAX(position, 0);
4513
4514 //printf("TrackCanvas::repeat_event 1 %f\n", position);
4515                 switch(mwindow->session->current_operation) {
4516                 case SELECT_REGION:
4517                         if(position < selection_midpoint) {
4518                                 mwindow->edl->local_session->set_selectionend(selection_midpoint);
4519                                 mwindow->edl->local_session->set_selectionstart(position);
4520 // Que the CWindow
4521                                 gui->unlock_window();
4522                                 mwindow->cwindow->update(1, 0, 0);
4523                                 gui->lock_window("TrackCanvas::repeat_event");
4524 // Update the faders
4525                                 mwindow->update_plugin_guis();
4526                                 gui->update_patchbay();
4527                         }
4528                         else {
4529                                 mwindow->edl->local_session->set_selectionstart(selection_midpoint);
4530                                 mwindow->edl->local_session->set_selectionend(position);
4531 // Don't que the CWindow
4532                         }
4533                         break;
4534                 }
4535
4536                 mwindow->samplemovement(
4537                         mwindow->edl->local_session->view_start[pane->number] + x_distance,
4538                         pane->number);
4539         }
4540
4541         if(track_movement) {
4542                 mwindow->trackmovement(y_distance, pane->number);
4543         }
4544
4545         return result;
4546 }
4547
4548 int TrackCanvas::button_release_event()
4549 {
4550         int redraw = -1, update_overlay = 0;
4551         int result = 0, load_flags = 0;
4552
4553 // printf("TrackCanvas::button_release_event %d\n",
4554 // mwindow->session->current_operation);
4555         if(active) {
4556                 switch(mwindow->session->current_operation) {
4557                 case DRAG_EDITHANDLE2:
4558                         mwindow->session->current_operation = NO_OPERATION;
4559                         drag_scroll = 0;
4560                         result = 1;
4561
4562                         end_edithandle_selection();
4563                         break;
4564
4565                 case DRAG_EDITHANDLE1:
4566                         mwindow->session->current_operation = NO_OPERATION;
4567                         drag_scroll = 0;
4568                         result = 1;
4569                         break;
4570
4571                 case DRAG_PLUGINHANDLE2:
4572                         mwindow->session->current_operation = NO_OPERATION;
4573                         drag_scroll = 0;
4574                         result = 1;
4575
4576                         end_pluginhandle_selection();
4577                         break;
4578
4579                 case DRAG_PLUGINHANDLE1:
4580                         mwindow->session->current_operation = NO_OPERATION;
4581                         drag_scroll = 0;
4582                         result = 1;
4583                         break;
4584
4585                 case DRAG_SPEED:
4586                         redraw = FORCE_REDRAW;
4587                         load_flags |= LOAD_EDITS;
4588                 case DRAG_FADE:
4589 // delete the drag_auto_gang first and remove out of order keys
4590                         clear_ganged_autos();
4591                 case DRAG_CZOOM:
4592                 case DRAG_PZOOM:
4593                 case DRAG_PLAY:
4594                 case DRAG_MUTE:
4595                 case DRAG_MASK:
4596                 case DRAG_MODE:
4597                 case DRAG_PAN:
4598                 case DRAG_CAMERA_X:
4599                 case DRAG_CAMERA_Y:
4600                 case DRAG_CAMERA_Z:
4601                 case DRAG_PROJECTOR_X:
4602                 case DRAG_PROJECTOR_Y:
4603                 case DRAG_PROJECTOR_Z:
4604                 case DRAG_PLUGINKEY:
4605                         load_flags |= LOAD_AUTOMATION;
4606                         mwindow->session->current_operation = NO_OPERATION;
4607                         mwindow->session->drag_handle = 0;
4608 // Remove any out-of-order keyframe
4609                         if(mwindow->session->drag_auto) {
4610                                 mwindow->session->drag_auto->autos->remove_nonsequential(
4611                                                 mwindow->session->drag_auto);
4612 //                              mwindow->session->drag_auto->autos->optimize();
4613                                 update_overlay = 1;
4614                         }
4615
4616                         mwindow->undo->update_undo_after(_("keyframe"), load_flags);
4617                         result = 1;
4618                         break;
4619
4620                 case DRAG_EDIT:
4621                 case DRAG_GROUP:
4622                 case DRAG_AEFFECT_COPY:
4623                 case DRAG_VEFFECT_COPY:
4624 // Trap in drag stop
4625                         break;
4626
4627                 case DROP_TARGETING: {
4628                         int cursor_x = get_cursor_x(), cursor_y = get_cursor_y();
4629                         Track *track=0;  Edit *edit=0;  PluginSet *pluginset=0;  Plugin *plugin=0;
4630                         drag_cursor_motion(cursor_x, cursor_y,
4631                                 &track, &edit, &pluginset, &plugin);
4632                         double position =
4633                                 mwindow->edl->get_cursor_position(cursor_x, pane->number);
4634                         gui->edit_menu->activate_menu(track, edit, pluginset, plugin, position);
4635                         mwindow->session->current_operation = NO_OPERATION;
4636                         result = 1;
4637                         break; }
4638
4639                 case GROUP_TOGGLE: {
4640                         Edit *edit = mwindow->session->drag_edit;
4641                         if( edit ) {
4642                                 if( shift_down() && edit->is_selected ) {
4643                                         if( edit->group_id > 0 ) {
4644                                                 mwindow->edl->tracks->clear_selected_edits();
4645                                                 mwindow->edl->tracks->del_group(edit->group_id);
4646                                         }
4647                                         else {
4648                                                 int id = mwindow->session->group_number++;
4649                                                 mwindow->edl->tracks->new_group(id);
4650                                         }
4651                                         redraw = 0;
4652                                 }
4653                                 else {
4654                                         if( mwindow->preferences->ctrl_toggle && !ctrl_down() )
4655                                                 mwindow->edl->tracks->clear_selected_edits();
4656                                         edit->set_selected(-1);
4657                                 }
4658                         }
4659                         mwindow->session->current_operation = NO_OPERATION;
4660                         update_overlay = 1;
4661                         result = 1;
4662                         drag_scroll = 0;
4663                         break; }
4664
4665                 default:
4666                         if( mwindow->session->current_operation ) {
4667 //                              if(mwindow->session->current_operation == SELECT_REGION) {
4668 //                                      mwindow->undo->update_undo_after(_("select"), LOAD_SESSION, 0, 0);
4669 //                              }
4670
4671                                 mwindow->session->current_operation = NO_OPERATION;
4672                                 drag_scroll = 0;
4673                                 //result = 0;
4674                                 break;
4675                         }
4676                         break;
4677                 }
4678         }
4679
4680         if (result)
4681                 cursor_update(0);
4682
4683         if(update_overlay) {
4684                 gui->draw_overlays(1);
4685         }
4686         if(redraw >= 0) {
4687                 gui->draw_canvas(redraw, 0);
4688                 gui->flash_canvas(1);
4689         }
4690         return result;
4691 }
4692
4693 int TrackCanvas::do_edit_handles(int cursor_x, int cursor_y, int button_press,
4694         int &rerender, int &update_overlay, int &new_cursor, int &update_cursor)
4695 {
4696         Edit *edit_result = 0;
4697         int handle_result = -1;
4698         int result = 0;
4699
4700         for( Track *track=mwindow->edl->tracks->first; track && !result; track=track->next) {
4701                 for( Edit *edit=track->edits->first; edit && !result; edit=edit->next ) {
4702                         int64_t edit_x, edit_y, edit_w, edit_h;
4703                         edit_dimensions(edit, edit_x, edit_y, edit_w, edit_h);
4704
4705                         if( cursor_x >= edit_x && cursor_x <= edit_x + edit_w &&
4706                                 cursor_y >= edit_y && cursor_y < edit_y + edit_h ) {
4707                                 if( cursor_x < edit_x + HANDLE_W ) {
4708                                         edit_result = edit;
4709                                         handle_result = 0;
4710                                         if( cursor_y >= edit_y+edit_h - HANDLE_W &&
4711                                             track->show_assets() ) {
4712                                                 new_cursor = DOWNLEFT_RESIZE;
4713                                                 if( button_press == LEFT_BUTTON )
4714                                                         result = -1;
4715                                         }
4716                                         else
4717                                                 result = 1;
4718                                 }
4719                                 else if( cursor_x >= edit_x + edit_w - HANDLE_W ) {
4720                                         edit_result = edit;
4721                                         handle_result = 1;
4722                                         if( cursor_y >= edit_y+edit_h - HANDLE_W &&
4723                                             track->show_assets() ) {
4724                                                 new_cursor = DOWNRIGHT_RESIZE;
4725                                                 if( button_press == LEFT_BUTTON )
4726                                                         result = -1;
4727                                         }
4728                                         else
4729                                                 result = 1;
4730                                 }
4731                         }
4732                 }
4733         }
4734
4735         if( result > 0 ) {
4736                 int group_id = edit_result->group_id;
4737                 if( group_id > 0 ) {
4738                         Track *track = edit_result->track;
4739                         Edit *left = 0, *right = 0;
4740                         double start = DBL_MAX, end = DBL_MIN;
4741                         for( Edit *edit=track->edits->first; edit; edit=edit->next ) {
4742                                 if( edit->group_id != group_id ) continue;
4743                                 double edit_start = edit->track->from_units(edit->startproject);
4744                                 if( edit_start < start ) { start = edit_start;  left = edit; }
4745                                 double edit_end = edit->track->from_units(edit->startproject+edit->length);
4746                                 if( edit_end > end ) { end = edit_end;  right = edit; }
4747                         }
4748                         Edit *edit = !handle_result ? left : right;
4749                         if( edit != edit_result )
4750                                 result = 0;
4751                 }
4752         }
4753
4754         update_cursor = 1;
4755         if( result > 0 ) {
4756                 double position = 0;
4757                 if( handle_result == 0 ) {
4758                         position = edit_result->track->from_units(edit_result->startproject);
4759                         new_cursor = LEFT_CURSOR;
4760                 }
4761                 else if( handle_result == 1 ) {
4762                         position = edit_result->track->from_units(edit_result->startproject + edit_result->length);
4763                         new_cursor = RIGHT_CURSOR;
4764                 }
4765
4766 // Reposition cursor
4767                 if( button_press ) {
4768                         mwindow->session->drag_edit = edit_result;
4769                         mwindow->session->drag_handle = handle_result;
4770                         mwindow->session->drag_button = get_buttonpress() - 1;
4771                         mwindow->session->drag_position = position;
4772                         mwindow->session->current_operation = DRAG_EDITHANDLE1;
4773                         mwindow->session->drag_origin_x = get_cursor_x();
4774                         mwindow->session->drag_origin_y = get_cursor_y();
4775                         mwindow->session->drag_start = position;
4776
4777                         rerender = start_selection(position);
4778                         update_overlay = 1;
4779                 }
4780         }
4781         else if( result < 0 ) {
4782                 mwindow->undo->update_undo_before();
4783                 if( !shift_down() ) {
4784                         if( handle_result == 0 )
4785                                 edit_result->hard_left = !edit_result->hard_left;
4786                         else if( handle_result == 1 )
4787                                 edit_result->hard_right = !edit_result->hard_right;
4788                 }
4789                 else {
4790                         int status = handle_result == 0 ? edit_result->hard_left :
4791                                      handle_result == 1 ? edit_result->hard_right : 0;
4792                         int new_status = !status;
4793                         int64_t edit_edge = edit_result->startproject;
4794                         if( handle_result == 1 ) edit_edge += edit_result->length;
4795                         double edge_position = edit_result->track->from_units(edit_edge);
4796                         for( Track *track=mwindow->edl->tracks->first; track!=0; track=track->next ) {
4797                                 int64_t track_position = track->to_units(edge_position, 1);
4798                                 Edit *left_edit = track->edits->editof(track_position, PLAY_FORWARD, 0);
4799                                 if( left_edit ) {
4800                                         int64_t left_edge = left_edit->startproject;
4801                                         double left_position = track->from_units(left_edge);
4802                                         if( EQUIV(edge_position, left_position) ) {
4803                                                 left_edit->hard_left = new_status;
4804                                                 if( left_edit->previous )
4805                                                         left_edit->previous->hard_right = new_status;
4806                                         }
4807                                 }
4808                                 Edit *right_edit = track->edits->editof(track_position, PLAY_REVERSE, 0);
4809                                 if( right_edit ) {
4810                                         int64_t right_edge = right_edit->startproject + right_edit->length;
4811                                         double right_position = track->from_units(right_edge);
4812                                         if( EQUIV(edge_position, right_position) ) {
4813                                                 right_edit->hard_right = new_status;
4814                                                 if( right_edit->next )
4815                                                         right_edit->next->hard_left = new_status;
4816                                         }
4817                                 }
4818                         }
4819                 }
4820                 rerender = update_overlay = 1;
4821                 mwindow->undo->update_undo_after(_("hard_edge"), LOAD_EDITS);
4822                 result = 1;
4823         }
4824
4825         return result;
4826 }
4827
4828 int TrackCanvas::do_plugin_handles(int cursor_x,
4829         int cursor_y,
4830         int button_press,
4831         int &rerender,
4832         int &update_overlay,
4833         int &new_cursor,
4834         int &update_cursor)
4835 {
4836         Plugin *plugin_result = 0;
4837         int handle_result = 0;
4838         int result = 0;
4839
4840         for(Track *track = mwindow->edl->tracks->first;
4841                 track && !result;
4842                 track = track->next) {
4843                 for(int i = 0; i < track->plugin_set.total && !result; i++) {
4844                         PluginSet *plugin_set = track->plugin_set.values[i];
4845                         for(Plugin *plugin = (Plugin*)plugin_set->first;
4846                                 plugin && !result;
4847                                 plugin = (Plugin*)plugin->next) {
4848                                 int64_t plugin_x, plugin_y, plugin_w, plugin_h;
4849                                 plugin_dimensions(plugin, plugin_x, plugin_y, plugin_w, plugin_h);
4850
4851                                 if(cursor_x >= plugin_x && cursor_x <= plugin_x + plugin_w &&
4852                                         cursor_y >= plugin_y && cursor_y < plugin_y + plugin_h) {
4853                                         if(cursor_x < plugin_x + HANDLE_W) {
4854                                                 plugin_result = plugin;
4855                                                 handle_result = 0;
4856                                                 result = 1;
4857                                         }
4858                                         else if(cursor_x >= plugin_x + plugin_w - HANDLE_W) {
4859                                                 plugin_result = plugin;
4860                                                 handle_result = 1;
4861                                                 result = 1;
4862                                         }
4863                                 }
4864                         }
4865
4866                         if(result && shift_down())
4867                                 mwindow->session->trim_edits = plugin_set;
4868                 }
4869         }
4870
4871         update_cursor = 1;
4872         if(result) {
4873                 double position = 0;
4874                 if(handle_result == 0) {
4875                         position = plugin_result->track->from_units(plugin_result->startproject);
4876                         new_cursor = LEFT_CURSOR;
4877                 }
4878                 else if(handle_result == 1) {
4879                         position = plugin_result->track->from_units(plugin_result->startproject + plugin_result->length);
4880                         new_cursor = RIGHT_CURSOR;
4881                 }
4882
4883                 if(button_press) {
4884                         mwindow->session->drag_plugin = plugin_result;
4885                         mwindow->session->drag_handle = handle_result;
4886                         mwindow->session->drag_button = get_buttonpress() - 1;
4887                         mwindow->session->drag_position = position;
4888                         mwindow->session->current_operation = DRAG_PLUGINHANDLE1;
4889                         mwindow->session->drag_origin_x = get_cursor_x();
4890                         mwindow->session->drag_origin_y = get_cursor_y();
4891                         mwindow->session->drag_start = position;
4892
4893                         rerender = start_selection(position);
4894                         update_overlay = 1;
4895                 }
4896         }
4897
4898         return result;
4899 }
4900
4901
4902 int TrackCanvas::do_tracks(int cursor_x, int cursor_y, int button_press)
4903 {
4904         int result = 0;
4905
4906         Track *track=0;  Edit *edit=0;  PluginSet *pluginset=0;  Plugin *plugin=0;
4907         drag_cursor_motion(cursor_x, cursor_y,
4908                 &track, &edit, &pluginset, &plugin);
4909
4910         if( button_press && track ) {
4911                 switch( get_buttonpress() ) {
4912                 case RIGHT_BUTTON: {
4913                         double position =
4914                                 mwindow->edl->get_cursor_position(cursor_x, pane->number);
4915                         gui->track_menu->activate_menu(track, edit, pluginset, plugin, position);
4916                         mwindow->session->current_operation = NO_OPERATION;
4917                         result = 1;
4918                         break; }
4919                 case MIDDLE_BUTTON:
4920                         set_cursor(GRABBED_CURSOR, 0, 1);
4921                         mwindow->session->current_operation = DROP_TARGETING;
4922                         result = 1;
4923                         break;
4924                 }
4925         }
4926
4927         return result;
4928 }
4929
4930 int TrackCanvas::arrow_mode()
4931 {
4932         return mwindow->edl->session->editing_mode == EDITING_ARROW ? 1 : 0;
4933 }
4934 int TrackCanvas::ibeam_mode()
4935 {
4936         return mwindow->edl->session->editing_mode == EDITING_IBEAM ? 1 : 0;
4937 }
4938
4939 int TrackCanvas::do_edits(int cursor_x, int cursor_y, int button_press, int drag_start,
4940         int &redraw, int &rerender, int &new_cursor, int &update_cursor)
4941 {
4942         int result = 0;
4943
4944         for(Track *track = mwindow->edl->tracks->first; track && !result; track = track->next) {
4945                 for(Edit *edit = track->edits->first; edit && !result; edit = edit->next) {
4946                         int64_t edit_x, edit_y, edit_w, edit_h;
4947                         edit_dimensions(edit, edit_x, edit_y, edit_w, edit_h);
4948
4949 // Cursor inside a track
4950 // Cursor inside an edit
4951                         if( cursor_x >= edit_x && cursor_x < edit_x + edit_w &&
4952                             cursor_y >= edit_y && cursor_y < edit_y + edit_h ) {
4953                                 if( button_press && get_buttonpress() == LEFT_BUTTON ) {
4954                                         if( get_double_click() ) {
4955                                                 mwindow->edl->tracks->clear_selected_edits();
4956                                                 mwindow->edl->tracks->select_affected_edits(
4957                                                         edit->track->from_units(edit->startproject),
4958                                                         edit->track, 1);
4959                                                 double start = edit->track->from_units(edit->startproject);
4960                                                 start = mwindow->edl->align_to_frame(start, 0);
4961                                                 mwindow->edl->local_session->set_selectionstart(start);
4962                                                 double end = edit->track->from_units(edit->startproject+edit->length);
4963                                                 end = mwindow->edl->align_to_frame(end, 0);
4964                                                 mwindow->edl->local_session->set_selectionend(end);
4965                                                 result = 1; // Select edit duration or select_region
4966                                         }
4967                                         else if( arrow_mode() || (ibeam_mode() && ctrl_down()) ) {
4968                                                 mwindow->session->drag_edit = edit;
4969                                                 mwindow->session->current_operation = GROUP_TOGGLE;
4970                                                 result = 1;
4971                                         }
4972                                         if( result ) {
4973                                                 rerender = 1;
4974                                                 update_cursor = -1;
4975                                         }
4976                                 }
4977                                 else if( drag_start && track->record ) {
4978                                         mwindow->session->drag_edit = edit;
4979                                         mwindow->session->drag_origin_x = cursor_x;
4980                                         mwindow->session->drag_origin_y = cursor_y;
4981 // Where the drag started, so we know relative position inside the edit later
4982                                         mwindow->session->drag_position =
4983                                                 mwindow->edl->get_cursor_position(cursor_x, pane->number);
4984                                         drag_start = 0; // if unselected "fast" drag
4985                                         if( !edit->silence() && !edit->is_selected ) {
4986                                                 mwindow->edl->tracks->clear_selected_edits();
4987                                                 if( ibeam_mode() ) {
4988                                                         double start = edit->track->from_units(edit->startproject);
4989                                                         mwindow->edl->local_session->set_selectionstart(start);
4990                                                         mwindow->edl->local_session->set_selectionend(start);
4991                                                         edit->set_selected(1);
4992                                                 }
4993                                                 else
4994                                                         mwindow->edl->tracks->select_affected_edits(
4995                                                                 edit->track->from_units(edit->startproject),
4996                                                                 edit->track, 1);
4997                                                 drag_start = 1;
4998                                         }
4999 // Construct list of all affected edits
5000                                         if( drag_start || ibeam_mode() ) {
5001                                                 mwindow->edl->tracks->get_selected_edits(mwindow->session->drag_edits);
5002                                                 if( mwindow->session->drag_edits->size() > 0 ) {
5003                                                         mwindow->session->current_operation = DRAG_EDIT;
5004 // Need to create drag window
5005                                                         int cx, cy;  get_abs_cursor(cx, cy);
5006                                                         gui->drag_popup = new BC_DragWindow(gui,
5007                                                                 mwindow->theme->get_image("clip_icon"), cx, cy);
5008                                                         result = 1;
5009                                                 }
5010                                                 else {
5011                                                         rerender = start_selection(mwindow->session->drag_position);
5012                                                         mwindow->session->current_operation = SELECT_REGION;
5013                                                         update_cursor = 1;
5014                                                 }
5015                                         }
5016                                         else if( edit->is_selected && arrow_mode() ) {
5017                                                 if( mwindow->session->drag_group )
5018                                                         mwindow->session->drag_group->remove_user();
5019                                                 double start_position = 0;
5020                                                 mwindow->session->drag_group =
5021                                                         mwindow->selected_edits_to_clip(0, &start_position,
5022                                                                 &mwindow->session->drag_group_first_track,
5023                                                                 mwindow->edl->session->labels_follow_edits,
5024                                                                 mwindow->edl->session->autos_follow_edits,
5025                                                                 mwindow->edl->session->plugins_follow_edits);
5026                                                 if( mwindow->session->drag_group ) {
5027                                                         mwindow->session->current_operation = DRAG_GROUP;
5028                                                         mwindow->session->drag_group_position = start_position;
5029                                                         mwindow->session->drag_group_edit = edit;
5030                                                         mwindow->session->drag_origin_y = edit_y;
5031                                                         result = 1;
5032                                                 }
5033                                         }
5034                                 }
5035                         }
5036                 }
5037         }
5038         return result;
5039 }
5040
5041
5042 int TrackCanvas::test_track_group(EDL *group, Track *first_track, double &pos)
5043 {
5044         Track *src = group->tracks->first;
5045         for( Track *track=first_track; track && src; track=track->next ) {
5046                 if( !track->record ) continue;
5047                 if( src->data_type != track->data_type ) return -1;
5048                 for( Edit *src_edit=src->edits->first; src_edit; src_edit=src_edit->next ) {
5049                         if( src_edit->silence() ) continue;
5050                         if( edit_intersects(track, src_edit, pos) ) return 0;
5051                 }
5052                 src = src->next;
5053         }
5054         return !src ? 1 : 0;
5055 }
5056
5057 int TrackCanvas::edit_intersects(Track *track, Edit *src_edit, double &pos)
5058 {
5059         if( pos < 0 ) { pos = 0;  return 1; }
5060         int64_t src_start = src_edit->startproject;
5061         int64_t src_end = src_start + src_edit->length;
5062         double new_start = src_edit->track->from_units(src_start) + pos;
5063         double new_end = src_edit->track->from_units(src_end) + pos;
5064         int64_t trk_start = track->to_units(new_start, 1);
5065         int64_t trk_end = track->to_units(new_end, 1);
5066         for( Edit *edit=track->edits->first; edit; edit=edit->next ) {
5067                 if( edit->is_selected || edit->silence() ) continue;
5068                 int64_t edit_start = edit->startproject;
5069                 if( edit_start >= trk_end ) continue;
5070                 int64_t edit_end = edit_start + edit->length;
5071                 if( trk_start >= edit_end ) continue;
5072                 int64_t lt_dist = labs(trk_end - edit_start);
5073                 int64_t rt_dist = labs(edit_end - trk_start);
5074                 int64_t position;
5075                 if( lt_dist < rt_dist ) {
5076                         position = edit_start;
5077                         lt_dist = abs(trk_start - edit_start);
5078                         rt_dist = abs(trk_end - edit_start);
5079                         if( lt_dist > rt_dist )
5080                                 position -= src_end;
5081                 }
5082                 else {
5083                         position = edit_end;
5084                         lt_dist = abs(trk_start - edit_end);
5085                         rt_dist = abs(trk_end - edit_end);
5086                         if( lt_dist > rt_dist )
5087                                 position -= src_end;
5088                 }
5089                 pos = edit->track->from_units(position);
5090                 return 1;
5091         }
5092         return 0;
5093 }
5094
5095 int TrackCanvas::test_resources(int cursor_x, int cursor_y)
5096 {
5097         return 0;
5098 }
5099
5100 int TrackCanvas::do_plugins(int cursor_x, int cursor_y, int drag_start,
5101         int button_press, int &redraw, int &rerender)
5102 {
5103         Plugin *plugin = 0;
5104         int result = 0;
5105         int done = 0;
5106         int64_t x, y, w, h;
5107         Track *track = 0;
5108
5109         for(track = mwindow->edl->tracks->first; track && !done; track = track->next) {
5110                 if(!track->expand_view) continue;
5111
5112                 for(int i = 0; i < track->plugin_set.total && !done; i++) {
5113                         // first check if plugins are visible at all
5114                         if (!track->expand_view)
5115                                 continue;
5116                         PluginSet *plugin_set = track->plugin_set.values[i];
5117                         for(plugin = (Plugin*)plugin_set->first;
5118                                 plugin && !done;
5119                                 plugin = (Plugin*)plugin->next) {
5120                                 plugin_dimensions(plugin, x, y, w, h);
5121                                 if(MWindowGUI::visible(x, x + w, 0, get_w()) &&
5122                                         MWindowGUI::visible(y, y + h, 0, get_h())) {
5123                                         if(cursor_x >= x && cursor_x < x + w &&
5124                                                 cursor_y >= y && cursor_y < y + h) {
5125                                                 done = 1;
5126                                                 break;
5127                                         }
5128                                 }
5129                         }
5130                 }
5131         }
5132
5133         if(plugin) {
5134 // Start plugin popup
5135                 if(button_press) {
5136                         if(get_buttonpress() == RIGHT_BUTTON ) {
5137                                 gui->plugin_menu->update(plugin);
5138                                 gui->plugin_menu->activate_menu();
5139                                 result = 1;
5140                         }
5141                         else if (get_double_click() && !drag_start) {
5142 // Select range of plugin on doubleclick over plugin
5143                                 mwindow->edl->local_session->set_selectionstart(plugin->track->from_units(plugin->startproject));
5144                                 mwindow->edl->local_session->set_selectionend(plugin->track->from_units(plugin->startproject) +
5145                                         plugin->track->from_units(plugin->length));
5146                                 if(mwindow->edl->session->cursor_on_frames) {
5147                                         mwindow->edl->local_session->set_selectionstart(
5148                                                 mwindow->edl->align_to_frame(mwindow->edl->local_session->get_selectionstart(1), 0));
5149                                         mwindow->edl->local_session->set_selectionend(
5150                                                 mwindow->edl->align_to_frame(mwindow->edl->local_session->get_selectionend(1), 1));
5151                                 }
5152                                 rerender = 1;
5153                                 redraw = 1;
5154                                 result = 1;
5155                         }
5156                 }
5157                 else
5158 // Move plugin
5159                 if( drag_start && plugin->track->record && !plugin->silence() ) {
5160                         if( mwindow->edl->session->editing_mode == EDITING_ARROW ) {
5161                                 if( plugin->track->data_type == TRACK_AUDIO )
5162                                         mwindow->session->current_operation = DRAG_AEFFECT_COPY;
5163                                 else if( plugin->track->data_type == TRACK_VIDEO )
5164                                         mwindow->session->current_operation = DRAG_VEFFECT_COPY;
5165
5166                                 mwindow->session->drag_plugin = plugin;
5167                                 mwindow->session->drag_origin_x = cursor_x;
5168                                 mwindow->session->drag_origin_y = cursor_y;
5169                                 // Where the drag started, so we know relative position inside the edit later
5170                                 mwindow->session->drag_position =
5171                                         (double)(cursor_x + mwindow->edl->local_session->view_start[pane->number]) *
5172                                         mwindow->edl->local_session->zoom_sample / mwindow->edl->session->sample_rate;
5173 // Create picon
5174                                 switch(plugin->plugin_type) {
5175                                 case PLUGIN_STANDALONE: {
5176                                         PluginServer *server =
5177                                                 mwindow->scan_plugindb(plugin->title, plugin->track->data_type);
5178                                         if( !server ) break;
5179                                         VFrame *frame = server->picon;
5180                                         if(!frame) {
5181                                                 if(plugin->track->data_type == TRACK_AUDIO) {
5182                                                         frame = mwindow->theme->get_image("aeffect_icon");
5183                                                 }
5184                                                 else {
5185                                                         frame = mwindow->theme->get_image("veffect_icon");
5186                                                 }
5187                                         }
5188                                         int cx, cy;
5189                                         get_abs_cursor(cx, cy);
5190                                         gui->drag_popup = new BC_DragWindow(gui, frame, cx, cy);
5191                                                 break; }
5192
5193                                 case PLUGIN_SHAREDPLUGIN:
5194                                 case PLUGIN_SHAREDMODULE: {
5195                                         VFrame *frame = mwindow->theme->get_image("clip_icon");
5196                                         int cx, cy;
5197                                         get_abs_cursor(cx, cy);
5198                                         gui->drag_popup = new BC_DragWindow(gui, frame, cx, cy);
5199                                         break; }
5200                                 }
5201
5202                                 result = 1;
5203                         }
5204                 }
5205         }
5206
5207         return result;
5208 }
5209
5210 int TrackCanvas::do_transitions(int cursor_x, int cursor_y,
5211         int button_press, int &new_cursor, int &update_cursor)
5212 {
5213         Transition *transition = 0;
5214         int result = 0;
5215         int64_t x, y, w, h;
5216
5217
5218         for( Track *track = mwindow->edl->tracks->first; track && !result; track = track->next ) {
5219                 if( !track->show_transitions() ) continue;
5220
5221                 for( Edit *edit = track->edits->first; edit; edit = edit->next ) {
5222                         if( edit->transition ) {
5223                                 edit_dimensions(edit, x, y, w, h);
5224                                 get_transition_coords(edit, x, y, w, h);
5225
5226                                 if( MWindowGUI::visible(x, x + w, 0, get_w()) &&
5227                                         MWindowGUI::visible(y, y + h, 0, get_h()) ) {
5228                                         if( cursor_x >= x && cursor_x < x + w &&
5229                                                 cursor_y >= y && cursor_y < y + h ) {
5230                                                 transition = edit->transition;
5231                                                 result = 1;
5232                                                 break;
5233                                         }
5234                                 }
5235                         }
5236                 }
5237         }
5238
5239         update_cursor = 1;
5240         if(transition) {
5241                 if(!button_press) {
5242                         new_cursor = UPRIGHT_ARROW_CURSOR;
5243                 }
5244                 else if(get_buttonpress() == RIGHT_BUTTON ) {
5245                         gui->transition_menu->update(transition);
5246                         gui->transition_menu->activate_menu();
5247                 }
5248         }
5249
5250         return result;
5251 }
5252
5253 int TrackCanvas::button_press_event()
5254 {
5255         int result = 0;
5256         int cursor_x, cursor_y;
5257         int new_cursor;
5258
5259         cursor_x = get_cursor_x();
5260         cursor_y = get_cursor_y();
5261         mwindow->session->trim_edits = 0;
5262
5263         if(is_event_win() && cursor_inside()) {
5264 //              double position = mwindow->edl->get_cursor_position(cursor_x, pane->number);
5265
5266                 result = 1;
5267                 if(!active) {
5268                         activate();
5269                 }
5270
5271                 if( get_buttonpress() == LEFT_BUTTON ) {
5272                         gui->stop_transport("TrackCanvas::button_press_event");
5273                 }
5274
5275                 int update_overlay = 0, update_cursor = 0, rerender = 0;
5276
5277                 if(get_buttonpress() == WHEEL_UP) {
5278                         if(shift_down())
5279                                 mwindow->expand_sample();
5280                         else if(ctrl_down())
5281                                 mwindow->move_left(get_w()/ 10);
5282                         else
5283                                 mwindow->move_up(get_h() / 10);
5284                 }
5285                 else if(get_buttonpress() == WHEEL_DOWN) {
5286                         if(shift_down())
5287                                 mwindow->zoom_in_sample();
5288                         else if(ctrl_down())
5289                                 mwindow->move_right(get_w() / 10);
5290                         else
5291                                 mwindow->move_down(get_h() / 10);
5292                 }
5293                 else if(get_buttonpress() == 6) {
5294                         if(ctrl_down())
5295                                 mwindow->move_left(get_w());
5296                         else if(alt_down())
5297                                 mwindow->move_left(get_w() / 20);
5298                         else
5299                                 mwindow->move_left(get_w() / 5);
5300                 }
5301                 else if(get_buttonpress() == 7) {
5302                         if(ctrl_down())
5303                                 mwindow->move_right(get_w());
5304                         else if(alt_down())
5305                                 mwindow->move_right(get_w() / 20);
5306                         else
5307                                 mwindow->move_right(get_w() / 5);
5308                 }
5309                 else {
5310                         if( arrow_mode() ) do {
5311 // Test handles and resource boundaries and highlight a track
5312                                 if( do_transitions(cursor_x, cursor_y,
5313                                                 1, new_cursor, update_cursor) ) break;
5314
5315                                 if( do_keyframes(cursor_x, cursor_y,
5316                                         0, get_buttonpress(), new_cursor,
5317                                         update_cursor, rerender) ) break;
5318 // Test edit boundaries
5319                                 if( do_edit_handles(cursor_x, cursor_y,
5320                                         1, rerender, update_overlay, new_cursor,
5321                                         update_cursor) ) break;
5322 // Test plugin boundaries
5323                                 if( do_plugin_handles(cursor_x, cursor_y,
5324                                         1, rerender, update_overlay, new_cursor,
5325                                         update_cursor) ) break;
5326
5327                                 if( do_edits(cursor_x, cursor_y, 1, 0,
5328                                         update_overlay, rerender, new_cursor,
5329                                         update_cursor) ) break;
5330
5331                                 if( do_plugins(cursor_x, cursor_y, 0, 1,
5332                                         update_cursor, rerender) ) break;
5333
5334                                 if( test_resources(cursor_x, cursor_y) ) break;
5335
5336                                 if( do_tracks(cursor_x, cursor_y, 1) ) break;
5337
5338                                 result = 0;
5339                         } while(0);
5340                         else if( ibeam_mode() ) do {
5341 // Test handles only and select a region
5342                                 double position = mwindow->edl->get_cursor_position(cursor_x, pane->number);
5343 //printf("TrackCanvas::button_press_event %d\n", position);
5344
5345                                 if( do_transitions(cursor_x, cursor_y,
5346                                                 1, new_cursor, update_cursor)) break;
5347                                 if(do_keyframes(cursor_x, cursor_y,
5348                                         0, get_buttonpress(), new_cursor,
5349                                         update_cursor, rerender)) {
5350                                         update_overlay = 1;
5351                                         break;
5352                                 }
5353 // Test edit boundaries
5354                                 if( do_edit_handles(cursor_x, cursor_y,
5355                                         1, rerender, update_overlay, new_cursor, update_cursor) ) break;
5356 // Test plugin boundaries
5357                                 if( do_plugin_handles(cursor_x, cursor_y,
5358                                         1, rerender, update_overlay, new_cursor, update_cursor) ) break;
5359
5360                                 if( do_edits(cursor_x, cursor_y,
5361                                         1, 0, update_cursor, rerender, new_cursor, update_cursor) ) break;
5362
5363                                 if( do_plugins(cursor_x, cursor_y, 0, 1, update_cursor, rerender) ) break;
5364
5365                                 if( do_tracks(cursor_x, cursor_y, 1) ) break;
5366 // Highlight selection
5367                                 if( get_buttonpress() != LEFT_BUTTON ) break;
5368                                 rerender = start_selection(position);
5369                                 mwindow->session->current_operation = SELECT_REGION;
5370                                 update_cursor = 1;
5371                         } while(0);
5372                 }
5373
5374                 if( rerender ) {
5375                         gui->unlock_window();
5376                         mwindow->cwindow->update(1, 0, 0, 0, 1);
5377                         gui->lock_window("TrackCanvas::button_press_event 2");
5378 // Update faders
5379                         mwindow->update_plugin_guis();
5380                         gui->update_patchbay();
5381                 }
5382
5383                 if( update_overlay ) {
5384                         gui->draw_overlays(1);
5385                 }
5386                 if( update_cursor < 0 ) {
5387 // double_click edit
5388                         gui->swindow->update_selection();
5389                         gui->draw_canvas(0, 0);
5390                 }
5391                 if( update_cursor ) {
5392                         gui->update_timebar(0);
5393                         gui->hide_cursor(0);
5394                         gui->show_cursor(1);
5395                         gui->zoombar->update();
5396                         gui->flash_canvas(1);
5397                 }
5398         }
5399
5400         return result;
5401 }
5402
5403 int TrackCanvas::start_selection(double position)
5404 {
5405         int rerender = 0;
5406         position = mwindow->edl->align_to_frame(position, 1);
5407
5408
5409 // Extend a border
5410         if(shift_down())
5411         {
5412                 double midpoint = (mwindow->edl->local_session->get_selectionstart(1) +
5413                         mwindow->edl->local_session->get_selectionend(1)) / 2;
5414
5415                 if(position < midpoint)
5416                 {
5417                         mwindow->edl->local_session->set_selectionstart(position);
5418                         selection_midpoint = mwindow->edl->local_session->get_selectionend(1);
5419 // Que the CWindow
5420                         rerender = 1;
5421                 }
5422                 else
5423                 {
5424                         mwindow->edl->local_session->set_selectionend(position);
5425                         selection_midpoint = mwindow->edl->local_session->get_selectionstart(1);
5426 // Don't que the CWindow for the end
5427                 }
5428         }
5429         else
5430 // Start a new selection
5431         {
5432 //printf("TrackCanvas::start_selection %f\n", position);
5433                 mwindow->edl->local_session->set_selectionstart(position);
5434                 mwindow->edl->local_session->set_selectionend(position);
5435                 selection_midpoint = position;
5436 // Que the CWindow
5437                 rerender = 1;
5438         }
5439
5440         return rerender;
5441 }
5442
5443 void TrackCanvas::end_edithandle_selection()
5444 {
5445         mwindow->modify_edithandles();
5446 }
5447
5448 void TrackCanvas::end_pluginhandle_selection()
5449 {
5450         mwindow->modify_pluginhandles();
5451 }
5452
5453
5454 double TrackCanvas::time_visible()
5455 {
5456         return (double)get_w() *
5457                 mwindow->edl->local_session->zoom_sample /
5458                 mwindow->edl->session->sample_rate;
5459 }
5460
5461
5462 void TrackCanvas::show_message(Auto *current, int show_curve_type, const char *fmt, ...)
5463 {
5464         char string[BCTEXTLEN];
5465         char *cp = string, *ep = cp + sizeof(string)-1;
5466         if( show_curve_type ) {
5467                 cp += snprintf(string, ep-cp, "%-8s ",
5468                         FloatAuto::curve_name(((FloatAuto*)current)->curve_mode));
5469         }
5470         char string2[BCTEXTLEN];
5471         Units::totext(string2,
5472                 current->autos->track->from_units(current->position),
5473                 mwindow->edl->session->time_format,
5474                 mwindow->edl->session->sample_rate,
5475                 mwindow->edl->session->frame_rate,
5476                 mwindow->edl->session->frames_per_foot);
5477         cp += snprintf(cp, ep-cp, "%s", string2);
5478         va_list ap;
5479         va_start(ap, fmt);
5480         vsnprintf(cp, ep-cp, fmt, ap);
5481         va_end(ap);
5482         gui->show_message(string);
5483 }
5484
5485 // Patchbay* TrackCanvas::get_patchbay()
5486 // {
5487 //      if(pane->patchbay) return pane->patchbay;
5488 //      if(gui->total_panes() == 2 &&
5489 //              gui->pane[TOP_LEFT_PANE] &&
5490 //              gui->pane[TOP_RIGHT_PANE])
5491 //              return gui->pane[TOP_LEFT_PANE]->patchbay;
5492 //      if(gui->total_panes() == 4)
5493 //      {
5494 //              if(pane->number == TOP_RIGHT_PANE)
5495 //                      return gui->pane[TOP_LEFT_PANE]->patchbay;
5496 //              else
5497 //                      return gui->pane[BOTTOM_LEFT_PANE]->patchbay;
5498 //      }
5499 //
5500 //      return 0;
5501 // }
5502
5503