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