Minitimeline: show markers immediately left/right of viewpoint
[ardour.git] / gtk2_ardour / mini_timeline.cc
1 /*
2  * Copyright (C) 2016 Robin Gareus <robin@gareus.org>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17  */
18
19 #include "ardour/audioengine.h"
20 #include "ardour/session.h"
21 #include "ardour/tempo.h"
22
23 #include "gtkmm2ext/gui_thread.h"
24 #include "gtkmm2ext/keyboard.h"
25
26 #include "canvas/colors.h"
27 #include "canvas/utils.h"
28
29 #include "ardour_ui.h"
30 #include "public_editor.h"
31 #include "main_clock.h"
32 #include "mini_timeline.h"
33 #include "timers.h"
34 #include "tooltips.h"
35 #include "ui_config.h"
36
37 #include "pbd/i18n.h"
38
39 #define PADDING 3
40 #define BBT_BAR_CHAR "|"
41
42 using namespace ARDOUR;
43
44 MiniTimeline::MiniTimeline ()
45         : _last_update_frame (-1)
46         , _clock_mode (AudioClock::Timecode)
47         , _time_width (0)
48         , _time_height (0)
49         , _n_labels (0)
50         , _px_per_sample (0)
51         , _time_granularity (0)
52         , _time_span_samples (0)
53         , _marker_height (0)
54         , _pointer_x (-1)
55         , _pointer_y (-1)
56         , _minitl_context_menu (0)
57 {
58         add_events (Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK|Gdk::BUTTON_RELEASE_MASK|Gdk::BUTTON_PRESS_MASK|Gdk::POINTER_MOTION_MASK|Gdk::SCROLL_MASK);
59
60         _layout = Pango::Layout::create (get_pango_context());
61
62         UIConfiguration::instance().ColorsChanged.connect (sigc::mem_fun (*this, &MiniTimeline::set_colors));
63         UIConfiguration::instance().DPIReset.connect (sigc::mem_fun (*this, &MiniTimeline::on_name_changed));
64         UIConfiguration::instance().DPIReset.connect (sigc::mem_fun (*this, &MiniTimeline::on_name_changed));
65
66         set_name ("minitimeline");
67
68         Location::name_changed.connect (marker_connection, invalidator (*this), boost::bind (&MiniTimeline::update_minitimeline, this), gui_context ());
69         Location::end_changed.connect (marker_connection, invalidator (*this), boost::bind (&MiniTimeline::update_minitimeline, this), gui_context ());
70         Location::start_changed.connect (marker_connection, invalidator (*this), boost::bind (&MiniTimeline::update_minitimeline, this), gui_context ());
71         Location::flags_changed.connect (marker_connection, invalidator (*this), boost::bind (&MiniTimeline::update_minitimeline, this), gui_context ());
72
73         ARDOUR_UI_UTILS::set_tooltip (*this,
74                         string_compose (_("<b>Navigation Timeline</b>. Use left-click to locate to time position or marker; scroll-wheel to jump, hold %1 for fine gained and %2 + %3 for extra-fine grained control. Right-click to set display range. The display unit is defined by the primary clock."),
75                                 Gtkmm2ext::Keyboard::primary_modifier_name(),
76                                 Gtkmm2ext::Keyboard::primary_modifier_name (),
77                                 Gtkmm2ext::Keyboard::secondary_modifier_name ()));
78 }
79
80 MiniTimeline::~MiniTimeline ()
81 {
82         delete _minitl_context_menu;
83         _minitl_context_menu = 0;
84 }
85
86 void
87 MiniTimeline::session_going_away ()
88 {
89         super_rapid_connection.disconnect ();
90         session_connection.drop_connections ();
91         SessionHandlePtr::session_going_away ();
92         _jumplist.clear ();
93         delete _minitl_context_menu;
94         _minitl_context_menu = 0;
95 }
96
97 void
98 MiniTimeline::set_session (Session* s)
99 {
100         SessionHandlePtr::set_session (s);
101         if (!s) {
102                 return;
103         }
104
105         assert (!super_rapid_connection.connected ());
106         super_rapid_connection = Timers::super_rapid_connect (
107                         sigc::mem_fun (*this, &MiniTimeline::super_rapid_update)
108                         );
109
110         _session->config.ParameterChanged.connect (session_connection,
111                         invalidator (*this),
112                         boost::bind (&MiniTimeline::parameter_changed, this, _1), gui_context()
113                         );
114         _session->locations()->added.connect (session_connection,
115                         invalidator (*this),
116                         boost::bind (&MiniTimeline::update_minitimeline, this), gui_context()
117                         );
118         _session->locations()->removed.connect (session_connection,
119                         invalidator (*this),
120                         boost::bind (&MiniTimeline::update_minitimeline, this), gui_context()
121                         );
122         _session->locations()->changed.connect (session_connection,
123                         invalidator (*this),
124                         boost::bind (&MiniTimeline::update_minitimeline, this), gui_context()
125                         );
126
127         _jumplist.clear ();
128         calculate_time_spacing ();
129         update_minitimeline ();
130 }
131
132 void
133 MiniTimeline::on_style_changed (const Glib::RefPtr<Gtk::Style>& old_style)
134 {
135         CairoWidget::on_style_changed (old_style);
136         set_colors ();
137         calculate_time_width ();
138 }
139
140 void
141 MiniTimeline::on_name_changed ()
142 {
143         set_colors ();
144         calculate_time_width ();
145
146         if (is_realized()) {
147                 queue_resize ();
148         }
149 }
150
151 void
152 MiniTimeline::set_colors ()
153 {
154         // TODO  UIConfiguration::instance().color & font
155 }
156
157 void
158 MiniTimeline::parameter_changed (std::string const& p)
159 {
160         if (p == "minitimeline-span") {
161                 calculate_time_spacing ();
162                 update_minitimeline ();
163         }
164 }
165
166 void
167 MiniTimeline::on_size_request (Gtk::Requisition* req)
168 {
169         req->width = req->height = 0;
170         CairoWidget::on_size_request (req);
171
172         req->width = std::max (req->width, 1);
173         req->height = std::max (req->height, 20);
174 }
175
176 void
177 MiniTimeline::on_size_allocate (Gtk::Allocation& alloc)
178 {
179         CairoWidget::on_size_allocate (alloc);
180         calculate_time_spacing ();
181 }
182
183 void
184 MiniTimeline::set_span (framecnt_t ts)
185 {
186         assert (_session);
187         if (_session->config.get_minitimeline_span () == ts) {
188                 return;
189         }
190
191         _session->config.set_minitimeline_span (ts);
192         calculate_time_spacing ();
193         update_minitimeline ();
194 }
195
196 void
197 MiniTimeline::super_rapid_update ()
198 {
199         if (!_session || !_session->engine().running() || !is_mapped ()) {
200                 return;
201         }
202         framepos_t const frame = PublicEditor::instance().playhead_cursor_sample ();
203         AudioClock::Mode m = ARDOUR_UI::instance()->primary_clock->mode();
204
205         bool change = false;
206         if (fabs ((_last_update_frame - frame) * _px_per_sample) >= 1.0) {
207                 change = true;
208         }
209
210         if (m != _clock_mode) {
211                 _clock_mode = m;
212                 calculate_time_width ();
213                 change = true;
214         }
215
216         if (_clock_mode == AudioClock::BBT) {
217                 // TODO check if tempo-map changed
218                 change = true;
219         }
220
221         if (change) {
222                 _last_update_frame = frame;
223                 update_minitimeline ();
224         }
225 }
226
227 void
228 MiniTimeline::update_minitimeline ()
229 {
230         CairoWidget::set_dirty ();
231 }
232
233 void
234 MiniTimeline::calculate_time_width ()
235 {
236         switch (_clock_mode) {
237                 case AudioClock::Timecode:
238                         _layout->set_text (" 88:88:88,888 ");
239                         break;
240                 case AudioClock::BBT:
241                         _layout->set_text ("888|88|8888");
242                         break;
243                 case AudioClock::MinSec:
244                         _layout->set_text ("88:88:88,88");
245                         break;
246                 case AudioClock::Frames:
247                         _layout->set_text ("8888888888");
248                         break;
249         }
250         _layout->get_pixel_size (_time_width, _time_height);
251 }
252
253 void
254 MiniTimeline::calculate_time_spacing ()
255 {
256         _n_labels = floor (get_width () / (_time_width * 1.15));
257
258         if (_n_labels == 0 || !_session) {
259                 return;
260         }
261
262         const framecnt_t time_span = _session->config.get_minitimeline_span () / 2;
263         _time_span_samples = time_span * _session->nominal_frame_rate ();
264         _time_granularity = _session->nominal_frame_rate () * ceil (2. * time_span / _n_labels);
265         _px_per_sample = get_width () / (2. * _time_span_samples);
266         //_px_per_sample = 1.0 / round (1.0 / _px_per_sample);
267 }
268
269 void
270 MiniTimeline::format_time (framepos_t when)
271 {
272         switch (_clock_mode) {
273                 case AudioClock::Timecode:
274                         {
275                                 Timecode::Time TC;
276                                 _session->timecode_time (when, TC);
277                                 // chop of leading space or minus.
278                                 _layout->set_text (Timecode::timecode_format_time (TC).substr(1));
279                         }
280                         break;
281                 case AudioClock::BBT:
282                         {
283                                 char buf[64];
284                                 Timecode::BBT_Time BBT = _session->tempo_map().bbt_at_frame (when);
285                                 snprintf (buf, sizeof (buf), "%03" PRIu32 BBT_BAR_CHAR "%02" PRIu32 BBT_BAR_CHAR "%04" PRIu32,
286                                                 BBT.bars, BBT.beats, BBT.ticks);
287                                 _layout->set_text (buf);
288                         }
289                         break;
290                 case AudioClock::MinSec:
291                         {
292                                 char buf[32];
293                                 AudioClock::print_minsec (when, buf, sizeof (buf), _session->frame_rate());
294                                 _layout->set_text (std::string(buf).substr(1));
295                         }
296                         break;
297                 case AudioClock::Frames:
298                         {
299                                 char buf[32];
300                                 snprintf (buf, sizeof (buf), "%" PRId64, when);
301                                 _layout->set_text (buf);
302                         }
303                         break;
304         }
305 }
306
307 void
308 MiniTimeline::draw_dots (cairo_t* cr, int left, int right, int y, ArdourCanvas::Color color)
309 {
310         if (left + 1 >= right) {
311                 return;
312         }
313         cairo_move_to (cr, left + .5, y + .5);
314         cairo_line_to (cr, right - .5, y + .5);
315         ArdourCanvas::set_source_rgb_a(cr, color, 0.3);
316         const double dashes[] = { 0, 1 };
317         cairo_set_dash (cr, dashes, 2, 1);
318         cairo_set_line_cap (cr, CAIRO_LINE_CAP_ROUND);
319         cairo_set_line_width (cr, 1.0);
320         cairo_stroke (cr);
321         cairo_set_dash (cr, 0, 0, 0);
322 }
323
324 int
325 MiniTimeline::draw_mark (cairo_t* cr, int x0, int x1, const std::string& label, bool& prelight)
326 {
327         int h = _marker_height;
328         /* ArdourMarker shape
329          * MH = 13
330          *
331          * Mark:
332          *
333          *  (0,0)   --  (6,0)
334          *    |           |
335          *    |           |
336          * (0,MH*.4)  (6,MH*.4)
337          *     \         /
338          *        (3,MH)
339          */
340
341         const int y = PADDING;
342         int w2 = (h - 1) / 4;
343         double h0 = h * .4;
344         double h1 = h - h0;
345
346         int lw, lh;
347         _layout->set_text (label);
348         _layout->get_pixel_size (lw, lh);
349         int rw = std::min (x1, x0 + w2 + lw + 2);
350
351         if (_pointer_y >= 0 && _pointer_y <= y + h && _pointer_x >= x0 - w2 && _pointer_x <= rw) {
352                 prelight = true;
353         }
354
355         // TODO cache in set_colors()
356         uint32_t color = UIConfiguration::instance().color (
357                         prelight ? "entered marker" : "location marker");
358
359         double r, g, b, a;
360         ArdourCanvas::color_to_rgba (color, r, g, b, a);
361
362         if (rw < x0) {
363                 rw = x1;
364         } else {
365                 cairo_save (cr);
366                 cairo_rectangle (cr, x0, y, rw - x0, h);
367                 cairo_set_source_rgba (cr, r, g, b, 0.5); // this should use a shaded color
368                 cairo_fill_preserve (cr);
369                 cairo_clip (cr);
370
371                 // marker label
372                 cairo_move_to (cr, x0 + w2, y + .5 * (h - lh));
373                 cairo_set_source_rgb (cr, 0, 0, 0);
374                 pango_cairo_show_layout (cr, _layout->gobj());
375                 cairo_restore (cr);
376         }
377
378         // draw marker on top
379         cairo_move_to (cr, x0 - .5, y + .5);
380         cairo_rel_line_to (cr, -w2 , 0);
381         cairo_rel_line_to (cr, 0, h0);
382         cairo_rel_line_to (cr, w2, h1);
383         cairo_rel_line_to (cr, w2, -h1);
384         cairo_rel_line_to (cr, 0, -h0);
385         cairo_close_path (cr);
386         cairo_set_source_rgba (cr, r, g, b, 1.0);
387         cairo_set_line_width (cr, 1.0);
388         cairo_stroke_preserve (cr);
389         cairo_fill (cr);
390
391         return rw;
392 }
393
394 int
395 MiniTimeline::draw_edge (cairo_t* cr, int x0, int x1, bool left, const std::string&, bool& prelight)
396 {
397         int h = _marker_height;
398         int w2 = (h - 1) / 4;
399
400         const int y = PADDING;
401         const double yc = rint (h * .5);
402         const double dy = h * .4;
403
404         double px, dx;
405         if (left) {
406                 x1 = std::min (x1, x0 + 2 * w2);
407                 px = x0;
408                 dx = 2 * w2;
409         } else {
410                 x0 = std::max (x0, x1 - 2 * w2);
411                 px = x1;
412                 dx = -2 * w2;
413         }
414         if (x1 - x0 < 2 * w2) {
415                 return left ? x0 : x1;
416         }
417
418         if (_pointer_y >= 0 && _pointer_y <= y + h && _pointer_x >= x0 && _pointer_x <= x1) {
419                 prelight = true;
420         }
421
422         // TODO cache in set_colors()
423         uint32_t color = UIConfiguration::instance().color (
424                         prelight ? "entered marker" : "location marker");
425
426         double r, g, b, a;
427         ArdourCanvas::color_to_rgba (color, r, g, b, a);
428
429         // draw arrow
430         cairo_move_to (cr, px - .5, PADDING + yc - .5);
431         cairo_rel_line_to (cr, dx , dy);
432         cairo_rel_line_to (cr, 0, -2. * dy);
433         cairo_close_path (cr);
434         cairo_set_source_rgba (cr, r, g, b, 1.0);
435         cairo_set_line_width (cr, 1.0);
436         cairo_stroke_preserve (cr);
437         cairo_fill (cr);
438
439         return left ? x1 : x0;
440 }
441
442
443 struct LocationMarker {
444         LocationMarker (const std::string& l, framepos_t w)
445                 : label (l), when (w) {}
446         std::string label;
447         framepos_t  when;
448 };
449
450 struct LocationMarkerSort {
451         bool operator() (const LocationMarker& a, const LocationMarker& b) {
452                 return (a.when < b.when);
453         }
454 };
455
456 void
457 MiniTimeline::render (Cairo::RefPtr<Cairo::Context> const& ctx, cairo_rectangle_t*)
458 {
459         cairo_t* cr = ctx->cobj();
460         // TODO cache, set_colors()
461         ArdourCanvas::Color base = UIConfiguration::instance().color ("ruler base");
462         ArdourCanvas::Color text = UIConfiguration::instance().color ("ruler text");
463
464         if (_n_labels == 0) {
465                 return;
466         }
467
468         const int width = get_width ();
469         const int height = get_height ();
470
471         Gtkmm2ext::rounded_rectangle (cr, 0, 0, width, height, 4);
472         ArdourCanvas::set_source_rgba(cr, base);
473         cairo_fill (cr);
474
475         Gtkmm2ext::rounded_rectangle (cr, PADDING, PADDING, width - PADDING - PADDING, height - PADDING - PADDING, 4);
476         cairo_clip (cr);
477
478         if (_session == 0) {
479                 return;
480         }
481
482         /* time */
483         const framepos_t p = _last_update_frame;
484         const framepos_t lower = (std::max ((framepos_t)0, (p - _time_span_samples)) / _time_granularity) * _time_granularity;
485
486         int dot_left = width * .5 + (lower - p) * _px_per_sample;
487         for (int i = 0; i < 2 + _n_labels; ++i) {
488                 framepos_t when = lower + i * _time_granularity;
489                 double xpos = width * .5 + (when - p) * _px_per_sample;
490
491                 // TODO round to nearest display TC in +/- 1px
492                 // prefer to display BBT |0  or .0
493
494                 int lw, lh;
495                 format_time (when);
496                 _layout->get_pixel_size (lw, lh);
497
498                 int x0 = xpos - lw / 2.0;
499                 int y0 = height - PADDING - _time_height;
500
501                 draw_dots (cr, dot_left, x0, y0 + _time_height * .5, text);
502
503                 cairo_move_to (cr, x0, y0);
504                 ArdourCanvas::set_source_rgba(cr, text);
505                 pango_cairo_show_layout (cr, _layout->gobj());
506                 dot_left = x0 + lw;
507         }
508         draw_dots (cr, dot_left, width, height - PADDING - _time_height * .5, text);
509
510         /* locations */
511         framepos_t lmin = std::max ((framepos_t)0, (p - _time_span_samples));
512         framepos_t lmax = p + _time_span_samples;
513
514         int tw, th;
515         _layout->set_text (X_("Marker@"));
516         _layout->get_pixel_size (tw, th);
517
518         _marker_height = th + 2;
519         assert (_marker_height > 4);
520         const int mw = (_marker_height - 1) / 4;
521
522         lmin -= mw / _px_per_sample;
523         lmax += mw / _px_per_sample;
524
525         std::vector<LocationMarker> lm;
526
527         const Locations::LocationList& ll (_session->locations ()->list ());
528         for (Locations::LocationList::const_iterator l = ll.begin(); l != ll.end(); ++l) {
529                 if ((*l)->is_session_range ()) {
530                         lm.push_back (LocationMarker(_("start"), (*l)->start ()));
531                         lm.push_back (LocationMarker(_("end"), (*l)->end ()));
532                         continue;
533                 }
534
535                 if (!(*l)->is_mark () || (*l)->name().substr (0, 4) == "xrun") {
536                         continue;
537                 }
538
539                 lm.push_back (LocationMarker((*l)->name(), (*l)->start ()));
540         }
541
542         _jumplist.clear ();
543
544         LocationMarkerSort location_marker_sort;
545         std::sort (lm.begin(), lm.end(), location_marker_sort);
546
547         std::vector<LocationMarker>::const_iterator outside_left = lm.end();
548         std::vector<LocationMarker>::const_iterator outside_right = lm.end();
549         int left_limit = 0;
550         int right_limit = 0;
551         int id = 0;
552
553         for (std::vector<LocationMarker>::const_iterator l = lm.begin(); l != lm.end(); ++id) {
554                 framepos_t when = (*l).when;
555                 if (when < lmin) {
556                         outside_left = l;
557                         if (++l != lm.end()) {
558                                 left_limit = floor (width * .5 + ((*l).when - p) * _px_per_sample) - 1 - mw;
559                         } else {
560                                 left_limit = width;
561                         }
562                         continue;
563                 }
564                 if (when > lmax) {
565                         outside_right = l;
566                         break;
567                 }
568                 int x0 = floor (width * .5 + (when - p) * _px_per_sample);
569                 int x1 = width;
570                 const std::string& label = (*l).label;
571                 if (++l != lm.end()) {
572                         x1 = floor (width * .5 + ((*l).when - p) * _px_per_sample) - 1 - mw;
573                 }
574                 bool prelight = false;
575                 x1 = draw_mark (cr, x0, x1, label, prelight);
576                 _jumplist.push_back (JumpRange (x0 - mw, x1, when, prelight));
577                 right_limit = x1;
578         }
579
580         if (outside_left != lm.end ()) {
581                 if (left_limit > 3 * mw + PADDING) {
582                         int x0 = PADDING + 1;
583                         int x1 = left_limit;
584                         bool prelight = false;
585                         x1 = draw_edge (cr, x0, x1, true, (*outside_left).label, prelight);
586                         if (x0 != x1) {
587                                 _jumplist.push_back (JumpRange (x0, x1, (*outside_left).when, prelight));
588                                 right_limit = std::max (x1, right_limit);
589                         }
590                 }
591         }
592
593         if (outside_right != lm.end ()) {
594                 if (right_limit + PADDING < width - 3 * mw) {
595                         int x0 = right_limit;
596                         int x1 = width - PADDING;
597                         bool prelight = false;
598                         x0 = draw_edge (cr, x0, x1, false, (*outside_right).label, prelight);
599                         if (x0 != x1) {
600                                 _jumplist.push_back (JumpRange (x0, x1, (*outside_right).when, prelight));
601                         }
602                 }
603         }
604
605
606         /* playhead on top */
607         int xc = width * 0.5f;
608         cairo_set_line_width (cr, 1.0);
609         cairo_set_source_rgb (cr, 1, 0, 0); // playhead color
610         cairo_move_to (cr, xc - .5, 0);
611         cairo_rel_line_to (cr, 0, height);
612         cairo_stroke (cr);
613         cairo_move_to (cr, xc - .5, height);
614         cairo_rel_line_to (cr, -3,  0);
615         cairo_rel_line_to (cr,  3, -4);
616         cairo_rel_line_to (cr,  3,  4);
617         cairo_close_path (cr);
618         cairo_fill (cr);
619 }
620
621 void
622 MiniTimeline::build_minitl_context_menu ()
623 {
624         using namespace Gtk;
625         using namespace Gtk::Menu_Helpers;
626
627         assert (_session);
628
629         const framecnt_t time_span = _session->config.get_minitimeline_span ();
630
631         _minitl_context_menu = new Gtk::Menu();
632         MenuList& items = _minitl_context_menu->items();
633
634         // ideally this would have a heading (or rather be a sub-menu to "Visible Time")
635         std::map<framecnt_t, std::string> spans;
636         spans[30]   = _("30 sec");
637         spans[60]   = _("1 min");
638         spans[120]  = _("2 mins");
639         spans[300]  = _("5 mins");
640         spans[600]  = _("10 mins");
641         spans[1200] = _("20 mins");
642
643         RadioMenuItem::Group span_group;
644         for (std::map<framecnt_t, std::string>::const_iterator i = spans.begin (); i != spans.end (); ++i) {
645                 items.push_back (RadioMenuElem (span_group, i->second, sigc::bind (sigc::mem_fun (*this, &MiniTimeline::set_span), i->first)));
646                 if (time_span == i->first) {
647                         static_cast<RadioMenuItem*>(&items.back())->set_active ();
648                 }
649         }
650 }
651
652 bool
653 MiniTimeline::on_button_press_event (GdkEventButton *ev)
654 {
655         if (Gtkmm2ext::Keyboard::is_context_menu_event (ev)) {
656                 if (_session) {
657                         if (_minitl_context_menu == 0) {
658                                 build_minitl_context_menu ();
659                         }
660                         _minitl_context_menu->popup (ev->button, ev->time);
661                 }
662                 return true;
663         }
664         return true;
665 }
666
667 bool
668 MiniTimeline::on_button_release_event (GdkEventButton *ev)
669 {
670         if (!_session) { return true; }
671         if (_session->actively_recording ()) { return true; }
672         if (ev->y < 0 || ev->y > get_height () || ev->x < 0 || ev->x > get_width ()) {
673                 return true;
674         }
675
676         if (ev->y <= PADDING + _marker_height) {
677                 for (JumpList::const_iterator i = _jumplist.begin (); i != _jumplist.end(); ++i) {
678                         if (i->left <= ev->x && ev->x <= i->right) {
679                                 _session->request_locate (i->to, _session->transport_rolling ());
680                                 return true;
681                         }
682                 }
683         }
684
685         if (ev->button == 1) {
686                 framepos_t when = _last_update_frame + (ev->x - get_width() * .5) / _px_per_sample;
687                 _session->request_locate (std::max ((framepos_t)0, when), _session->transport_rolling ());
688         }
689
690         return true;
691 }
692
693 bool
694 MiniTimeline::on_motion_notify_event (GdkEventMotion *ev)
695 {
696         if (!_session) { return true; }
697         if (_session->actively_recording ()) { return true; }
698
699         _pointer_x = ev->x;
700         _pointer_y = ev->y;
701
702         bool need_expose = false;
703
704         for (JumpList::const_iterator i = _jumplist.begin (); i != _jumplist.end(); ++i) {
705                 if (i->left < ev->x && ev->x < i->right && ev->y <= PADDING + _marker_height) {
706                         if (!(*i).prelight) {
707                                 need_expose = true;
708                                 break;
709                         }
710                 } else {
711                         if ((*i).prelight) {
712                                 need_expose = true;
713                                 break;
714                         }
715                 }
716         }
717         if (need_expose) {
718                 update_minitimeline ();
719         }
720
721         return true;
722 }
723
724 bool
725 MiniTimeline::on_leave_notify_event (GdkEventCrossing *ev)
726 {
727         CairoWidget::on_leave_notify_event (ev);
728         _pointer_x = _pointer_y = -1;
729         for (JumpList::const_iterator i = _jumplist.begin (); i != _jumplist.end(); ++i) {
730                 if ((*i).prelight) {
731                         update_minitimeline ();
732                         break;
733                 }
734         }
735         return true;
736 }
737
738 bool
739 MiniTimeline::on_scroll_event (GdkEventScroll *ev)
740 {
741         if (!_session) { return true; }
742         if (_session->actively_recording ()) { return true; }
743         const framecnt_t time_span = _session->config.get_minitimeline_span ();
744         framepos_t when = _session->audible_frame ();
745
746         double scale = time_span / 60.0;
747
748         if (ev->state & Gtkmm2ext::Keyboard::GainFineScaleModifier) {
749                 if (ev->state & Gtkmm2ext::Keyboard::GainExtraFineScaleModifier) {
750                         scale = 0.1;
751                 } else {
752                         scale = 0.5;
753                 }
754         }
755
756         switch (ev->direction) {
757                 case GDK_SCROLL_UP:
758                 case GDK_SCROLL_RIGHT:
759                         when += scale * _session->nominal_frame_rate ();
760                         break;
761                 case GDK_SCROLL_DOWN:
762                 case GDK_SCROLL_LEFT:
763                         when -= scale * _session->nominal_frame_rate ();
764                         break;
765                 default:
766                         return true;
767                         break;
768         }
769         _session->request_locate (std::max ((framepos_t)0, when), _session->transport_rolling ());
770         return true;
771 }