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