bbt duration clock tweak.
[ardour.git] / gtk2_ardour / audio_clock.cc
1 /*
2     Copyright (C) 1999 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (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., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <cstdio> // for sprintf
21 #include <cmath>
22
23 #include "pbd/convert.h"
24 #include "pbd/enumwriter.h"
25
26 #include <gtkmm/style.h>
27 #include <sigc++/bind.h>
28
29 #include "gtkmm2ext/cairocell.h"
30 #include "gtkmm2ext/utils.h"
31 #include "gtkmm2ext/rgb_macros.h"
32
33 #include "ardour/profile.h"
34 #include "ardour/lmath.h"
35 #include "ardour/session.h"
36 #include "ardour/slave.h"
37 #include "ardour/tempo.h"
38 #include "ardour/types.h"
39
40 #include "ardour_ui.h"
41 #include "audio_clock.h"
42 #include "gui_thread.h"
43 #include "keyboard.h"
44 #include "ui_config.h"
45 #include "utils.h"
46
47 #include "pbd/i18n.h"
48
49 using namespace ARDOUR;
50 using namespace ARDOUR_UI_UTILS;
51 using namespace PBD;
52 using namespace Gtk;
53 using namespace std;
54
55 using Gtkmm2ext::Keyboard;
56
57 sigc::signal<void> AudioClock::ModeChanged;
58 vector<AudioClock*> AudioClock::clocks;
59 const double AudioClock::info_font_scale_factor = 0.68;
60 const double AudioClock::separator_height = 0.0;
61 const double AudioClock::x_leading_padding = 6.0;
62
63 #define BBT_BAR_CHAR "|"
64 #define BBT_SCANF_FORMAT "%" PRIu32 "%*c%" PRIu32 "%*c%" PRIu32
65 #define INFO_FONT_SIZE ((int)lrint(font_size * info_font_scale_factor))
66 #define TXTSPAN "<span font-family=\"Sans\" foreground=\"white\">"
67
68 AudioClock::AudioClock (const string& clock_name, bool transient, const string& widget_name,
69                         bool allow_edit, bool follows_playhead, bool duration, bool with_info,
70                         bool accept_on_focus_out)
71         : ops_menu (0)
72         , _name (clock_name)
73         , is_transient (transient)
74         , is_duration (duration)
75         , editable (allow_edit)
76         , _follows_playhead (follows_playhead)
77         , _accept_on_focus_out (accept_on_focus_out)
78         , _off (false)
79         , em_width (0)
80         , _edit_by_click_field (false)
81         , _negative_allowed (false)
82         , edit_is_negative (false)
83         , editing_attr (0)
84         , foreground_attr (0)
85         , first_height (0)
86         , first_width (0)
87         , style_resets_first (true)
88         , layout_height (0)
89         , layout_width (0)
90         , info_height (0)
91         , upper_height (0)
92         , mode_based_info_ratio (1.0)
93         , corner_radius (4)
94         , font_size (10240)
95         , editing (false)
96         , bbt_reference_time (-1)
97         , last_when(0)
98         , last_pdelta (0)
99         , last_sdelta (0)
100         , dragging (false)
101         , drag_field (Field (0))
102         , xscale (1.0)
103         , yscale (1.0)
104 {
105         set_flags (CAN_FOCUS);
106
107         _layout = Pango::Layout::create (get_pango_context());
108         _layout->set_attributes (normal_attributes);
109
110         if (with_info) {
111                 _left_layout = Pango::Layout::create (get_pango_context());
112                 _right_layout = Pango::Layout::create (get_pango_context());
113         }
114
115         set_widget_name (widget_name);
116
117         _mode = BBT; /* lie to force mode switch */
118         set_mode (Timecode);
119         set (last_when, true);
120
121         if (!is_transient) {
122                 clocks.push_back (this);
123         }
124
125         UIConfiguration::instance().ColorsChanged.connect (sigc::mem_fun (*this, &AudioClock::set_colors));
126         UIConfiguration::instance().DPIReset.connect (sigc::mem_fun (*this, &AudioClock::dpi_reset));
127 }
128
129 AudioClock::~AudioClock ()
130 {
131         delete foreground_attr;
132         delete editing_attr;
133 }
134
135 void
136 AudioClock::set_widget_name (const string& str)
137 {
138         if (str.empty()) {
139                 set_name ("clock");
140         } else {
141                 set_name (str + " clock");
142         }
143
144         if (is_realized()) {
145                 set_colors ();
146         }
147 }
148
149
150 void
151 AudioClock::on_realize ()
152 {
153         Gtk::Requisition req;
154
155         CairoWidget::on_realize ();
156
157         set_clock_dimensions (req);
158
159         first_width = req.width;
160         first_height = req.height;
161
162         // XXX FIX ME: define font based on ... ???
163         // set_font ();
164         set_colors ();
165 }
166
167 void
168 AudioClock::set_font (Pango::FontDescription font)
169 {
170         Glib::RefPtr<Gtk::Style> style = get_style ();
171         Pango::AttrFontDesc* font_attr;
172
173         font_size = font.get_size();
174         font_attr = new Pango::AttrFontDesc (Pango::Attribute::create_attr_font_desc (font));
175
176         normal_attributes.change (*font_attr);
177         editing_attributes.change (*font_attr);
178
179         /* now a smaller version of the same font */
180
181         delete font_attr;
182         font.set_size (INFO_FONT_SIZE);
183         font.set_weight (Pango::WEIGHT_NORMAL);
184         font_attr = new Pango::AttrFontDesc (Pango::Attribute::create_attr_font_desc (font));
185
186         info_attributes.change (*font_attr);
187
188         /* and an even smaller one */
189
190         delete font_attr;
191
192         /* get the figure width for the font. This doesn't have to super
193          * accurate since we only use it to measure the (roughly 1 character)
194          * offset from the position Pango tells us for the "cursor"
195          */
196
197         Glib::RefPtr<Pango::Layout> tmp = Pango::Layout::create (get_pango_context());
198         int ignore_height;
199
200         tmp->set_text ("8");
201         tmp->get_pixel_size (em_width, ignore_height);
202
203         /* force redraw of markup with new font-size */
204         set (last_when, true);
205 }
206
207 void
208 AudioClock::set_active_state (Gtkmm2ext::ActiveState s)
209 {
210         CairoWidget::set_active_state (s);
211         set_colors ();
212 }
213
214 void
215 AudioClock::set_colors ()
216 {
217         int r, g, b, a;
218
219         uint32_t bg_color;
220         uint32_t text_color;
221         uint32_t editing_color;
222         uint32_t cursor_color;
223
224         if (active_state()) {
225                 bg_color = UIConfiguration::instance().color (string_compose ("%1 active: background", get_name()));
226                 text_color = UIConfiguration::instance().color (string_compose ("%1 active: text", get_name()));
227                 editing_color = UIConfiguration::instance().color (string_compose ("%1 active: edited text", get_name()));
228                 cursor_color = UIConfiguration::instance().color (string_compose ("%1 active: cursor", get_name()));
229         } else {
230                 bg_color = UIConfiguration::instance().color (string_compose ("%1: background", get_name()));
231                 text_color = UIConfiguration::instance().color (string_compose ("%1: text", get_name()));
232                 editing_color = UIConfiguration::instance().color (string_compose ("%1: edited text", get_name()));
233                 cursor_color = UIConfiguration::instance().color (string_compose ("%1: cursor", get_name()));
234         }
235
236         /* store for bg and cursor in render() */
237
238         UINT_TO_RGBA (bg_color, &r, &g, &b, &a);
239
240         bg_r = r/255.0;
241         bg_g = g/255.0;
242         bg_b = b/255.0;
243         bg_a = a/255.0;
244
245         UINT_TO_RGBA (cursor_color, &r, &g, &b, &a);
246
247         cursor_r = r/255.0;
248         cursor_g = g/255.0;
249         cursor_b = b/255.0;
250         cursor_a = a/255.0;
251
252         /* rescale for Pango colors ... sigh */
253
254         r = lrint (r * 65535.0);
255         g = lrint (g * 65535.0);
256         b = lrint (b * 65535.0);
257
258         UINT_TO_RGBA (text_color, &r, &g, &b, &a);
259         r = lrint ((r/255.0) * 65535.0);
260         g = lrint ((g/255.0) * 65535.0);
261         b = lrint ((b/255.0) * 65535.0);
262         delete foreground_attr;
263         foreground_attr = new Pango::AttrColor (Pango::Attribute::create_attr_foreground (r, g, b));
264
265         UINT_TO_RGBA (editing_color, &r, &g, &b, &a);
266         r = lrint ((r/255.0) * 65535.0);
267         g = lrint ((g/255.0) * 65535.0);
268         b = lrint ((b/255.0) * 65535.0);
269         delete editing_attr;
270         editing_attr = new Pango::AttrColor (Pango::Attribute::create_attr_foreground (r, g, b));
271
272         normal_attributes.change (*foreground_attr);
273         info_attributes.change (*foreground_attr);
274         editing_attributes.change (*foreground_attr);
275         editing_attributes.change (*editing_attr);
276
277         if (!editing) {
278                 _layout->set_attributes (normal_attributes);
279         } else {
280                 _layout->set_attributes (editing_attributes);
281         }
282
283         queue_draw ();
284 }
285
286 void
287 AudioClock::set_scale (double x, double y)
288 {
289         xscale = x;
290         yscale = y;
291
292         queue_draw ();
293 }
294
295 void
296 AudioClock::render (cairo_t* cr, cairo_rectangle_t*)
297 {
298         /* main layout: rounded rect, plus the text */
299
300         if (_need_bg) {
301                 cairo_set_source_rgba (cr, bg_r, bg_g, bg_b, bg_a);
302                 if (corner_radius) {
303                         if (_left_layout) {
304                                 Gtkmm2ext::rounded_top_half_rectangle (cr, 0, 0, get_width(), upper_height, corner_radius);
305                         } else {
306                                 Gtkmm2ext::rounded_rectangle (cr, 0, 0, get_width(), upper_height, corner_radius);
307                         }
308                 } else {
309                         cairo_rectangle (cr, 0, 0, get_width(), upper_height);
310                 }
311                 cairo_fill (cr);
312         }
313
314         double lw = layout_width * xscale;
315         double lh = layout_height * yscale;
316
317         cairo_move_to (cr, (get_width() - lw) / 2.0, (upper_height - lh) / 2.0);
318
319         if (xscale != 1.0 || yscale != 1.0) {
320                 cairo_save (cr);
321                 cairo_scale (cr, xscale, yscale);
322         }
323
324         pango_cairo_show_layout (cr, _layout->gobj());
325
326         if (xscale != 1.0 || yscale != 1.0) {
327                 cairo_restore (cr);
328         }
329
330         if (_left_layout) {
331
332                 double h = get_height() - upper_height - separator_height;
333
334                 if (_need_bg) {
335                         cairo_set_source_rgba (cr, bg_r, bg_g, bg_b, bg_a);
336                 }
337
338                 if (mode_based_info_ratio != 1.0) {
339
340                         double left_rect_width = get_left_rect_width();
341
342                         if (_need_bg) {
343                                 if (corner_radius) {
344                                         Gtkmm2ext::rounded_bottom_half_rectangle (cr, 0, upper_height + separator_height,
345                                                         left_rect_width + (separator_height == 0 ? corner_radius : 0),
346                                                         h, corner_radius);
347                                 } else {
348                                         cairo_rectangle (cr, 0, upper_height + separator_height, left_rect_width, h);
349                                 }
350                                 cairo_fill (cr);
351                         }
352
353                         cairo_move_to (cr, x_leading_padding, upper_height + separator_height + ((h - info_height)/2.0));
354                         pango_cairo_show_layout (cr, _left_layout->gobj());
355
356                         if (_need_bg) {
357                                 if (corner_radius) {
358                                         Gtkmm2ext::rounded_bottom_half_rectangle (cr, left_rect_width + separator_height,
359                                                         upper_height + separator_height,
360                                                         get_width() - separator_height - left_rect_width,
361                                                         h, corner_radius);
362                                 } else {
363                                         cairo_rectangle (cr, left_rect_width + separator_height, upper_height + separator_height,
364                                                          get_width() - separator_height - left_rect_width, h);
365                                 }
366                                 cairo_fill (cr);
367                         }
368
369
370                         if (_right_layout->get_alignment() == Pango::ALIGN_RIGHT) {
371                                 /* right-align does not work per se beacuse layout width is unset.
372                                  * Using _right_layout->set_width([value >=0]) would also enable
373                                  * word-wrapping which is not wanted here.
374                                  * The solution is to custom align the layout depending on its size.
375                                  * if it is larger than the available space it will be cropped on the
376                                  * right edge rather than override text on the left side.
377                                  */
378                                 int x, rw, rh;
379                                 _right_layout->get_pixel_size(rw, rh);
380                                 x = get_width() - rw - separator_height - x_leading_padding;
381                                 if (x < x_leading_padding + left_rect_width + separator_height) {
382                                         /* rather cut off the right end than overlap with the text on the left */
383                                         x = x_leading_padding + left_rect_width + separator_height;
384                                 }
385                                 cairo_move_to (cr, x, upper_height + separator_height + ((h - info_height)/2.0));
386                         } else {
387                                 cairo_move_to (cr, x_leading_padding + left_rect_width + separator_height, upper_height + separator_height + ((h - info_height)/2.0));
388                         }
389                         pango_cairo_show_layout (cr, _right_layout->gobj());
390
391                 } else {
392                         /* no info to display, or just one */
393
394                         if (_need_bg) {
395                                 if (corner_radius) {
396                                         Gtkmm2ext::rounded_bottom_half_rectangle (cr, 0, upper_height + separator_height, get_width(), h, corner_radius);
397                                 } else {
398                                         cairo_rectangle (cr, 0, upper_height + separator_height, get_width(), h);
399                                 }
400                                 cairo_fill (cr);
401                         }
402                 }
403         }
404
405         if (editing) {
406                 if (!insert_map.empty()) {
407
408                         int xcenter = (get_width() - layout_width) /2;
409
410                         if (input_string.length() < insert_map.size()) {
411                                 Pango::Rectangle cursor;
412
413                                 if (input_string.empty()) {
414                                         /* nothing entered yet, put cursor at the end
415                                            of string
416                                         */
417                                         cursor = _layout->get_cursor_strong_pos (edit_string.length() - 1);
418                                 } else {
419                                         cursor = _layout->get_cursor_strong_pos (insert_map[input_string.length()]);
420                                 }
421
422                                 cairo_set_source_rgba (cr, cursor_r, cursor_g, cursor_b, cursor_a);
423                                 cairo_rectangle (cr,
424                                                  min (get_width() - 2.0,
425                                                       (double) xcenter + cursor.get_x()/PANGO_SCALE + em_width),
426                                                  (upper_height - layout_height)/2.0,
427                                                  2.0, cursor.get_height()/PANGO_SCALE);
428                                 cairo_fill (cr);
429                         } else {
430                                 /* we've entered all possible digits, no cursor */
431                         }
432
433                 } else {
434                         if (input_string.empty()) {
435                                 cairo_set_source_rgba (cr, cursor_r, cursor_g, cursor_b, cursor_a);
436                                 cairo_rectangle (cr,
437                                                  (get_width()/2.0),
438                                                  (upper_height - layout_height)/2.0,
439                                                  2.0, upper_height);
440                                 cairo_fill (cr);
441                         }
442                 }
443         }
444 }
445
446 void
447 AudioClock::on_size_allocate (Gtk::Allocation& alloc)
448 {
449         CairoWidget::on_size_allocate (alloc);
450
451         if (_left_layout) {
452                 upper_height = (get_height()/2.0) - 1.0;
453         } else {
454                 upper_height = get_height();
455         }
456 }
457
458 void
459 AudioClock::set_clock_dimensions (Gtk::Requisition& req)
460 {
461         Glib::RefPtr<Pango::Layout> tmp;
462         Glib::RefPtr<Gtk::Style> style = get_style ();
463         Pango::FontDescription font;
464
465         tmp = Pango::Layout::create (get_pango_context());
466
467         if (!is_realized()) {
468                 font = get_font_for_style (get_name());
469         } else {
470                 font = style->get_font();
471         }
472
473         tmp->set_font_description (font);
474
475         /* this string is the longest thing we will ever display */
476         if (_mode == MinSec)
477                 tmp->set_text (" 88:88:88,888 ");
478         else
479                 tmp->set_text (" 88:88:88,88 ");
480         tmp->get_pixel_size (req.width, req.height);
481
482         layout_height = req.height;
483         layout_width = req.width;
484 }
485
486 void
487 AudioClock::on_size_request (Gtk::Requisition* req)
488 {
489         /* even for non fixed width clocks, the size we *ask* for never changes,
490            even though the size we receive might. so once we've computed it,
491            just return it.
492         */
493
494         if (first_width) {
495                 req->width = first_width;
496                 req->height = first_height;
497                 return;
498         }
499
500         set_clock_dimensions (*req);
501
502         /* now tackle height, for which we need to know the height of the lower
503          * layout
504          */
505
506         if (_left_layout) {
507
508                 Glib::RefPtr<Pango::Layout> tmp;
509                 Glib::RefPtr<Gtk::Style> style = get_style ();
510                 Pango::FontDescription font;
511                 int w;
512
513                 tmp = Pango::Layout::create (get_pango_context());
514
515                 if (!is_realized()) {
516                         font = get_font_for_style (get_name());
517                 } else {
518                         font = style->get_font();
519                 }
520
521                 tmp->set_font_description (font);
522
523                 font.set_size (INFO_FONT_SIZE);
524                 font.set_weight (Pango::WEIGHT_NORMAL);
525                 tmp->set_font_description (font);
526
527                 /* we only care about height, so put as much stuff in here
528                    as possible that might change the height.
529                 */
530                 tmp->set_text ("qyhH|"); /* one ascender, one descender */
531
532                 tmp->get_pixel_size (w, info_height);
533
534                 /* silly extra padding that seems necessary to correct the info
535                  * that pango just gave us. I have no idea why.
536                  */
537
538                 req->height += info_height;
539                 req->height += separator_height;
540         }
541 }
542
543 void
544 AudioClock::show_edit_status (int length)
545 {
546         editing_attr->set_start_index (edit_string.length() - length);
547         editing_attr->set_end_index (edit_string.length());
548
549         editing_attributes.change (*foreground_attr);
550         editing_attributes.change (*editing_attr);
551
552         _layout->set_attributes (editing_attributes);
553 }
554
555 void
556 AudioClock::start_edit (Field f)
557 {
558         if (!editing) {
559                 pre_edit_string = _layout->get_text ();
560                 if (!insert_map.empty()) {
561                         edit_string = pre_edit_string;
562                 } else {
563                         edit_string.clear ();
564                         _layout->set_text ("");
565                 }
566
567                 input_string.clear ();
568                 editing = true;
569                 edit_is_negative = false;
570
571                 if (f) {
572                         input_string = get_field (f);
573                         show_edit_status (merge_input_and_edit_string ());
574                         _layout->set_text (edit_string);
575                 }
576
577                 queue_draw ();
578
579                 Keyboard::magic_widget_grab_focus ();
580                 grab_focus ();
581         }
582 }
583
584 string
585 AudioClock::get_field (Field f)
586 {
587         switch (f) {
588         case Timecode_Hours:
589                 return edit_string.substr (1, 2);
590                 break;
591         case Timecode_Minutes:
592                 return edit_string.substr (4, 2);
593                 break;
594         case Timecode_Seconds:
595                 return edit_string.substr (7, 2);
596                 break;
597         case Timecode_Frames:
598                 return edit_string.substr (10, 2);
599                 break;
600         case MS_Hours:
601                 return edit_string.substr (1, 2);
602                 break;
603         case MS_Minutes:
604                 return edit_string.substr (4, 2);
605                 break;
606         case MS_Seconds:
607                 return edit_string.substr (7, 2);
608                 break;
609         case MS_Milliseconds:
610                 return edit_string.substr (10, 3);
611                 break;
612         case Bars:
613                 return edit_string.substr (1, 3);
614                 break;
615         case Beats:
616                 return edit_string.substr (5, 2);
617                 break;
618         case Ticks:
619                 return edit_string.substr (8, 4);
620                 break;
621         case AudioFrames:
622                 return edit_string;
623                 break;
624         }
625         return "";
626 }
627
628 void
629 AudioClock::end_edit (bool modify)
630 {
631         if (modify) {
632
633                 bool ok = true;
634
635                 switch (_mode) {
636                 case Timecode:
637                         ok = timecode_validate_edit (edit_string);
638                         break;
639
640                 case BBT:
641                         ok = bbt_validate_edit (edit_string);
642                         break;
643
644                 case MinSec:
645                         ok = minsec_validate_edit (edit_string);
646                         break;
647
648                 case Frames:
649                         if (edit_string.length() < 1) {
650                                 edit_string = pre_edit_string;
651                         }
652                         break;
653                 }
654
655                 if (!ok) {
656                         edit_string = pre_edit_string;
657                         input_string.clear ();
658                         _layout->set_text (edit_string);
659                         show_edit_status (0);
660                         /* edit attributes remain in use */
661                 } else {
662
663                         editing = false;
664                         framepos_t pos = 0; /* stupid gcc */
665
666                         switch (_mode) {
667                         case Timecode:
668                                 pos = frames_from_timecode_string (edit_string);
669                                 break;
670
671                         case BBT:
672                                 if (is_duration) {
673                                         pos = frame_duration_from_bbt_string (bbt_reference_time, edit_string);
674                                 } else {
675                                         pos = frames_from_bbt_string (0, edit_string);
676                                 }
677                                 break;
678
679                         case MinSec:
680                                 pos = frames_from_minsec_string (edit_string);
681                                 break;
682
683                         case Frames:
684                                 pos = frames_from_audioframes_string (edit_string);
685                                 break;
686                         }
687
688                         set (pos, true);
689                         _layout->set_attributes (normal_attributes);
690                         ValueChanged(); /* EMIT_SIGNAL */
691                 }
692
693         } else {
694
695                 editing = false;
696                 edit_is_negative = false;
697                 _layout->set_attributes (normal_attributes);
698                 _layout->set_text (pre_edit_string);
699         }
700
701         queue_draw ();
702
703         if (!editing) {
704                 drop_focus ();
705         }
706 }
707
708 void
709 AudioClock::drop_focus ()
710 {
711         Keyboard::magic_widget_drop_focus ();
712
713         if (has_focus()) {
714                 /* move focus back to the default widget in the top level window */
715                 ARDOUR_UI::instance()->reset_focus (this);
716         }
717 }
718
719 framecnt_t
720 AudioClock::parse_as_frames_distance (const std::string& str)
721 {
722         framecnt_t f;
723
724         if (sscanf (str.c_str(), "%" PRId64, &f) == 1) {
725                 return f;
726         }
727
728         return 0;
729 }
730
731 framecnt_t
732 AudioClock::parse_as_minsec_distance (const std::string& str)
733 {
734         framecnt_t sr = _session->frame_rate();
735         int msecs;
736         int secs;
737         int mins;
738         int hrs;
739
740         switch (str.length()) {
741         case 0:
742                 return 0;
743         case 1:
744         case 2:
745         case 3:
746         case 4:
747                 sscanf (str.c_str(), "%" PRId32, &msecs);
748                 return msecs * (sr / 1000);
749
750         case 5:
751                 sscanf (str.c_str(), "%1" PRId32 "%" PRId32, &secs, &msecs);
752                 return (secs * sr) + (msecs * (sr/1000));
753
754         case 6:
755                 sscanf (str.c_str(), "%2" PRId32 "%" PRId32, &secs, &msecs);
756                 return (secs * sr) + (msecs * (sr/1000));
757
758         case 7:
759                 sscanf (str.c_str(), "%1" PRId32 "%2" PRId32 "%" PRId32, &mins, &secs, &msecs);
760                 return (mins * 60 * sr) + (secs * sr) + (msecs * (sr/1000));
761
762         case 8:
763                 sscanf (str.c_str(), "%2" PRId32 "%2" PRId32 "%" PRId32, &mins, &secs, &msecs);
764                 return (mins * 60 * sr) + (secs * sr) + (msecs * (sr/1000));
765
766         case 9:
767                 sscanf (str.c_str(), "%1" PRId32 "%2" PRId32 "%2" PRId32 "%" PRId32, &hrs, &mins, &secs, &msecs);
768                 return (hrs * 3600 * sr) + (mins * 60 * sr) + (secs * sr) + (msecs * (sr/1000));
769
770         case 10:
771                 sscanf (str.c_str(), "%1" PRId32 "%2" PRId32 "%2" PRId32 "%" PRId32, &hrs, &mins, &secs, &msecs);
772                 return (hrs * 3600 * sr) + (mins * 60 * sr) + (secs * sr) + (msecs * (sr/1000));
773
774         default:
775                 break;
776         }
777
778         return 0;
779 }
780
781 framecnt_t
782 AudioClock::parse_as_timecode_distance (const std::string& str)
783 {
784         double fps = _session->timecode_frames_per_second();
785         framecnt_t sr = _session->frame_rate();
786         int frames;
787         int secs;
788         int mins;
789         int hrs;
790
791         switch (str.length()) {
792         case 0:
793                 return 0;
794         case 1:
795         case 2:
796                 sscanf (str.c_str(), "%" PRId32, &frames);
797                 return llrint ((frames/(float)fps) * sr);
798
799         case 3:
800                 sscanf (str.c_str(), "%1" PRId32 "%" PRId32, &secs, &frames);
801                 return (secs * sr) + llrint ((frames/(float)fps) * sr);
802
803         case 4:
804                 sscanf (str.c_str(), "%2" PRId32 "%" PRId32, &secs, &frames);
805                 return (secs * sr) + llrint ((frames/(float)fps) * sr);
806
807         case 5:
808                 sscanf (str.c_str(), "%1" PRId32 "%2" PRId32 "%" PRId32, &mins, &secs, &frames);
809                 return (mins * 60 * sr) + (secs * sr) + llrint ((frames/(float)fps) * sr);
810
811         case 6:
812                 sscanf (str.c_str(), "%2" PRId32 "%2" PRId32 "%" PRId32, &mins, &secs, &frames);
813                 return (mins * 60 * sr) + (secs * sr) + llrint ((frames/(float)fps) * sr);
814
815         case 7:
816                 sscanf (str.c_str(), "%1" PRId32 "%2" PRId32 "%2" PRId32 "%" PRId32, &hrs, &mins, &secs, &frames);
817                 return (hrs * 3600 * sr) + (mins * 60 * sr) + (secs * sr) + llrint ((frames/(float)fps) * sr);
818
819         case 8:
820                 sscanf (str.c_str(), "%2" PRId32 "%2" PRId32 "%2" PRId32 "%" PRId32, &hrs, &mins, &secs, &frames);
821                 return (hrs * 3600 * sr) + (mins * 60 * sr) + (secs * sr) + llrint ((frames/(float)fps) * sr);
822
823         default:
824                 break;
825         }
826
827         return 0;
828 }
829
830 framecnt_t
831 AudioClock::parse_as_bbt_distance (const std::string&)
832 {
833         return 0;
834 }
835
836 framecnt_t
837 AudioClock::parse_as_distance (const std::string& instr)
838 {
839         switch (_mode) {
840         case Timecode:
841                 return parse_as_timecode_distance (instr);
842                 break;
843         case Frames:
844                 return parse_as_frames_distance (instr);
845                 break;
846         case BBT:
847                 return parse_as_bbt_distance (instr);
848                 break;
849         case MinSec:
850                 return parse_as_minsec_distance (instr);
851                 break;
852         }
853         return 0;
854 }
855
856 void
857 AudioClock::end_edit_relative (bool add)
858 {
859         bool ok = true;
860
861         switch (_mode) {
862         case Timecode:
863                 ok = timecode_validate_edit (edit_string);
864                 break;
865
866         case BBT:
867                 ok = bbt_validate_edit (edit_string);
868                 break;
869
870         case MinSec:
871                 ok = minsec_validate_edit (edit_string);
872                 break;
873
874         case Frames:
875                 break;
876         }
877
878         if (!ok) {
879                 edit_string = pre_edit_string;
880                 input_string.clear ();
881                 _layout->set_text (edit_string);
882                 show_edit_status (0);
883                 /* edit attributes remain in use */
884                 queue_draw ();
885                 return;
886         }
887
888         framecnt_t frames = parse_as_distance (input_string);
889
890         editing = false;
891
892         editing = false;
893         _layout->set_attributes (normal_attributes);
894
895         if (frames != 0) {
896                 if (add) {
897                         set (current_time() + frames, true);
898                 } else {
899                         framepos_t c = current_time();
900
901                         if (c > frames || _negative_allowed) {
902                                 set (c - frames, true);
903                         } else {
904                                 set (0, true);
905                         }
906                 }
907                 ValueChanged (); /* EMIT SIGNAL */
908         }
909
910         input_string.clear ();
911         queue_draw ();
912         drop_focus ();
913 }
914
915 void
916 AudioClock::session_property_changed (const PropertyChange&)
917 {
918         set (last_when, true);
919 }
920
921 void
922 AudioClock::metric_position_changed ()
923 {
924         set (last_when, true);
925 }
926
927 void
928 AudioClock::session_configuration_changed (std::string p)
929 {
930         if (_negative_allowed) {
931                 /* session option editor clock */
932                 return;
933         }
934
935         if (p == "sync-source" || p == "external-sync") {
936                 set (current_time(), true);
937                 return;
938         }
939
940         if (p != "timecode-offset" && p != "timecode-offset-negative") {
941                 return;
942         }
943
944         framecnt_t current;
945
946         switch (_mode) {
947         case Timecode:
948                 if (is_duration) {
949                         current = current_duration ();
950                 } else {
951                         current = current_time ();
952                 }
953                 set (current, true);
954                 break;
955         default:
956                 break;
957         }
958 }
959
960 void
961 AudioClock::set (framepos_t when, bool force, framecnt_t offset)
962 {
963         if ((!force && !is_visible()) || _session == 0) {
964                 return;
965         }
966
967         if (is_duration) {
968                 when = when - offset;
969         }
970
971         if (when == last_when && !force) {
972 #if 0 // XXX return if no change and no change forced. verify Aug/2014
973                 if (_mode != Timecode && _mode != MinSec) {
974                         /* may need to force display of TC source
975                          * time, so don't return early.
976                          */
977                         /* ^^ Why was that?,  delta times?
978                          * Timecode FPS, pull-up/down, etc changes
979                          * trigger a 'session_property_changed' which
980                          * eventually calls set(last_when, true)
981                          *
982                          * re-rendering the clock every 40ms or so just
983                          * because we can is not ideal.
984                          */
985                         return;
986                 }
987 #else
988                 return;
989 #endif
990         }
991
992         if (!editing) {
993                 if (_right_layout) {
994                         _right_layout->set_alignment(Pango::ALIGN_LEFT);
995                 }
996
997                 switch (_mode) {
998                 case Timecode:
999                         if (_right_layout) {
1000                                 _right_layout->set_alignment(Pango::ALIGN_RIGHT);
1001                         }
1002                         set_timecode (when, force);
1003                         break;
1004
1005                 case BBT:
1006                         set_bbt (when, offset, force);
1007                         break;
1008
1009                 case MinSec:
1010                         if (_right_layout) {
1011                                 _right_layout->set_alignment(Pango::ALIGN_RIGHT);
1012                         }
1013                         set_minsec (when, force);
1014                         break;
1015
1016                 case Frames:
1017                         set_frames (when, force);
1018                         break;
1019                 }
1020         }
1021
1022         queue_draw ();
1023         last_when = when;
1024 }
1025
1026 void
1027 AudioClock::set_slave_info ()
1028 {
1029         if (!_left_layout || !_right_layout) {
1030                 return;
1031         }
1032
1033         SyncSource sync_src = Config->get_sync_source();
1034
1035         if (_session->config.get_external_sync()) {
1036                 Slave* slave = _session->slave();
1037
1038                 switch (sync_src) {
1039                 case Engine:
1040                         _left_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%2</span></span>",
1041                                                 INFO_FONT_SIZE, sync_source_to_string(sync_src, true)));
1042                         _right_layout->set_text ("");
1043                         break;
1044                 case MIDIClock:
1045                         if (slave) {
1046                                 _left_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%2</span></span>",
1047                                                         INFO_FONT_SIZE, sync_source_to_string(sync_src, true)));
1048                                 _right_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%2</span></span>",
1049                                                         INFO_FONT_SIZE, slave->approximate_current_delta()));
1050                         } else {
1051                                 _left_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%2</span></span>",
1052                                                         INFO_FONT_SIZE, _("--pending--")));
1053                                 _right_layout->set_text ("");
1054                         }
1055                         break;
1056                 case LTC:
1057                 case MTC:
1058                         if (slave) {
1059                                 bool matching;
1060                                 TimecodeSlave* tcslave;
1061                                 if ((tcslave = dynamic_cast<TimecodeSlave*>(_session->slave())) != 0) {
1062                                         matching = (tcslave->apparent_timecode_format() == _session->config.get_timecode_format());
1063                                         _left_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%2</span><span foreground=\"%3\">%4</span></span>",
1064                                                                                   INFO_FONT_SIZE, sync_source_to_string(sync_src, true)[0], (matching?"green":"red"),
1065                                                                                   dynamic_cast<TimecodeSlave*>(slave)->approximate_current_position()));
1066                                         _right_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%2</span></span>",
1067                                                                                    INFO_FONT_SIZE, slave->approximate_current_delta()));
1068                                 }
1069                         } else {
1070                                 _left_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%2</span></span>",
1071                                                         INFO_FONT_SIZE, _("--pending--")));
1072                                 _right_layout->set_text ("");
1073                         }
1074                         break;
1075                 }
1076         } else {
1077                 _left_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "INT/%2</span></span>",
1078                                         INFO_FONT_SIZE, sync_source_to_string(sync_src, true)));
1079                 _right_layout->set_text ("");
1080         }
1081 }
1082
1083 void
1084 AudioClock::set_frames (framepos_t when, bool /*force*/)
1085 {
1086         char buf[32];
1087         bool negative = false;
1088
1089         if (_off) {
1090                 _layout->set_text (" ----------");
1091
1092                 if (_left_layout) {
1093                         _left_layout->set_text ("");
1094                         _right_layout->set_text ("");
1095                 }
1096
1097                 return;
1098         }
1099
1100         if (when < 0) {
1101                 when = -when;
1102                 negative = true;
1103         }
1104
1105         if (negative) {
1106                 snprintf (buf, sizeof (buf), "-%10" PRId64, when);
1107         } else {
1108                 snprintf (buf, sizeof (buf), " %10" PRId64, when);
1109         }
1110
1111         _layout->set_text (buf);
1112
1113         if (_left_layout) {
1114                 framecnt_t rate = _session->frame_rate();
1115
1116                 if (fmod (rate, 100.0) == 0.0) {
1117                         sprintf (buf, "%.1fkHz", rate/1000.0);
1118                 } else {
1119                         sprintf (buf, "%" PRId64 "Hz", rate);
1120                 }
1121
1122                 _left_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%2 </span><span foreground=\"green\">%3</span></span>",
1123                                 INFO_FONT_SIZE, _("SR"), buf));
1124
1125                 float vid_pullup = _session->config.get_video_pullup();
1126
1127                 if (vid_pullup == 0.0) {
1128                         _right_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%2 </span><span foreground=\"green\">off</span></span>",
1129                                         INFO_FONT_SIZE, _("Pull")));
1130                 } else {
1131                         sprintf (buf, _("%+.4f%%"), vid_pullup);
1132                         _right_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%2 </span><span foreground=\"green\">%3</span></span>",
1133                                         INFO_FONT_SIZE, _("Pull"), buf));
1134                 }
1135         }
1136 }
1137
1138 void
1139 AudioClock::print_minsec (framepos_t when, char* buf, size_t bufsize, float frame_rate)
1140 {
1141         framecnt_t left;
1142         int hrs;
1143         int mins;
1144         int secs;
1145         int millisecs;
1146         bool negative;
1147
1148         if (when < 0) {
1149                 when = -when;
1150                 negative = true;
1151         } else {
1152                 negative = false;
1153         }
1154
1155         left = when;
1156         hrs = (int) floor (left / (frame_rate * 60.0f * 60.0f));
1157         left -= (framecnt_t) floor (hrs * frame_rate * 60.0f * 60.0f);
1158         mins = (int) floor (left / (frame_rate * 60.0f));
1159         left -= (framecnt_t) floor (mins * frame_rate * 60.0f);
1160         secs = (int) floor (left / (float) frame_rate);
1161         left -= (framecnt_t) floor ((double)(secs * frame_rate));
1162         millisecs = floor (left * 1000.0 / (float) frame_rate);
1163
1164         if (negative) {
1165                 snprintf (buf, bufsize, "-%02" PRId32 ":%02" PRId32 ":%02" PRId32 ".%03" PRId32, hrs, mins, secs, millisecs);
1166         } else {
1167                 snprintf (buf, bufsize, " %02" PRId32 ":%02" PRId32 ":%02" PRId32 ".%03" PRId32, hrs, mins, secs, millisecs);
1168         }
1169
1170 }
1171
1172 void
1173 AudioClock::set_minsec (framepos_t when, bool /*force*/)
1174 {
1175         char buf[32];
1176
1177         if (_off) {
1178                 _layout->set_text (" --:--:--.---");
1179
1180                 if (_left_layout) {
1181                         _left_layout->set_text ("");
1182                         _right_layout->set_text ("");
1183                 }
1184
1185                 return;
1186         }
1187
1188         print_minsec (when, buf, sizeof (buf), _session->frame_rate());
1189
1190         _layout->set_text (buf);
1191         set_slave_info();
1192 }
1193
1194 void
1195 AudioClock::set_timecode (framepos_t when, bool /*force*/)
1196 {
1197         Timecode::Time TC;
1198         bool negative = false;
1199
1200         if (_off) {
1201                 _layout->set_text (" --:--:--:--");
1202                 if (_left_layout) {
1203                         _left_layout->set_text ("");
1204                         _right_layout->set_text ("");
1205                 }
1206
1207                 return;
1208         }
1209
1210         if (when < 0) {
1211                 when = -when;
1212                 negative = true;
1213         }
1214
1215         if (is_duration) {
1216                 _session->timecode_duration (when, TC);
1217         } else {
1218                 _session->timecode_time (when, TC);
1219         }
1220
1221         TC.negative = TC.negative || negative;
1222
1223         _layout->set_text (Timecode::timecode_format_time(TC));
1224
1225         set_slave_info();
1226 }
1227
1228 void
1229 AudioClock::set_bbt (framepos_t when, framecnt_t offset, bool /*force*/)
1230 {
1231         char buf[16];
1232         Timecode::BBT_Time BBT;
1233         bool negative = false;
1234
1235         if (_off) {
1236                 _layout->set_text (" ---|--|----");
1237                 if (_left_layout) {
1238                         _left_layout->set_text ("");
1239                         _right_layout->set_text ("");
1240                 }
1241                 return;
1242         }
1243
1244         if (when < 0) {
1245                 when = -when;
1246                 negative = true;
1247         }
1248
1249         /* handle a common case */
1250         if (is_duration) {
1251                 if (when == 0) {
1252                         BBT.bars = 0;
1253                         BBT.beats = 0;
1254                         BBT.ticks = 0;
1255                 } else {
1256                         TempoMap& tmap (_session->tempo_map());
1257
1258                         if (offset == 0) {
1259                                 offset = bbt_reference_time;
1260                         }
1261
1262                         const double divisions = tmap.meter_section_at_frame (offset).divisions_per_bar();
1263                         Timecode::BBT_Time sub_bbt;
1264
1265                         if (negative) {
1266                                 BBT = tmap.bbt_at_beat (tmap.beat_at_frame (offset));
1267                                 sub_bbt = tmap.bbt_at_frame (offset - when);
1268                         } else {
1269                                 BBT = tmap.bbt_at_beat (tmap.beat_at_frame (when + offset));
1270                                 sub_bbt = tmap.bbt_at_frame (offset);
1271                         }
1272
1273                         BBT.bars -= sub_bbt.bars;
1274
1275                         if (BBT.ticks < sub_bbt.ticks) {
1276                                 if (BBT.beats == 1) {
1277                                         BBT.bars--;
1278                                         BBT.beats = divisions;
1279                                 } else {
1280                                         BBT.beats--;
1281                                 }
1282                                 BBT.ticks = Timecode::BBT_Time::ticks_per_beat - (sub_bbt.ticks - BBT.ticks);
1283                         } else {
1284                                 BBT.ticks -= sub_bbt.ticks;
1285                         }
1286
1287                         if (BBT.beats < sub_bbt.beats) {
1288                                 BBT.bars--;
1289                                 BBT.beats = divisions - (sub_bbt.beats - BBT.beats);
1290                         } else {
1291                                 BBT.beats -= sub_bbt.beats;
1292                         }
1293                 }
1294         } else {
1295                 BBT = _session->tempo_map().bbt_at_frame (when);
1296         }
1297
1298         if (negative) {
1299                 snprintf (buf, sizeof (buf), "-%03" PRIu32 BBT_BAR_CHAR "%02" PRIu32 BBT_BAR_CHAR "%04" PRIu32,
1300                           BBT.bars, BBT.beats, BBT.ticks);
1301         } else {
1302                 snprintf (buf, sizeof (buf), " %03" PRIu32 BBT_BAR_CHAR "%02" PRIu32 BBT_BAR_CHAR "%04" PRIu32,
1303                           BBT.bars, BBT.beats, BBT.ticks);
1304         }
1305
1306         _layout->set_text (buf);
1307
1308         if (_right_layout) {
1309                 framepos_t pos;
1310
1311                 if (bbt_reference_time < 0) {
1312                         pos = when;
1313                 } else {
1314                         pos = bbt_reference_time;
1315                 }
1316
1317                 TempoMetric m (_session->tempo_map().metric_at (pos));
1318
1319                 sprintf (buf, "%-5.3f", _session->tempo_map().tempo_at_frame (pos).beats_per_minute());
1320                 _left_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%3</span> <span foreground=\"green\">%2</span></span>",
1321                                                           INFO_FONT_SIZE, buf, _("Tempo")));
1322
1323                 sprintf (buf, "%g/%g", m.meter().divisions_per_bar(), m.meter().note_divisor());
1324                 _right_layout->set_markup (string_compose ("<span size=\"%1\">" TXTSPAN "%3</span> <span foreground=\"green\">%2</span></span>",
1325                                                            INFO_FONT_SIZE, buf, _("Meter")));
1326         }
1327 }
1328
1329 void
1330 AudioClock::set_session (Session *s)
1331 {
1332         SessionHandlePtr::set_session (s);
1333
1334         if (_session) {
1335
1336                 _session->config.ParameterChanged.connect (_session_connections, invalidator (*this), boost::bind (&AudioClock::session_configuration_changed, this, _1), gui_context());
1337                 _session->tempo_map().PropertyChanged.connect (_session_connections, invalidator (*this), boost::bind (&AudioClock::session_property_changed, this, _1), gui_context());
1338                 _session->tempo_map().MetricPositionChanged.connect (_session_connections, invalidator (*this), boost::bind (&AudioClock::metric_position_changed, this), gui_context());
1339
1340                 XMLProperty const * prop;
1341                 XMLNode* node = _session->extra_xml (X_("ClockModes"));
1342                 AudioClock::Mode amode;
1343
1344                 if (node) {
1345                         for (XMLNodeList::const_iterator i = node->children().begin(); i != node->children().end(); ++i) {
1346                                 if ((prop = (*i)->property (X_("name"))) && prop->value() == _name) {
1347
1348                                         if ((prop = (*i)->property (X_("mode"))) != 0) {
1349                                                 amode = AudioClock::Mode (string_2_enum (prop->value(), amode));
1350                                                 set_mode (amode, true);
1351                                         }
1352                                         if ((prop = (*i)->property (X_("on"))) != 0) {
1353                                                 set_off (!string_is_affirmative (prop->value()));
1354                                         }
1355                                         break;
1356                                 }
1357                         }
1358                 }
1359
1360                 set (last_when, true);
1361         }
1362 }
1363
1364 bool
1365 AudioClock::on_key_press_event (GdkEventKey* ev)
1366 {
1367         if (!editing) {
1368                 return false;
1369         }
1370
1371         string new_text;
1372         char new_char = 0;
1373         int highlight_length;
1374         framepos_t pos;
1375
1376         switch (ev->keyval) {
1377         case GDK_0:
1378         case GDK_KP_0:
1379                 new_char = '0';
1380                 break;
1381         case GDK_1:
1382         case GDK_KP_1:
1383                 new_char = '1';
1384                 break;
1385         case GDK_2:
1386         case GDK_KP_2:
1387                 new_char = '2';
1388                 break;
1389         case GDK_3:
1390         case GDK_KP_3:
1391                 new_char = '3';
1392                 break;
1393         case GDK_4:
1394         case GDK_KP_4:
1395                 new_char = '4';
1396                 break;
1397         case GDK_5:
1398         case GDK_KP_5:
1399                 new_char = '5';
1400                 break;
1401         case GDK_6:
1402         case GDK_KP_6:
1403                 new_char = '6';
1404                 break;
1405         case GDK_7:
1406         case GDK_KP_7:
1407                 new_char = '7';
1408                 break;
1409         case GDK_8:
1410         case GDK_KP_8:
1411                 new_char = '8';
1412                 break;
1413         case GDK_9:
1414         case GDK_KP_9:
1415                 new_char = '9';
1416                 break;
1417
1418         case GDK_minus:
1419         case GDK_KP_Subtract:
1420                 if (_negative_allowed && input_string.empty()) {
1421                                 edit_is_negative = true;
1422                                 edit_string.replace(0,1,"-");
1423                                 _layout->set_text (edit_string);
1424                                 queue_draw ();
1425                 } else {
1426                         end_edit_relative (false);
1427                 }
1428                 return true;
1429                 break;
1430
1431         case GDK_plus:
1432                 end_edit_relative (true);
1433                 return true;
1434                 break;
1435
1436         case GDK_Tab:
1437         case GDK_Return:
1438         case GDK_KP_Enter:
1439                 end_edit (true);
1440                 return true;
1441                 break;
1442
1443         case GDK_Escape:
1444                 end_edit (false);
1445                 ChangeAborted();  /*  EMIT SIGNAL  */
1446                 return true;
1447
1448         case GDK_Delete:
1449         case GDK_BackSpace:
1450                 if (!input_string.empty()) {
1451                         /* delete the last key entered
1452                         */
1453                         input_string = input_string.substr (0, input_string.length() - 1);
1454                 }
1455                 goto use_input_string;
1456
1457         default:
1458                 /* do not allow other keys to passthru to the rest of the GUI
1459                    when editing.
1460                 */
1461                 return true;
1462         }
1463
1464         if (!insert_map.empty() && (input_string.length() >= insert_map.size())) {
1465                 /* too many digits: eat the key event, but do nothing with it */
1466                 return true;
1467         }
1468
1469         input_string.push_back (new_char);
1470
1471   use_input_string:
1472
1473         switch (_mode) {
1474         case Frames:
1475                 /* get this one in the right order, and to the right width */
1476                 if (ev->keyval == GDK_Delete || ev->keyval == GDK_BackSpace) {
1477                         edit_string = edit_string.substr (0, edit_string.length() - 1);
1478                 } else {
1479                         edit_string.push_back (new_char);
1480                 }
1481                 if (!edit_string.empty()) {
1482                         char buf[32];
1483                         sscanf (edit_string.c_str(), "%" PRId64, &pos);
1484                         snprintf (buf, sizeof (buf), " %10" PRId64, pos);
1485                         edit_string = buf;
1486                 }
1487                 /* highlight the whole thing */
1488                 highlight_length = edit_string.length();
1489                 break;
1490
1491         default:
1492                 highlight_length = merge_input_and_edit_string ();
1493         }
1494
1495         if (edit_is_negative) {
1496                 edit_string.replace(0,1,"-");
1497         } else {
1498                 if (!pre_edit_string.empty() && (pre_edit_string.at(0) == '-')) {
1499                         edit_string.replace(0,1,"_");
1500                 } else {
1501                         edit_string.replace(0,1," ");
1502                 }
1503         }
1504
1505         show_edit_status (highlight_length);
1506         _layout->set_text (edit_string);
1507         queue_draw ();
1508
1509         return true;
1510 }
1511
1512 int
1513 AudioClock::merge_input_and_edit_string ()
1514 {
1515         /* merge with pre-edit-string into edit string */
1516
1517         edit_string = pre_edit_string;
1518
1519         if (input_string.empty()) {
1520                 return 0;
1521         }
1522
1523         string::size_type target;
1524         for (string::size_type i = 0; i < input_string.length(); ++i) {
1525                 target = insert_map[input_string.length() - 1 - i];
1526                 edit_string[target] = input_string[i];
1527         }
1528         /* highlight from end to wherever the last character was added */
1529         return edit_string.length() - insert_map[input_string.length()-1];
1530 }
1531
1532
1533 bool
1534 AudioClock::on_key_release_event (GdkEventKey *ev)
1535 {
1536         if (!editing) {
1537                 return false;
1538         }
1539
1540         /* return true for keys that we used on press
1541            so that they cannot possibly do double-duty
1542         */
1543         switch (ev->keyval) {
1544         case GDK_0:
1545         case GDK_KP_0:
1546         case GDK_1:
1547         case GDK_KP_1:
1548         case GDK_2:
1549         case GDK_KP_2:
1550         case GDK_3:
1551         case GDK_KP_3:
1552         case GDK_4:
1553         case GDK_KP_4:
1554         case GDK_5:
1555         case GDK_KP_5:
1556         case GDK_6:
1557         case GDK_KP_6:
1558         case GDK_7:
1559         case GDK_KP_7:
1560         case GDK_8:
1561         case GDK_KP_8:
1562         case GDK_9:
1563         case GDK_KP_9:
1564         case GDK_period:
1565         case GDK_comma:
1566         case GDK_KP_Decimal:
1567         case GDK_Tab:
1568         case GDK_Return:
1569         case GDK_KP_Enter:
1570         case GDK_Escape:
1571         case GDK_minus:
1572         case GDK_plus:
1573         case GDK_KP_Add:
1574         case GDK_KP_Subtract:
1575                 return true;
1576         default:
1577                 return false;
1578         }
1579 }
1580
1581 AudioClock::Field
1582 AudioClock::index_to_field (int index) const
1583 {
1584         switch (_mode) {
1585         case Timecode:
1586                 if (index < 4) {
1587                         return Timecode_Hours;
1588                 } else if (index < 7) {
1589                         return Timecode_Minutes;
1590                 } else if (index < 10) {
1591                         return Timecode_Seconds;
1592                 } else {
1593                         return Timecode_Frames;
1594                 }
1595                 break;
1596         case BBT:
1597                 if (index < 5) {
1598                         return Bars;
1599                 } else if (index < 7) {
1600                         return Beats;
1601                 } else {
1602                         return Ticks;
1603                 }
1604                 break;
1605         case MinSec:
1606                 if (index < 3) {
1607                         return Timecode_Hours;
1608                 } else if (index < 6) {
1609                         return MS_Minutes;
1610                 } else if (index < 9) {
1611                         return MS_Seconds;
1612                 } else {
1613                         return MS_Milliseconds;
1614                 }
1615                 break;
1616         case Frames:
1617                 return AudioFrames;
1618                 break;
1619         }
1620
1621         return Field (0);
1622 }
1623
1624 bool
1625 AudioClock::on_button_press_event (GdkEventButton *ev)
1626 {
1627         switch (ev->button) {
1628         case 1:
1629                 if (editable && !_off) {
1630                         int index;
1631                         int trailing;
1632                         int y;
1633                         int x;
1634
1635                         /* the text has been centered vertically, so adjust
1636                          * x and y.
1637                          */
1638                         int xcenter = (get_width() - layout_width) /2;
1639
1640                         y = ev->y - ((upper_height - layout_height)/2);
1641                         x = ev->x - xcenter;
1642
1643                         if (!_layout->xy_to_index (x * PANGO_SCALE, y * PANGO_SCALE, index, trailing)) {
1644                                 /* pretend it is a character on the far right */
1645                                 index = 99;
1646                         }
1647                         drag_field = index_to_field (index);
1648                         dragging = true;
1649                         /* make absolutely sure that the pointer is grabbed */
1650                         gdk_pointer_grab(ev->window,false ,
1651                                          GdkEventMask( Gdk::POINTER_MOTION_MASK | Gdk::BUTTON_PRESS_MASK |Gdk::BUTTON_RELEASE_MASK),
1652                                          NULL,NULL,ev->time);
1653                         drag_accum = 0;
1654                         drag_start_y = ev->y;
1655                         drag_y = ev->y;
1656                 }
1657                 break;
1658
1659         default:
1660                 return false;
1661                 break;
1662         }
1663
1664         return true;
1665 }
1666
1667 bool
1668 AudioClock::on_button_release_event (GdkEventButton *ev)
1669 {
1670         if (editable && !_off) {
1671                 if (dragging) {
1672                         gdk_pointer_ungrab (GDK_CURRENT_TIME);
1673                         dragging = false;
1674                         if (ev->y > drag_start_y+1 || ev->y < drag_start_y-1 || Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)){
1675                                 // we actually dragged so return without
1676                                 // setting editing focus, or we shift clicked
1677                                 return true;
1678                         } else {
1679                                 if (ev->button == 1) {
1680
1681                                         if (_edit_by_click_field) {
1682
1683                                                 int xcenter = (get_width() - layout_width) /2;
1684                                                 int index = 0;
1685                                                 int trailing;
1686                                                 int y = ev->y - ((upper_height - layout_height)/2);
1687                                                 int x = ev->x - xcenter;
1688                                                 Field f;
1689
1690                                                 if (!_layout->xy_to_index (x * PANGO_SCALE, y * PANGO_SCALE, index, trailing)) {
1691                                                         return true;
1692                                                 }
1693
1694                                                 f = index_to_field (index);
1695
1696                                                 switch (f) {
1697                                                 case Timecode_Frames:
1698                                                 case MS_Milliseconds:
1699                                                 case Ticks:
1700                                                         f = Field (0);
1701                                                         break;
1702                                                 default:
1703                                                         break;
1704                                                 }
1705                                                 start_edit (f);
1706                                         } else {
1707                                                 start_edit ();
1708                                         }
1709                                 }
1710                         }
1711                 }
1712         }
1713
1714         if (Keyboard::is_context_menu_event (ev)) {
1715                 if (ops_menu == 0) {
1716                         build_ops_menu ();
1717                 }
1718                 ops_menu->popup (1, ev->time);
1719                 return true;
1720         }
1721
1722         return false;
1723 }
1724
1725 bool
1726 AudioClock::on_focus_out_event (GdkEventFocus* ev)
1727 {
1728         bool ret = CairoWidget::on_focus_out_event (ev);
1729
1730         if (editing) {
1731                 end_edit (_accept_on_focus_out);
1732         }
1733
1734         return ret;
1735 }
1736
1737 bool
1738 AudioClock::on_scroll_event (GdkEventScroll *ev)
1739 {
1740         int index;
1741         int trailing;
1742
1743         if (editing || _session == 0 || !editable || _off) {
1744                 return false;
1745         }
1746
1747         int y;
1748         int x;
1749
1750         /* the text has been centered vertically, so adjust
1751          * x and y.
1752          */
1753
1754         int xcenter = (get_width() - layout_width) /2;
1755         y = ev->y - ((upper_height - layout_height)/2);
1756         x = ev->x - xcenter;
1757
1758         if (!_layout->xy_to_index (x * PANGO_SCALE, y * PANGO_SCALE, index, trailing)) {
1759                 /* not in the main layout */
1760                 return false;
1761         }
1762
1763         Field f = index_to_field (index);
1764         framepos_t frames = 0;
1765
1766         switch (ev->direction) {
1767
1768         case GDK_SCROLL_UP:
1769                 frames = get_frame_step (f, current_time(), 1);
1770                 if (frames != 0) {
1771                         if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
1772                                 frames *= 10;
1773                         }
1774                         set (current_time() + frames, true);
1775                         ValueChanged (); /* EMIT_SIGNAL */
1776                 }
1777                 break;
1778
1779         case GDK_SCROLL_DOWN:
1780                 frames = get_frame_step (f, current_time(), -1);
1781                 if (frames != 0) {
1782                         if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
1783                                 frames *= 10;
1784                         }
1785
1786                         if (!_negative_allowed && (double)current_time() - (double)frames < 0.0) {
1787                                 set (0, true);
1788                         } else {
1789                                 set (current_time() - frames, true);
1790                         }
1791
1792                         ValueChanged (); /* EMIT_SIGNAL */
1793                 }
1794                 break;
1795
1796         default:
1797                 return false;
1798                 break;
1799         }
1800
1801         return true;
1802 }
1803
1804 bool
1805 AudioClock::on_motion_notify_event (GdkEventMotion *ev)
1806 {
1807         if (editing || _session == 0 || !dragging) {
1808                 return false;
1809         }
1810
1811         float pixel_frame_scale_factor = 0.2f;
1812
1813         if (Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier))  {
1814                 pixel_frame_scale_factor = 0.1f;
1815         }
1816
1817
1818         if (Keyboard::modifier_state_contains (ev->state,
1819                                                Keyboard::PrimaryModifier|Keyboard::SecondaryModifier)) {
1820
1821                 pixel_frame_scale_factor = 0.025f;
1822         }
1823
1824         double y_delta = ev->y - drag_y;
1825
1826         drag_accum +=  y_delta*pixel_frame_scale_factor;
1827
1828         drag_y = ev->y;
1829
1830         if (floor (drag_accum) != 0) {
1831
1832                 framepos_t frames;
1833                 framepos_t pos;
1834                 int dir;
1835                 dir = (drag_accum < 0 ? 1:-1);
1836                 pos = current_time();
1837                 frames = get_frame_step (drag_field, pos, dir);
1838
1839                 if (frames  != 0 &&  frames * drag_accum < current_time()) {
1840                         set ((framepos_t) floor (pos - drag_accum * frames), false); // minus because up is negative in GTK
1841                 } else {
1842                         set (0 , false);
1843                 }
1844
1845                 drag_accum= 0;
1846                 ValueChanged();  /* EMIT_SIGNAL */
1847         }
1848
1849         return true;
1850 }
1851
1852 framepos_t
1853 AudioClock::get_frame_step (Field field, framepos_t pos, int dir)
1854 {
1855         framecnt_t f = 0;
1856         Timecode::BBT_Time BBT;
1857         switch (field) {
1858         case Timecode_Hours:
1859                 f = (framecnt_t) floor (3600.0 * _session->frame_rate());
1860                 break;
1861         case Timecode_Minutes:
1862                 f = (framecnt_t) floor (60.0 * _session->frame_rate());
1863                 break;
1864         case Timecode_Seconds:
1865                 f = _session->frame_rate();
1866                 break;
1867         case Timecode_Frames:
1868                 f = (framecnt_t) floor (_session->frame_rate() / _session->timecode_frames_per_second());
1869                 break;
1870
1871         case AudioFrames:
1872                 f = 1;
1873                 break;
1874
1875         case MS_Hours:
1876                 f = (framecnt_t) floor (3600.0 * _session->frame_rate());
1877                 break;
1878         case MS_Minutes:
1879                 f = (framecnt_t) floor (60.0 * _session->frame_rate());
1880                 break;
1881         case MS_Seconds:
1882                 f = (framecnt_t) _session->frame_rate();
1883                 break;
1884         case MS_Milliseconds:
1885                 f = (framecnt_t) floor (_session->frame_rate() / 1000.0);
1886                 break;
1887
1888         case Bars:
1889                 BBT.bars = 1;
1890                 BBT.beats = 0;
1891                 BBT.ticks = 0;
1892                 f = _session->tempo_map().bbt_duration_at (pos,BBT,dir);
1893                 break;
1894         case Beats:
1895                 BBT.bars = 0;
1896                 BBT.beats = 1;
1897                 BBT.ticks = 0;
1898                 f = _session->tempo_map().bbt_duration_at(pos,BBT,dir);
1899                 break;
1900         case Ticks:
1901                 BBT.bars = 0;
1902                 BBT.beats = 0;
1903                 BBT.ticks = 1;
1904                 f = _session->tempo_map().bbt_duration_at(pos,BBT,dir);
1905                 break;
1906         default:
1907                 error << string_compose (_("programming error: %1"), "attempt to get frames from non-text field!") << endmsg;
1908                 f = 0;
1909                 break;
1910         }
1911
1912         return f;
1913 }
1914
1915 framepos_t
1916 AudioClock::current_time (framepos_t) const
1917 {
1918         return last_when;
1919 }
1920
1921 framepos_t
1922 AudioClock::current_duration (framepos_t pos) const
1923 {
1924         framepos_t ret = 0;
1925
1926         switch (_mode) {
1927         case Timecode:
1928                 ret = last_when;
1929                 break;
1930         case BBT:
1931                 ret = frame_duration_from_bbt_string (pos, _layout->get_text());
1932                 break;
1933
1934         case MinSec:
1935                 ret = last_when;
1936                 break;
1937
1938         case Frames:
1939                 ret = last_when;
1940                 break;
1941         }
1942
1943         return ret;
1944 }
1945
1946 bool
1947 AudioClock::bbt_validate_edit (const string& str)
1948 {
1949         AnyTime any;
1950
1951         if (sscanf (str.c_str(), BBT_SCANF_FORMAT, &any.bbt.bars, &any.bbt.beats, &any.bbt.ticks) != 3) {
1952                 return false;
1953         }
1954
1955         if (any.bbt.ticks > Timecode::BBT_Time::ticks_per_beat) {
1956                 return false;
1957         }
1958
1959         if (!is_duration && any.bbt.bars == 0) {
1960                 return false;
1961         }
1962
1963         if (!is_duration && any.bbt.beats == 0) {
1964                 return false;
1965         }
1966
1967         return true;
1968 }
1969
1970 bool
1971 AudioClock::timecode_validate_edit (const string&)
1972 {
1973         Timecode::Time TC;
1974         int hours;
1975         char ignored[2];
1976
1977         if (sscanf (_layout->get_text().c_str(), "%[- _]%" PRId32 ":%" PRId32 ":%" PRId32 "%[:;]%" PRId32,
1978                     ignored, &hours, &TC.minutes, &TC.seconds, ignored, &TC.frames) != 6) {
1979                 return false;
1980         }
1981
1982         if (hours < 0) {
1983                 TC.hours = hours * -1;
1984                 TC.negative = true;
1985         } else {
1986                 TC.hours = hours;
1987                 TC.negative = false;
1988         }
1989
1990         if (TC.negative && !_negative_allowed) {
1991                 return false;
1992         }
1993
1994         if (TC.hours > 23U || TC.minutes > 59U || TC.seconds > 59U) {
1995                 return false;
1996         }
1997
1998         if (TC.frames > (uint32_t) rint (_session->timecode_frames_per_second()) - 1) {
1999                 return false;
2000         }
2001
2002         if (_session->timecode_drop_frames()) {
2003                 if (TC.minutes % 10 && TC.seconds == 0U && TC.frames < 2U) {
2004                         return false;
2005                 }
2006         }
2007
2008         return true;
2009 }
2010
2011 bool
2012 AudioClock::minsec_validate_edit (const string& str)
2013 {
2014         int hrs, mins, secs, millisecs;
2015
2016         if (sscanf (str.c_str(), "%d:%d:%d.%d", &hrs, &mins, &secs, &millisecs) != 4) {
2017                 return false;
2018         }
2019
2020         if (hrs > 23 || mins > 59 || secs > 59 || millisecs > 999) {
2021                 return false;
2022         }
2023
2024         return true;
2025 }
2026
2027 framepos_t
2028 AudioClock::frames_from_timecode_string (const string& str) const
2029 {
2030         if (_session == 0) {
2031                 return 0;
2032         }
2033
2034         Timecode::Time TC;
2035         framepos_t sample;
2036         char ignored[2];
2037         int hours;
2038
2039         if (sscanf (str.c_str(), "%[- _]%d:%d:%d%[:;]%d", ignored, &hours, &TC.minutes, &TC.seconds, ignored, &TC.frames) != 6) {
2040                 error << string_compose (_("programming error: %1 %2"), "badly formatted timecode clock string", str) << endmsg;
2041                 return 0;
2042         }
2043         TC.hours = abs(hours);
2044         TC.rate = _session->timecode_frames_per_second();
2045         TC.drop= _session->timecode_drop_frames();
2046
2047         _session->timecode_to_sample (TC, sample, false /* use_offset */, false /* use_subframes */ );
2048
2049         // timecode_tester ();
2050         if (edit_is_negative) {
2051                 sample = - sample;
2052         }
2053
2054         return sample;
2055 }
2056
2057 framepos_t
2058 AudioClock::frames_from_minsec_string (const string& str) const
2059 {
2060         if (_session == 0) {
2061                 return 0;
2062         }
2063
2064         int hrs, mins, secs, millisecs;
2065         framecnt_t sr = _session->frame_rate();
2066
2067         if (sscanf (str.c_str(), "%d:%d:%d.%d", &hrs, &mins, &secs, &millisecs) != 4) {
2068                 error << string_compose (_("programming error: %1 %2"), "badly formatted minsec clock string", str) << endmsg;
2069                 return 0;
2070         }
2071
2072         return (framepos_t) floor ((hrs * 60.0f * 60.0f * sr) + (mins * 60.0f * sr) + (secs * sr) + (millisecs * sr / 1000.0));
2073 }
2074
2075 framepos_t
2076 AudioClock::frames_from_bbt_string (framepos_t pos, const string& str) const
2077 {
2078         if (_session == 0) {
2079                 error << "AudioClock::current_time() called with BBT mode but without session!" << endmsg;
2080                 return 0;
2081         }
2082
2083         AnyTime any;
2084         any.type = AnyTime::BBT;
2085
2086         if (sscanf (str.c_str(), BBT_SCANF_FORMAT, &any.bbt.bars, &any.bbt.beats, &any.bbt.ticks) != 3) {
2087                 return 0;
2088         }
2089
2090         if (is_duration) {
2091                 any.bbt.bars++;
2092                 any.bbt.beats++;
2093                 return _session->any_duration_to_frames (pos, any);
2094         } else {
2095                 return _session->convert_to_frames (any);
2096         }
2097 }
2098
2099
2100 framepos_t
2101 AudioClock::frame_duration_from_bbt_string (framepos_t pos, const string& str) const
2102 {
2103         if (_session == 0) {
2104                 error << "AudioClock::frame_duration_from_bbt_string() called with BBT mode but without session!" << endmsg;
2105                 return 0;
2106         }
2107
2108         Timecode::BBT_Time bbt;
2109
2110         if (sscanf (str.c_str(), BBT_SCANF_FORMAT, &bbt.bars, &bbt.beats, &bbt.ticks) != 3) {
2111                 return 0;
2112         }
2113
2114         return _session->tempo_map().bbt_duration_at(pos,bbt,1);
2115 }
2116
2117 framepos_t
2118 AudioClock::frames_from_audioframes_string (const string& str) const
2119 {
2120         framepos_t f;
2121         sscanf (str.c_str(), "%" PRId64, &f);
2122         return f;
2123 }
2124
2125 void
2126 AudioClock::copy_text_to_clipboard () const
2127 {
2128         string val;
2129         if (editing) {
2130                 val = pre_edit_string;
2131         } else {
2132                 val = _layout->get_text ();
2133         }
2134         const size_t trim = val.find_first_not_of(" ");
2135         if (trim == string::npos) {
2136                 assert(0); // empty clock, can't be right.
2137                 return;
2138         }
2139         Glib::RefPtr<Clipboard> cl = Gtk::Clipboard::get();
2140         cl->set_text (val.substr(trim));
2141 }
2142
2143 void
2144 AudioClock::build_ops_menu ()
2145 {
2146         using namespace Menu_Helpers;
2147         ops_menu = new Menu;
2148         MenuList& ops_items = ops_menu->items();
2149         ops_menu->set_name ("ArdourContextMenu");
2150
2151         ops_items.push_back (MenuElem (_("Timecode"), sigc::bind (sigc::mem_fun(*this, &AudioClock::set_mode), Timecode, false)));
2152         ops_items.push_back (MenuElem (_("Bars:Beats"), sigc::bind (sigc::mem_fun(*this, &AudioClock::set_mode), BBT, false)));
2153         ops_items.push_back (MenuElem (_("Minutes:Seconds"), sigc::bind (sigc::mem_fun(*this, &AudioClock::set_mode), MinSec, false)));
2154         ops_items.push_back (MenuElem (_("Samples"), sigc::bind (sigc::mem_fun(*this, &AudioClock::set_mode), Frames, false)));
2155
2156         if (editable && !_off && !is_duration && !_follows_playhead) {
2157                 ops_items.push_back (SeparatorElem());
2158                 ops_items.push_back (MenuElem (_("Set from Playhead"), sigc::mem_fun(*this, &AudioClock::set_from_playhead)));
2159                 ops_items.push_back (MenuElem (_("Locate to This Time"), sigc::mem_fun(*this, &AudioClock::locate)));
2160         }
2161         ops_items.push_back (SeparatorElem());
2162         ops_items.push_back (MenuElem (_("Copy to clipboard"), sigc::mem_fun(*this, &AudioClock::copy_text_to_clipboard)));
2163 }
2164
2165 void
2166 AudioClock::set_from_playhead ()
2167 {
2168         if (!_session) {
2169                 return;
2170         }
2171
2172         set (_session->transport_frame());
2173         ValueChanged ();
2174 }
2175
2176 void
2177 AudioClock::locate ()
2178 {
2179         if (!_session || is_duration) {
2180                 return;
2181         }
2182
2183         _session->request_locate (current_time(), _session->transport_rolling ());
2184 }
2185
2186 void
2187 AudioClock::set_mode (Mode m, bool noemit)
2188 {
2189         if (_mode == m) {
2190                 return;
2191         }
2192
2193         _mode = m;
2194
2195         insert_map.clear();
2196
2197         _layout->set_text ("");
2198
2199         Gtk::Requisition req;
2200         set_clock_dimensions (req);
2201
2202         if (_left_layout) {
2203
2204                 _left_layout->set_attributes (info_attributes);
2205                 _right_layout->set_attributes (info_attributes);
2206                 /* adjust info_height according to font size */
2207                 int ignored;
2208                 _left_layout->set_text (" 1234567890");
2209                 _left_layout->get_pixel_size (ignored, info_height);
2210
2211                 _left_layout->set_text ("");
2212                 _right_layout->set_text ("");
2213         }
2214
2215         switch (_mode) {
2216         case Timecode:
2217                 mode_based_info_ratio = 0.6;
2218                 insert_map.push_back (11);
2219                 insert_map.push_back (10);
2220                 insert_map.push_back (8);
2221                 insert_map.push_back (7);
2222                 insert_map.push_back (5);
2223                 insert_map.push_back (4);
2224                 insert_map.push_back (2);
2225                 insert_map.push_back (1);
2226                 break;
2227
2228         case BBT:
2229                 mode_based_info_ratio = 0.5;
2230                 insert_map.push_back (11);
2231                 insert_map.push_back (10);
2232                 insert_map.push_back (9);
2233                 insert_map.push_back (8);
2234                 insert_map.push_back (6);
2235                 insert_map.push_back (5);
2236                 insert_map.push_back (3);
2237                 insert_map.push_back (2);
2238                 insert_map.push_back (1);
2239                 break;
2240
2241         case MinSec:
2242                 mode_based_info_ratio = 0.6;
2243                 insert_map.push_back (12);
2244                 insert_map.push_back (11);
2245                 insert_map.push_back (10);
2246                 insert_map.push_back (8);
2247                 insert_map.push_back (7);
2248                 insert_map.push_back (5);
2249                 insert_map.push_back (4);
2250                 insert_map.push_back (2);
2251                 insert_map.push_back (1);
2252                 break;
2253
2254         case Frames:
2255                 mode_based_info_ratio = 0.45;
2256                 break;
2257         }
2258
2259         set (last_when, true);
2260
2261         if (!is_transient && !noemit) {
2262                 ModeChanged (); /* EMIT SIGNAL (the static one)*/
2263         }
2264
2265         mode_changed (); /* EMIT SIGNAL (the member one) */
2266 }
2267
2268 void
2269 AudioClock::set_bbt_reference (framepos_t pos)
2270 {
2271         bbt_reference_time = pos;
2272 }
2273
2274 void
2275 AudioClock::on_style_changed (const Glib::RefPtr<Gtk::Style>& old_style)
2276 {
2277         CairoWidget::on_style_changed (old_style);
2278
2279         Gtk::Requisition req;
2280         set_clock_dimensions (req);
2281
2282         /* XXXX fix me ... we shouldn't be using GTK styles anyway */
2283         // set_font ();
2284         set_colors ();
2285 }
2286
2287 void
2288 AudioClock::set_editable (bool yn)
2289 {
2290         editable = yn;
2291 }
2292
2293 void
2294 AudioClock::set_is_duration (bool yn)
2295 {
2296         if (yn == is_duration) {
2297                 return;
2298         }
2299
2300         is_duration = yn;
2301         set (last_when, true);
2302 }
2303
2304 void
2305 AudioClock::set_off (bool yn)
2306 {
2307         if (_off == yn) {
2308                 return;
2309         }
2310
2311         _off = yn;
2312
2313         /* force a redraw. last_when will be preserved, but the clock text will
2314          * change
2315          */
2316
2317         set (last_when, true);
2318 }
2319
2320 void
2321 AudioClock::focus ()
2322 {
2323         start_edit (Field (0));
2324 }
2325
2326 void
2327 AudioClock::set_corner_radius (double r)
2328 {
2329         corner_radius = r;
2330         first_width = 0;
2331         first_height = 0;
2332         queue_resize ();
2333 }
2334
2335 void
2336 AudioClock::dpi_reset ()
2337 {
2338         /* force recomputation of size even if we are fixed width
2339          */
2340         first_width = 0;
2341         first_height = 0;
2342         queue_resize ();
2343 }
2344
2345 void
2346 AudioClock::set_negative_allowed (bool yn)
2347 {
2348         _negative_allowed = yn;
2349 }