8d8bfc7c6a58f7deeac606fba58980831e092370
[goodguy/history.git] / cinelerra-5.1 / cinelerra / timebar.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 "bcsignals.h"
23 #include "clip.h"
24 #include "cplayback.h"
25 #include "cursors.h"
26 #include "cwindow.h"
27 #include "edl.h"
28 #include "edlsession.h"
29 #include "filexml.h"
30 #include "fonts.h"
31 #include "labels.h"
32 #include "labeledit.h"
33 #include "localsession.h"
34 #include "maincursor.h"
35 #include "mainundo.h"
36 #include "mbuttons.h"
37 #include "mwindow.h"
38 #include "mwindowgui.h"
39 #include "patchbay.h"
40 #include "preferences.h"
41 #include "recordlabel.h"
42 #include "localsession.h"
43 #include "mainsession.h"
44 #include "theme.h"
45 #include "timebar.h"
46 #include "timelinepane.h"
47 #include "trackcanvas.h"
48 #include "tracks.h"
49 #include "transportque.h"
50 #include "units.h"
51 #include "vframe.h"
52 #include "vwindow.h"
53 #include "vwindowgui.h"
54 #include "zoombar.h"
55
56
57 LabelGUI::LabelGUI(MWindow *mwindow, TimeBar *timebar,
58         int64_t pixel, int y,
59         double position, VFrame **data)
60  : BC_Toggle(translate_pixel(mwindow, pixel), y,
61                 data ? data : mwindow->theme->label_toggle, 0)
62 {
63         this->mwindow = mwindow;
64         this->timebar = timebar;
65         this->gui = 0;
66         this->pixel = pixel;
67         this->position = position;
68         this->label = 0;
69 }
70
71 LabelGUI::~LabelGUI()
72 {
73 }
74
75 int LabelGUI::get_y(MWindow *mwindow, TimeBar *timebar)
76 {
77         return timebar->get_h() -
78                 mwindow->theme->label_toggle[0]->get_h();
79 }
80
81 int LabelGUI::translate_pixel(MWindow *mwindow, int pixel)
82 {
83         int result = pixel - mwindow->theme->label_toggle[0]->get_w() / 2;
84         return result;
85 }
86
87 void LabelGUI::reposition(int flush)
88 {
89         reposition_window(translate_pixel(mwindow, pixel),
90                 BC_Toggle::get_y());
91 }
92
93 int LabelGUI::button_press_event()
94 {
95         int result = 0;
96
97         if( this->is_event_win() && get_buttonpress() == 3 ) {
98                 if( label ) {
99                         int cur_x, cur_y;
100                         get_abs_cursor(cur_x, cur_y, 0);
101                         timebar->label_edit->start(label, cur_x, cur_y);
102                 }
103                 result = 1;
104         } else {
105                 result = BC_Toggle::button_press_event();
106         }
107         if( label )
108                 set_tooltip(this->label->textstr);
109         return result;
110 }
111
112 int LabelGUI::handle_event()
113 {
114         timebar->select_label(position);
115         return 1;
116 }
117
118
119 InPointGUI::InPointGUI(MWindow *mwindow, TimeBar *timebar,
120         int64_t pixel, double position)
121  : LabelGUI(mwindow, timebar,
122         pixel, get_y(mwindow, timebar),
123         position, mwindow->theme->in_point)
124 {
125 //printf("InPointGUI::InPointGUI %d %d\n", pixel, get_y(mwindow, timebar));
126 }
127 InPointGUI::~InPointGUI()
128 {
129 }
130 int InPointGUI::get_y(MWindow *mwindow, TimeBar *timebar)
131 {
132         int result;
133         result = timebar->get_h() -
134                 mwindow->theme->in_point[0]->get_h();
135         return result;
136 }
137
138
139 OutPointGUI::OutPointGUI(MWindow *mwindow, TimeBar *timebar,
140         int64_t pixel, double position)
141  : LabelGUI(mwindow, timebar,
142         pixel, get_y(mwindow, timebar),
143         position, mwindow->theme->out_point)
144 {
145 //printf("OutPointGUI::OutPointGUI %d %d\n", pixel, get_y(mwindow, timebar));
146 }
147 OutPointGUI::~OutPointGUI()
148 {
149 }
150 int OutPointGUI::get_y(MWindow *mwindow, TimeBar *timebar)
151 {
152         return timebar->get_h() -
153                 mwindow->theme->out_point[0]->get_h();
154 }
155
156
157 PresentationGUI::PresentationGUI(MWindow *mwindow, TimeBar *timebar,
158         int64_t pixel, double position)
159  : LabelGUI(mwindow, timebar, pixel, get_y(mwindow, timebar), position)
160 {
161 }
162 PresentationGUI::~PresentationGUI()
163 {
164 }
165
166 TimeBar::TimeBar(MWindow *mwindow, BC_WindowBase *gui,
167         int x, int y, int w, int h)
168  : BC_SubWindow(x, y, w, h)
169 {
170 //printf("TimeBar::TimeBar %d %d %d %d\n", x, y, w, h);
171         this->gui = gui;
172         this->mwindow = mwindow;
173         label_edit = new LabelEdit(mwindow, mwindow->awindow, 0);
174         pane = 0;
175         highlighted = 0;
176 }
177
178 TimeBar::~TimeBar()
179 {
180         delete in_point;
181         delete out_point;
182         delete label_edit;
183         labels.remove_all_objects();
184         presentations.remove_all_objects();
185 }
186
187 void TimeBar::create_objects()
188 {
189         in_point = 0;
190         out_point = 0;
191 //printf("TimeBar::create_objects %d\n", __LINE__);
192         current_operation = TIMEBAR_NONE;
193         set_cursor(UPRIGHT_ARROW_CURSOR, 0, 0);
194         update(0);
195 }
196
197
198 int64_t TimeBar::position_to_pixel(double position)
199 {
200         get_edl_length();
201         return (int64_t)(position / time_per_pixel);
202 }
203
204
205 double TimeBar::pixel_to_position(int pixel)
206 {
207         if( pane ) {
208                 pixel += mwindow->edl->local_session->view_start[pane->number];
209         }
210
211         return (double)pixel *
212                 mwindow->edl->local_session->zoom_sample /
213                 mwindow->edl->session->sample_rate;
214 }
215
216 void TimeBar::update_labels()
217 {
218         int output = 0;
219         EDL *edl = get_edl();
220
221         if( edl ) {
222                 for( Label *current=edl->labels->first; current; current=NEXT ) {
223                         int64_t pixel = position_to_pixel(current->position);
224                         if( pixel >= 0 && pixel < get_w()  ) {
225 // Create new label
226                                 if( output >= labels.total ) {
227                                         LabelGUI *new_label;
228                                         add_subwindow(new_label =
229                                                 new LabelGUI(mwindow,
230                                                         this,
231                                                         pixel,
232                                                         LabelGUI::get_y(mwindow, this),
233                                                         current->position));
234                                         new_label->set_cursor(INHERIT_CURSOR, 0, 0);
235                                         new_label->set_tooltip(current->textstr);
236                                         new_label->label = current;
237                                         labels.append(new_label);
238                                 }
239                                 else
240 // Reposition old label
241                                 {
242                                         LabelGUI *gui = labels.values[output];
243                                         if( gui->pixel != pixel ) {
244                                                 gui->pixel = pixel;
245                                                 gui->reposition(0);
246                                         }
247                                         else {
248                                                 gui->draw_face(1,0);
249                                         }
250
251                                         labels.values[output]->position = current->position;
252                                         labels.values[output]->set_tooltip(current->textstr);
253                                         labels.values[output]->label = current;
254                                 }
255
256                                 if( edl->local_session->get_selectionstart(1) <= current->position &&
257                                     edl->local_session->get_selectionend(1) >= current->position )
258                                         labels.values[output]->update(1);
259                                 else
260                                 if( labels.values[output]->get_value() )
261                                         labels.values[output]->update(0);
262
263                                 output++;
264                         }
265                 }
266         }
267
268 // Delete excess labels
269         while(labels.total > output)
270         {
271                 labels.remove_object();
272         }
273
274 // Get the labels to show
275         show_window(0);
276 }
277
278 void TimeBar::update_highlights()
279 {
280         for( int i = 0; i < labels.total; i++ ) {
281                 LabelGUI *label = labels.values[i];
282                 if( mwindow->edl->equivalent(label->position,
283                                 mwindow->edl->local_session->get_selectionstart(1)) ||
284                     mwindow->edl->equivalent(label->position,
285                                 mwindow->edl->local_session->get_selectionend(1)) ) {
286                         if( !label->get_value() ) label->update(1);
287                 }
288                 else
289                         if( label->get_value() ) label->update(0);
290         }
291
292         if( mwindow->edl->equivalent(mwindow->edl->local_session->get_inpoint(),
293                         mwindow->edl->local_session->get_selectionstart(1)) ||
294                 mwindow->edl->equivalent(mwindow->edl->local_session->get_inpoint(),
295                         mwindow->edl->local_session->get_selectionend(1)) ) {
296                 if( in_point ) in_point->update(1);
297         }
298         else
299                 if( in_point ) in_point->update(0);
300
301         if( mwindow->edl->equivalent(mwindow->edl->local_session->get_outpoint(),
302                         mwindow->edl->local_session->get_selectionstart(1)) ||
303                 mwindow->edl->equivalent(mwindow->edl->local_session->get_outpoint(),
304                         mwindow->edl->local_session->get_selectionend(1)) ) {
305                 if( out_point ) out_point->update(1);
306         }
307         else
308                 if( out_point ) out_point->update(0);
309 }
310
311 void TimeBar::update_points()
312 {
313         EDL *edl = get_edl();
314         int64_t pixel = !edl ? 0 :
315                 position_to_pixel(edl->local_session->get_inpoint());
316
317         if( in_point ) {
318                 if( edl && edl->local_session->inpoint_valid() &&
319                     pixel >= 0 && pixel < get_w() ) {
320                         if( !EQUIV(edl->local_session->get_inpoint(), in_point->position) ||
321                             in_point->pixel != pixel ) {
322                                 in_point->pixel = pixel;
323                                 in_point->position = edl->local_session->get_inpoint();
324                                 in_point->reposition(0);
325                         }
326                         else {
327                                 in_point->draw_face(1, 0);
328                         }
329                 }
330                 else {
331                         delete in_point;
332                         in_point = 0;
333                 }
334         }
335         else
336         if( edl && edl->local_session->inpoint_valid() &&
337             pixel >= 0 && pixel < get_w() ) {
338                 add_subwindow(in_point = new InPointGUI(mwindow,
339                         this, pixel, edl->local_session->get_inpoint()));
340                 in_point->set_cursor(ARROW_CURSOR, 0, 0);
341         }
342
343         pixel = !edl ? 0 :
344                  position_to_pixel(edl->local_session->get_outpoint());
345
346         if( out_point ) {
347                 if( edl && edl->local_session->outpoint_valid() &&
348                     pixel >= 0 && pixel < get_w()) {
349                         if( !EQUIV(edl->local_session->get_outpoint(), out_point->position) ||
350                             out_point->pixel != pixel ) {
351                                 out_point->pixel = pixel;
352                                 out_point->position = edl->local_session->get_outpoint();
353                                 out_point->reposition(0);
354                         }
355                         else {
356                                 out_point->draw_face(1, 0);
357                         }
358                 }
359                 else {
360                         delete out_point;
361                         out_point = 0;
362                 }
363         }
364         else
365         if( edl && edl->local_session->outpoint_valid() &&
366             pixel >= 0 && pixel < get_w() ) {
367                 add_subwindow(out_point = new OutPointGUI(mwindow,
368                         this, pixel, edl->local_session->get_outpoint()));
369                 out_point->set_cursor(ARROW_CURSOR, 0, 0);
370         }
371
372 //      flush();
373 }
374
375 void TimeBar::update_clock(double position)
376 {
377 }
378
379 void TimeBar::update(int flush)
380 {
381         draw_time();
382 // Need to redo these when range is drawn to get the background updated.
383         update_labels();
384         update_points();
385
386
387         EDL *edl = get_edl();
388         int64_t pixel = -1;
389         int x = get_relative_cursor_x();
390 // Draw highlight position
391         if( edl && (highlighted || current_operation == TIMEBAR_DRAG) &&
392             x >= 0 && x < get_w() ) {
393 //printf("TimeBar::update %d %d\n", __LINE__, x);
394                 double position = pixel_to_position(x);
395
396                 position = get_edl()->align_to_frame(position, 0);
397                 pixel = position_to_pixel(position);
398                 update_clock(position);
399         }
400
401         if( pixel < 0 ) {
402                 double position = test_highlight();
403                 if( position >= 0 ) pixel = position_to_pixel(position);
404         }
405
406
407         if( pixel >= 0 && pixel < get_w() ) {
408                 set_color(mwindow->theme->timebar_cursor_color);
409                 set_line_dashes(1);
410 //printf("TimeBar::update %d pane=%d pixel=%jd\n", __LINE__, pane->number, pixel);
411                 draw_line(pixel, 0, pixel, get_h());
412                 set_line_dashes(0);
413         }
414
415
416         if( edl ) {
417                 double playback_start = edl->local_session->playback_start;
418                 if( playback_start >= 0 ) {
419                         int64_t pixel = position_to_pixel(playback_start);
420                         set_color(mwindow->theme->timebar_cursor_color ^ 0x0000ff);
421                         draw_line(pixel, 0, pixel, get_h());
422                         double playback_end = edl->local_session->playback_end;
423                         if( playback_end > playback_start ) {
424                                 pixel = position_to_pixel(playback_end);
425                                 set_color(mwindow->theme->timebar_cursor_color ^ 0x00ff00);
426                                 draw_line(pixel, 0, pixel, get_h());
427                         }
428                 }
429
430                 double position = edl->local_session->get_selectionstart(1);
431                 int64_t pixel = position_to_pixel(position);
432 // Draw insertion point position.
433                 int color = mwindow->theme->timebar_cursor_color;
434                 if( mwindow->preferences->forward_render_displacement )
435                         color ^= 0x00ffff;
436                 set_color(color);
437                 draw_line(pixel, 0, pixel, get_h());
438         }
439
440         update_highlights();
441
442 // Get the labels to show
443         show_window(0);
444         flash(flush);
445 //printf("TimeBar::update %d this=%p %d\n", __LINE__, this, current_operation);
446 }
447
448
449
450 int TimeBar::delete_project()
451 {
452 //      labels->delete_all();
453         return 0;
454 }
455
456 int TimeBar::save(FileXML *xml)
457 {
458 //      labels->save(xml);
459         return 0;
460 }
461
462
463
464
465 void TimeBar::draw_time()
466 {
467 }
468
469 EDL* TimeBar::get_edl()
470 {
471         return mwindow->edl;
472 }
473
474
475
476 void TimeBar::draw_range()
477 {
478
479
480 //printf("TimeBar::draw_range %d %p\n", __LINE__, get_edl());
481         if( has_preview() && get_edl() ) {
482                 int x1, x2;
483                 get_preview_pixels(x1, x2);
484
485 //printf("TimeBar::draw_range %f %d %d\n", edl_length, x1, x2);
486                 draw_3segmenth(0, 0, x1, mwindow->theme->timebar_view_data);
487                 draw_top_background(get_parent(), x1, 0, x2 - x1, get_h());
488                 draw_3segmenth(x2, 0, get_w() - x2, mwindow->theme->timebar_view_data);
489
490                 set_color(BLACK);
491                 draw_line(x1, 0, x1, get_h());
492                 draw_line(x2, 0, x2, get_h());
493
494
495                 EDL *edl = get_edl();
496                 if( edl ) {
497                         int64_t pixel = position_to_pixel(
498                                 edl->local_session->get_selectionstart(1));
499 // Draw insertion point position if this timebar belongs to a window which
500 // has something other than the master EDL.
501                         set_color(mwindow->theme->timebar_cursor_color);
502                         draw_line(pixel, 0, pixel, get_h());
503                 }
504         }
505         else
506                 draw_top_background(get_parent(), 0, 0, get_w(), get_h());
507 }
508
509 void TimeBar::select_label(double position)
510 {
511 }
512
513
514
515 int TimeBar::draw()
516 {
517         return 0;
518 }
519
520 double TimeBar::get_edl_length()
521 {
522         edl_length = get_edl() ? get_edl()->tracks->total_length() : 0;
523         int w1 = get_w()-1;
524         time_per_pixel = !EQUIV(edl_length, 0) ? edl_length/w1 : w1;
525         return edl_length;
526 }
527
528 int TimeBar::get_preview_pixels(int &x1, int &x2)
529 {
530         x1 = 0;  x2 = get_w();
531         get_edl_length();
532         EDL *edl = get_edl();
533         if( edl && !EQUIV(edl_length, 0) ) {
534                 double preview_start = edl->local_session->preview_start;
535                 double preview_end = edl->local_session->preview_end;
536                 if( preview_end < 0 || preview_end > edl_length )
537                         preview_end = edl_length;
538                 if( preview_end >= preview_start ) {
539                         x1 = (int)(preview_start / time_per_pixel);
540                         x2 = (int)(preview_end / time_per_pixel);
541                 }
542         }
543         return 0;
544 }
545
546
547 int TimeBar::test_preview(int buttonpress)
548 {
549         int result = 0;
550
551
552         if( get_edl() && cursor_inside() && buttonpress >= 0 ) {
553                 int x1, x2, x = get_relative_cursor_x();
554                 get_preview_pixels(x1, x2);
555 //printf("TimeBar::test_preview %d %d %d\n", x1, x2, x);
556 // Inside left handle
557                 if( x >= x1 - HANDLE_W && x < x1 + HANDLE_W &&
558 // Ignore left handle if both handles are up against the left side
559                     x2 > HANDLE_W ) {
560                         if( buttonpress ) {
561                                 current_operation = TIMEBAR_DRAG_LEFT;
562                                 start_position = get_edl()->local_session->preview_start;
563                                 start_cursor_x = x;
564                         }
565                         else if( get_cursor() != LEFT_CURSOR )
566                                 set_cursor(LEFT_CURSOR, 0, 1);
567                         result = 1;
568                 }
569 // Inside right handle
570                 else if( x >= x2 - HANDLE_W && x < x2 + HANDLE_W &&
571 // Ignore right handle if both handles are up against the right side
572                     x1 < get_w() - HANDLE_W ) {
573                         if( buttonpress ) {
574                                 current_operation = TIMEBAR_DRAG_RIGHT;
575                                 start_position = get_edl()->local_session->preview_end;
576                                 if( start_position < 0 || start_position > edl_length )
577                                         start_position = edl_length;
578                                 start_cursor_x = x;
579                         }
580                         else if( get_cursor() != RIGHT_CURSOR )
581                                 set_cursor(RIGHT_CURSOR, 0, 1);
582                         result = 1;
583                 }
584 // Inside preview
585                 else if( get_button_down() && get_buttonpress() == 3 &&
586                     x >= x1 && x < x2 ) {
587                         if( buttonpress ) {
588                                 current_operation = TIMEBAR_DRAG_CENTER;
589                                 starting_start_position = get_edl()->local_session->preview_start;
590                                 starting_end_position = get_edl()->local_session->preview_end;
591                                 if( starting_end_position < 0 || starting_end_position > edl_length )
592                                         starting_end_position = edl_length;
593                                 start_cursor_x = x;
594                         }
595                         if( get_cursor() != HSEPARATE_CURSOR )
596                                 set_cursor(HSEPARATE_CURSOR, 0, 1);
597                         result = 1;
598                 }
599         }
600
601         if( !result && get_cursor() != ARROW_CURSOR )
602                 set_cursor(ARROW_CURSOR, 0, 1);
603
604
605         return result;
606 }
607
608 int TimeBar::move_preview(int &redraw)
609 {
610         int result = 0, x = get_relative_cursor_x();
611         switch( current_operation ) {
612         case TIMEBAR_DRAG_LEFT: {
613                 get_edl()->local_session->preview_start =
614                         start_position + time_per_pixel * (x - start_cursor_x);
615                 double preview_end = get_edl()->local_session->preview_end;
616                 if( preview_end < 0 || preview_end > edl_length )
617                         preview_end = get_edl()->local_session->preview_end = edl_length;
618                 CLAMP(get_edl()->local_session->preview_start, 0, preview_end);
619                 result = 1;
620                 break; }
621         case TIMEBAR_DRAG_RIGHT: {
622                 double preview_end = get_edl()->local_session->preview_end =
623                         start_position + time_per_pixel * (x - start_cursor_x);
624                 double preview_start = get_edl()->local_session->preview_start;
625                 if( preview_end >= edl_length && !preview_start ) {
626                         get_edl()->local_session->preview_end = -1;
627                         if( preview_start > preview_end )
628                                 preview_start = get_edl()->local_session->preview_start = preview_end;
629                 }
630                 else
631                         CLAMP(get_edl()->local_session->preview_end, preview_start, edl_length);
632                 result = 1;
633                 break; }
634         case TIMEBAR_DRAG_CENTER: {
635                 double dt = time_per_pixel * (x - start_cursor_x);
636                 get_edl()->local_session->preview_start = starting_start_position + dt;
637                 get_edl()->local_session->preview_end = starting_end_position + dt;
638                 if( get_edl()->local_session->preview_start < 0 ) {
639                         get_edl()->local_session->preview_end -= get_edl()->local_session->preview_start;
640                         get_edl()->local_session->preview_start = 0;
641                 }
642                 else
643                 if( get_edl()->local_session->preview_end > edl_length ) {
644                         get_edl()->local_session->preview_start -= get_edl()->local_session->preview_end - edl_length;
645                         get_edl()->local_session->preview_end = edl_length;
646                 }
647                 result = 1;
648                 break; }
649         }
650
651 //printf("TimeBar::move_preview %d %d\n", __LINE__, current_operation);
652
653         if( result ) {
654                 update_preview();
655                 redraw = 1;
656         }
657 //printf("TimeBar::move_preview %d %d\n", __LINE__, current_operation);
658
659         return result;
660 }
661
662 void TimeBar::update_preview()
663 {
664 }
665
666 int TimeBar::samplemovement()
667 {
668         return 0;
669 }
670
671 void TimeBar::stop_playback()
672 {
673 }
674
675 int TimeBar::button_press_event()
676 {
677         int result = 0;
678         if( is_event_win() && cursor_above() ) {
679                 if( has_preview() && get_buttonpress() == 3 ) {
680                         result = test_preview(1);
681                 }
682 // Change time format
683                 else if( ctrl_down() ) {
684                         if( get_buttonpress() == 1 )
685                                 mwindow->next_time_format();
686                         else
687                         if( get_buttonpress() == 2 )
688                                 mwindow->prev_time_format();
689                         result = 1;
690                 }
691                 else if( get_buttonpress() == 1 ) {
692                         stop_playback();
693
694 // Select region between two labels
695                         if( get_double_click() ) {
696                                 int x = get_relative_cursor_x();
697                                 double position = pixel_to_position(x);
698 // Test labels
699                                 select_region(position);
700                         }
701                         else {
702
703 // Reposition highlight cursor
704                                 update_cursor();
705                                 current_operation = TIMEBAR_DRAG;
706                                 activate_timeline();
707                         }
708                         result = 1;
709                 }
710         }
711         return result;
712 }
713
714 void TimeBar::activate_timeline()
715 {
716         mwindow->gui->activate_timeline();
717 }
718
719 int TimeBar::cursor_motion_event()
720 {
721         int result = 0;
722         int redraw = 0;
723
724 //printf("TimeBar::cursor_motion_event %d %p %d\n", __LINE__, this, current_operation);
725         switch( current_operation )
726         {
727                 case TIMEBAR_DRAG:
728                 {
729                         update_cursor();
730                         handle_mwindow_drag();
731                         result = 1;
732 //printf("TimeBar::cursor_motion_event %d %d\n", __LINE__, current_operation);
733                         break;
734                 }
735
736
737                 case TIMEBAR_DRAG_LEFT:
738                 case TIMEBAR_DRAG_RIGHT:
739                 case TIMEBAR_DRAG_CENTER:
740                         if( has_preview() )
741                                 result = move_preview(redraw);
742                         break;
743
744                 default:
745                         if( cursor_above() ) {
746                                 highlighted = 1;
747                                 redraw = 1;
748                         }
749
750 //printf("TimeBar::cursor_motion_event 20\n");
751                         if( has_preview() )
752                                 result = test_preview(0);
753 //printf("TimeBar::cursor_motion_event 30\n");
754                         break;
755         }
756
757
758 //printf("TimeBar::cursor_motion_event %d %d\n", __LINE__, current_operation);
759         if( redraw ) {
760                 update(1);
761         }
762 //printf("TimeBar::cursor_motion_event %d %p %d\n", __LINE__, this, current_operation);
763
764         return result;
765 }
766
767 int TimeBar::cursor_leave_event()
768 {
769         if( highlighted ) {
770                 highlighted = 0;
771                 update(1);
772         }
773         return 0;
774 }
775
776 int TimeBar::button_release_event()
777 {
778 //printf("TimeBar::button_release_event %d %d\n", __LINE__, current_operation);
779         int result = 0;
780         int need_redraw = 0;
781         switch( current_operation )
782         {
783                 case TIMEBAR_DRAG:
784                         mwindow->gui->get_focused_pane()->canvas->stop_dragscroll();
785                         current_operation = TIMEBAR_NONE;
786                         need_redraw = 1;
787                         result = 1;
788                         break;
789
790                 default:
791                         if( current_operation != TIMEBAR_NONE ) {
792                                 current_operation = TIMEBAR_NONE;
793                                 result = 1;
794                         }
795                         break;
796         }
797
798         if( (!cursor_above() && highlighted) || need_redraw ) {
799                 highlighted = 0;
800                 update(1);
801         }
802
803         return result;
804 }
805
806 // Update the selection cursor during a dragging operation
807 void TimeBar::update_cursor()
808 {
809 }
810
811 void TimeBar::handle_mwindow_drag()
812 {
813 }
814
815 int TimeBar::select_region(double position)
816 {
817         Label *start = 0, *end = 0, *current;
818         for( current = mwindow->edl->labels->first; current; current = NEXT ) {
819                 if( current->position > position ) {
820                         end = current;
821                         break;
822                 }
823         }
824
825         for( current = mwindow->edl->labels->last ; current; current = PREVIOUS ) {
826                 if( current->position <= position ) {
827                         start = current;
828                         break;
829                 }
830         }
831
832 // Select region
833         if( end != start ) {
834                 if( !start )
835                         mwindow->edl->local_session->set_selectionstart(0);
836                 else
837                         mwindow->edl->local_session->set_selectionstart(start->position);
838
839                 if( !end )
840                         mwindow->edl->local_session->set_selectionend(mwindow->edl->tracks->total_length());
841                 else
842                         mwindow->edl->local_session->set_selectionend(end->position);
843         }
844         else
845         if( end || start ) {
846                 mwindow->edl->local_session->set_selectionstart(start->position);
847                 mwindow->edl->local_session->set_selectionend(start->position);
848         }
849
850 // Que the CWindow
851         mwindow->cwindow->update(1, 0, 0);
852         mwindow->gui->hide_cursor(0);
853         mwindow->gui->draw_cursor(1);
854         mwindow->gui->flash_canvas(0);
855         mwindow->gui->activate_timeline();
856         mwindow->gui->zoombar->update();
857         update_highlights();
858         return 0;
859 }
860
861
862
863
864 int TimeBar::delete_arrows()
865 {
866         return 0;
867 }
868
869 double TimeBar::test_highlight()
870 {
871         return -1;
872 }
873
874