fix de7d6a7 (too narrow bar)
[ardour.git] / gtk2_ardour / ardour_button.cc
1 /*
2     Copyright (C) 2010 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 <iostream>
21 #include <cmath>
22 #include <algorithm>
23
24 #include <pangomm/layout.h>
25
26 #include "pbd/compose.h"
27 #include "pbd/error.h"
28 #include "pbd/stacktrace.h"
29
30 #include "gtkmm2ext/utils.h"
31 #include "gtkmm2ext/rgb_macros.h"
32 #include "gtkmm2ext/gui_thread.h"
33
34 #include "ardour/rc_configuration.h" // for widget prelight preference
35
36 #include "canvas/utils.h"
37 #include "canvas/colors.h"
38
39 #include "ardour_button.h"
40 #include "ardour_ui.h"
41 #include "global_signals.h"
42
43 #include "i18n.h"
44
45 #define BASELINESTRETCH (1.25)
46 #define TRACKHEADERBTNW (3.10)
47
48 using namespace Gdk;
49 using namespace Gtk;
50 using namespace Glib;
51 using namespace PBD;
52 using std::max;
53 using std::min;
54 using namespace std;
55
56 ArdourButton::Element ArdourButton::default_elements = ArdourButton::Element (ArdourButton::Edge|ArdourButton::Body|ArdourButton::Text);
57 ArdourButton::Element ArdourButton::led_default_elements = ArdourButton::Element (ArdourButton::default_elements|ArdourButton::Indicator);
58 ArdourButton::Element ArdourButton::just_led_default_elements = ArdourButton::Element (ArdourButton::Edge|ArdourButton::Body|ArdourButton::Indicator);
59
60 ArdourButton::ArdourButton (Element e)
61         : _elements (e)
62         , _icon (ArdourButton::NoIcon)
63         , _tweaks (Tweaks (0))
64         , _char_pixel_width (0)
65         , _char_pixel_height (0)
66         , _char_avg_pixel_width (0)
67         , _text_width (0)
68         , _text_height (0)
69         , _diameter (0)
70         , _corner_radius (2.5)
71         , _corner_mask (0xf)
72         , _angle(0)
73         , _xalign(.5)
74         , _yalign(.5)
75         , fill_inactive_color (0)
76         , fill_active_color (0)
77         , text_active_color(0)
78         , text_inactive_color(0)
79         , led_active_color(0)
80         , led_inactive_color(0)
81         , led_custom_color (0)
82         , use_custom_led_color (false)
83         , convex_pattern (0)
84         , concave_pattern (0)
85         , led_inset_pattern (0)
86         , _led_rect (0)
87         , _act_on_release (true)
88         , _led_left (false)
89         , _distinct_led_click (false)
90         , _hovering (false)
91         , _focused (false)
92         , _fixed_colors_set (false)
93         , _fallthrough_to_parent (false)
94         , _layout_ellipsize_width (-1)
95         , _ellipsis (Pango::ELLIPSIZE_NONE)
96         , _update_colors (true)
97         , _pattern_height (0)
98 {
99         ARDOUR_UI_UTILS::ColorsChanged.connect (sigc::mem_fun (*this, &ArdourButton::color_handler));
100 }
101
102 ArdourButton::ArdourButton (const std::string& str, Element e)
103         : _elements (e)
104         , _tweaks (Tweaks (0))
105         , _text_width (0)
106         , _text_height (0)
107         , _diameter (0)
108         , _corner_radius (2.5)
109         , _corner_mask (0xf)
110         , _angle(0)
111         , _xalign(.5)
112         , _yalign(.5)
113         , fill_inactive_color (0)
114         , fill_active_color (0)
115         , text_active_color(0)
116         , text_inactive_color(0)
117         , led_active_color(0)
118         , led_inactive_color(0)
119         , led_custom_color (0)
120         , use_custom_led_color (false)
121         , convex_pattern (0)
122         , concave_pattern (0)
123         , led_inset_pattern (0)
124         , _led_rect (0)
125         , _act_on_release (true)
126         , _led_left (false)
127         , _distinct_led_click (false)
128         , _hovering (false)
129         , _focused (false)
130         , _fixed_colors_set (false)
131         , _fallthrough_to_parent (false)
132         , _layout_ellipsize_width (-1)
133         , _ellipsis (Pango::ELLIPSIZE_NONE)
134         , _update_colors (true)
135         , _pattern_height (0)
136 {
137         set_text (str);
138         ARDOUR_UI_UTILS::ColorsChanged.connect (sigc::mem_fun (*this, &ArdourButton::color_handler));
139         ARDOUR_UI_UTILS::DPIReset.connect (sigc::mem_fun (*this, &ArdourButton::on_name_changed));
140 }
141
142 ArdourButton::~ArdourButton()
143 {
144         delete _led_rect;
145
146         if (convex_pattern) {
147                 cairo_pattern_destroy (convex_pattern);
148         }
149
150         if (concave_pattern) {
151                 cairo_pattern_destroy (concave_pattern);
152         }
153
154         if (led_inset_pattern) {
155                 cairo_pattern_destroy (led_inset_pattern);
156         }
157 }
158
159 void
160 ArdourButton::set_layout_font (const Pango::FontDescription& fd)
161 {
162         ensure_layout ();
163         if (_layout) {
164                 _layout->set_font_description (fd);
165                 queue_resize ();
166         }
167 }
168
169 void
170 ArdourButton::set_text (const std::string& str)
171 {
172         _text = str;
173         if (!is_realized()) {
174                 return;
175         }
176         ensure_layout ();
177         if (_layout && _layout->get_text() != _text) {
178                 _layout->set_text (_text);
179                 queue_resize ();
180         }
181 }
182
183 void
184 ArdourButton::set_angle (const double angle)
185 {
186         _angle = angle;
187 }
188
189 void
190 ArdourButton::set_alignment (const float xa, const float ya)
191 {
192         _xalign = xa;
193         _yalign = ya;
194 }
195
196 void
197 ArdourButton::render (cairo_t* cr, cairo_rectangle_t *)
198 {
199         uint32_t text_color;
200         uint32_t led_color;
201
202         if (_update_colors) {
203                 set_colors ();
204         }
205         if (get_height() != _pattern_height) {
206                 build_patterns ();
207         }
208
209         if ( active_state() == Gtkmm2ext::ExplicitActive ) {
210                 text_color = text_active_color;
211                 led_color = led_active_color;
212         } else {
213                 text_color = text_inactive_color;
214                 led_color = led_inactive_color;
215         }
216
217         if (use_custom_led_color) {
218                 led_color = led_custom_color;
219         }
220
221         void (*rounded_function)(cairo_t*, double, double, double, double, double);
222
223         switch (_corner_mask) {
224         case 0x1: /* upper left only */
225                 rounded_function = Gtkmm2ext::rounded_top_left_rectangle;
226                 break;
227         case 0x2: /* upper right only */
228                 rounded_function = Gtkmm2ext::rounded_top_right_rectangle;
229                 break;
230         case 0x3: /* upper only */
231                 rounded_function = Gtkmm2ext::rounded_top_rectangle;
232                 break;
233                 /* should really have functions for lower right, lower left,
234                    lower only, but for now, we don't
235                 */
236         default:
237                 rounded_function = Gtkmm2ext::rounded_rectangle;
238         }
239
240         // draw edge (filling a rect underneath, rather than stroking a border on top, allows the corners to be lighter-weight.
241         if ((_elements & (Body|Edge)) == (Body|Edge)) {
242                 rounded_function (cr, 0, 0, get_width(), get_height(), _corner_radius + 1.5);
243                 cairo_set_source_rgba (cr, 0, 0, 0, 1);
244                 cairo_fill(cr);
245         }
246
247         // background fill
248         if ((_elements & Body)==Body) {
249                 rounded_function (cr, 1, 1, get_width() - 2, get_height() - 2, _corner_radius);
250                 if (active_state() == Gtkmm2ext::ImplicitActive && !((_elements & Indicator)==Indicator)) {
251                         ArdourCanvas::set_source_rgba (cr, fill_inactive_color);
252                         cairo_fill (cr);
253                 } else if ( (active_state() == Gtkmm2ext::ExplicitActive) && !((_elements & Indicator)==Indicator) ) {
254                         //background color
255                         ArdourCanvas::set_source_rgba (cr, fill_active_color);
256                         cairo_fill (cr);
257                 } else {  //inactive, or it has an indicator
258                         //background color
259                         ArdourCanvas::set_source_rgba (cr, fill_inactive_color);
260                 }
261                 cairo_fill (cr);
262         }
263
264         // IMPLICIT ACTIVE: draw a border of the active color
265         if ((_elements & Body)==Body) {
266                 if (active_state() == Gtkmm2ext::ImplicitActive && !((_elements & Indicator)==Indicator)) {
267                         cairo_set_line_width (cr, 2.0);
268                         rounded_function (cr, 2, 2, get_width() - 4, get_height() - 4, _corner_radius-0.5);
269                         ArdourCanvas::set_source_rgba (cr, fill_active_color);
270                         cairo_stroke (cr);
271                 }
272         }
273
274         //show the "convex" or "concave" gradient
275         if (!_flat_buttons) {
276                 if ( active_state() == Gtkmm2ext::ExplicitActive && ( !((_elements & Indicator)==Indicator) || use_custom_led_color) ) {
277                         //concave
278                         cairo_set_source (cr, concave_pattern);
279                         Gtkmm2ext::rounded_rectangle (cr, 1, 1, get_width() - 2, get_height() - 2, _corner_radius);
280                         cairo_fill (cr);
281                 } else {
282                         cairo_set_source (cr, convex_pattern);
283                         Gtkmm2ext::rounded_rectangle (cr, 1, 1, get_width() - 2, get_height() - 2, _corner_radius);
284                         cairo_fill (cr);
285                 }
286         }
287
288 #define VECTORICONSTROKEFILL \
289         cairo_set_line_width(cr, 1.5); \
290         cairo_set_source_rgba (cr, 0, 0, 0, 1.0); \
291         cairo_stroke_preserve(cr); \
292         cairo_set_source_rgba (cr, 1, 1, 1, 1.0); \
293         cairo_fill(cr);
294
295         //Pixbuf, if any
296         if (_pixbuf) {
297                 double x = rint((get_width() - _pixbuf->get_width()) * .5);
298                 const double y = rint((get_height() - _pixbuf->get_height()) * .5);
299 #if 0 // DEBUG style (print on hover)
300                 if (_hovering || (_elements & Inactive)) {
301                         printf("%s: p:%dx%d (%dx%d)\n",
302                                         get_name().c_str(),
303                                         _pixbuf->get_width(), _pixbuf->get_height(),
304                                         get_width(), get_height());
305                 }
306 #endif
307                 if (_elements & Menu) {
308                         //if this is a DropDown with an icon, then we need to
309                         //move the icon left slightly to accomomodate the arrow
310                         x -= _diameter - 2;
311                 }
312                 cairo_rectangle (cr, x, y, _pixbuf->get_width(), _pixbuf->get_height());
313                 gdk_cairo_set_source_pixbuf (cr, _pixbuf->gobj(), x, y);
314                 cairo_fill (cr);
315         }
316         else // rec-en is exclusive to pixbuf (tape machine mode, rec-en)
317         if ((_elements & VectorIcon) && _icon == RecTapeMode) {
318                 const double x = get_width() * .5;
319                 const double y = get_height() * .5;
320                 const double r = std::min(10., std::min(x, y) * .6); // TODO we need a better way to limit max. radius.
321                 const double slit = .11 * M_PI;
322                 cairo_save(cr);
323                 cairo_translate(cr, x, y);
324
325                 cairo_arc (cr, 0, 0, r, 0, 2 * M_PI);
326                 if (active_state() == Gtkmm2ext::ExplicitActive)
327                         cairo_set_source_rgba (cr, .95, .1, .1, 1.);
328                 else
329                         cairo_set_source_rgba (cr, .95, .44, .44, 1.); // #f46f6f
330                 cairo_fill_preserve(cr);
331                 cairo_set_source_rgba (cr, .0, .0, .0, .5);
332                 cairo_set_line_width(cr, 1);
333                 cairo_stroke(cr);
334
335                 cairo_save(cr);
336                 cairo_set_source_rgba (cr, .15, .07, .07, 1.0);
337
338                 cairo_rotate (cr, -.5 * M_PI);
339                 cairo_move_to(cr, 0, 0);
340                 cairo_arc (cr, 0, 0, r *.85, -slit, slit);
341                 cairo_line_to(cr, 0, 0);
342                 cairo_close_path(cr);
343
344                 cairo_fill(cr);
345                 cairo_rotate (cr, 2. * M_PI / 3.);
346
347                 cairo_move_to(cr, 0, 0);
348                 cairo_arc (cr, 0, 0, r *.85, -slit, slit);
349                 cairo_line_to(cr, 0, 0);
350                 cairo_close_path(cr);
351                 cairo_fill(cr);
352
353                 cairo_rotate (cr, 2. * M_PI / 3.);
354                 cairo_move_to(cr, 0, 0);
355                 cairo_arc (cr, 0, 0, r *.85, -slit, slit);
356                 cairo_line_to(cr, 0, 0);
357                 cairo_close_path(cr);
358                 cairo_fill(cr);
359
360                 cairo_restore(cr);
361
362                 cairo_arc (cr, 0, 0, r * .3, 0, 2 * M_PI);
363                 if (active_state() == Gtkmm2ext::ExplicitActive)
364                         cairo_set_source_rgba (cr, .95, .1, .1, 1.);
365                 else
366                         cairo_set_source_rgba (cr, .95, .44, .44, 1.); // #f46f6f
367                 cairo_fill(cr);
368                 cairo_set_source_rgba (cr, .0, .0, .0, 1.0);
369                 cairo_arc (cr, 0, 0, r *.15, 0, 2 * M_PI); // hole in the middle
370                 cairo_fill(cr);
371
372                 cairo_restore(cr);
373         }
374         else if ((_elements & VectorIcon) && _icon == RecButton) {
375                 const double x = get_width() * .5;
376                 const double y = get_height() * .5;
377                 const double r = std::min(10., std::min(x, y) * .55); // TODO we need a better way to limit max. radius.
378                 cairo_arc (cr, x, y, r, 0, 2 * M_PI);
379                 if (active_state() == Gtkmm2ext::ExplicitActive)
380                         cairo_set_source_rgba (cr, .95, .1, .1, 1.);
381                 else
382                         cairo_set_source_rgba (cr, .95, .44, .44, 1.); // #f46f6f
383                 cairo_fill_preserve(cr);
384                 cairo_set_source_rgba (cr, .0, .0, .0, .8);
385                 cairo_set_line_width(cr, 1);
386                 cairo_stroke(cr);
387         }
388         else if ((_elements & VectorIcon) && _icon == CloseCross) {
389                 const double x = get_width() * .5;
390                 const double y = get_height() * .5;
391                 const double o = .5 + std::min(x, y) * .4;
392                 ArdourCanvas::set_source_rgba (cr, text_color);
393                 cairo_set_line_width(cr, 1);
394                 cairo_move_to(cr, x-o, y-o);
395                 cairo_line_to(cr, x+o, y+o);
396                 cairo_move_to(cr, x+o, y-o);
397                 cairo_line_to(cr, x-o, y+o);
398                 cairo_stroke(cr);
399         }
400         else if ((_elements & VectorIcon) && _icon == StripWidth) {
401                 const double x0 = get_width()  * .2;
402                 const double x1 = get_width()  * .8;
403
404                 const double y0 = get_height() * .25;
405                 const double y1= get_height()  * .75;
406
407                 const double ym= get_height()  * .5;
408
409                 // arrow
410                 const double xa0= get_height()  * .39;
411                 const double xa1= get_height()  * .61;
412                 const double ya0= get_height()  * .35;
413                 const double ya1= get_height()  * .65;
414
415                 ArdourCanvas::set_source_rgba (cr, text_color);
416                 cairo_set_line_width(cr, 1);
417
418                 // left + right
419                 cairo_move_to(cr, x0, y0);
420                 cairo_line_to(cr, x0, y1);
421                 cairo_move_to(cr, x1, y0);
422                 cairo_line_to(cr, x1, y1);
423
424                 // horiz center line
425                 cairo_move_to(cr, x0, ym);
426                 cairo_line_to(cr, x1, ym);
427
428                 // arrow left
429                 cairo_move_to(cr,  x0, ym);
430                 cairo_line_to(cr, xa0, ya0);
431                 cairo_move_to(cr,  x0, ym);
432                 cairo_line_to(cr, xa0, ya1);
433
434                 // arrow right
435                 cairo_move_to(cr,  x1,  ym);
436                 cairo_line_to(cr, xa1, ya0);
437                 cairo_move_to(cr,  x1,  ym);
438                 cairo_line_to(cr, xa1, ya1);
439                 cairo_stroke(cr);
440         }
441         else if ((_elements & VectorIcon) && _icon == DinMidi) {
442                 const double x = get_width() * .5;
443                 const double y = get_height() * .5;
444                 const double r = std::min(x, y) * .75;
445                 ArdourCanvas::set_source_rgba (cr, text_color);
446                 cairo_set_line_width(cr, 1);
447                 cairo_arc (cr, x, y, r, 0, 2 * M_PI);
448                 cairo_stroke(cr);
449
450                 // pins equally spaced 45deg
451                 cairo_arc (cr, x, y * 0.5, r * .15, 0, 2 * M_PI);
452                 cairo_fill(cr);
453                 cairo_arc (cr, x * 0.5, y, r * .15, 0, 2 * M_PI);
454                 cairo_fill(cr);
455                 cairo_arc (cr, x * 1.5, y, r * .15, 0, 2 * M_PI);
456                 cairo_fill(cr);
457                 //  .5 + .5 * .5 * sin(45deg),  1.5 - .5 * .5 * cos(45deg)
458                 cairo_arc (cr, x * 0.677, y * .677, r * .15, 0, 2 * M_PI);
459                 cairo_fill(cr);
460                 cairo_arc (cr, x * 1.323, y * .677, r * .15, 0, 2 * M_PI);
461                 cairo_fill(cr);
462
463                 // bottom notch
464                 cairo_arc (cr, x, y+r, r * .28, 1.05 * M_PI, 1.95 * M_PI);
465                 cairo_stroke(cr);
466         }
467         else if ((_elements & VectorIcon) && _icon == BtnStop) {
468                 const int wh = std::min (get_width(), get_height());
469                 cairo_rectangle (cr,
470                                 (get_width() - wh) * .5 + wh * .25,
471                                 (get_height() - wh) * .5 + wh * .25,
472                                 wh * .5, wh * .5);
473
474                 VECTORICONSTROKEFILL;
475         }
476         else if ((_elements & VectorIcon) && _icon == BtnPlay) {
477                 const int wh = std::min (get_width(), get_height()) * .5;
478                 const double y = get_height() * .5;
479                 const double x = get_width() - wh;
480
481                 const float tri = ceil(.577 * wh); // 1/sqrt(3)
482
483                 cairo_move_to (cr,  x + wh * .5, y);
484                 cairo_line_to (cr,  x - wh * .5, y - tri);
485                 cairo_line_to (cr,  x - wh * .5, y + tri);
486                 cairo_close_path (cr);
487
488                 VECTORICONSTROKEFILL;
489         }
490         else if ((_elements & VectorIcon) && _icon == BtnPanic) {
491                 const int wh = std::min (get_width(), get_height()) * .1;
492                 const double xc = get_width() * .5;
493                 const double yh = get_height();
494                 cairo_rectangle (cr,
495                                 xc - wh, yh *.2,
496                                 wh * 2,  yh *.4);
497                 VECTORICONSTROKEFILL;
498
499                 cairo_arc (cr, xc, yh *.75, wh, 0, 2 * M_PI);
500                 VECTORICONSTROKEFILL;
501         }
502         else if ((_elements & VectorIcon) && (_icon == BtnStart || _icon == BtnEnd || _icon == BtnRange)) {
503                 // small play triangle
504                 int wh = std::min (get_width(), get_height());
505                 const double y = get_height() * .5;
506                 const double x = get_width() - wh * .5;
507                 wh *= .18;
508                 const float tri = ceil(.577 * wh * 2); // 1/sqrt(3)
509
510                 const float ln = std::min (get_width(), get_height()) * .07;
511
512                 if (_icon == BtnStart || _icon == BtnRange) {
513                         cairo_rectangle (cr,
514                                         x - wh - ln, y  - tri * 1.7,
515                                         ln * 2,  tri * 3.4);
516
517                         VECTORICONSTROKEFILL;
518                 }
519
520                 if (_icon == BtnEnd || _icon == BtnRange) {
521                         cairo_rectangle (cr,
522                                         x + wh - ln, y  - tri * 1.7,
523                                         ln * 2,  tri * 3.4);
524
525                         VECTORICONSTROKEFILL;
526                 }
527
528                 cairo_move_to (cr,  x + wh, y);
529                 cairo_line_to (cr,  x - wh, y - tri);
530                 cairo_line_to (cr,  x - wh, y + tri);
531                 cairo_close_path (cr);
532
533                 VECTORICONSTROKEFILL;
534         }
535         else if (_elements & VectorIcon) {
536                 // missing icon
537                 assert(0);
538         }
539
540         const int text_margin = char_pixel_width();
541         // Text, if any
542         if (!_pixbuf && ((_elements & Text)==Text) && !_text.empty()) {
543                 assert(_layout);
544 #if 0 // DEBUG style (print on hover)
545                 if (_hovering || (_elements & Inactive)) {
546                         bool layout_font = true;
547                         Pango::FontDescription fd = _layout->get_font_description();
548                         if (fd.gobj() == NULL) {
549                                 layout_font = false;
550                                 fd = get_pango_context()->get_font_description();
551                         }
552                         printf("%s: f:%dx%d aw:%.3f bh:%.0f t:%dx%d (%dx%d) %s\"%s\"\n",
553                                         get_name().c_str(),
554                                         char_pixel_width(), char_pixel_height(), char_avg_pixel_width(),
555                                         ceil(char_pixel_height() * BASELINESTRETCH),
556                                         _text_width, _text_height,
557                                         get_width(), get_height(),
558                                         layout_font ? "L:" : "W:",
559                                         fd.to_string().c_str());
560                 }
561 #endif
562
563                 cairo_save (cr);
564                 cairo_rectangle (cr, 2, 1, get_width() - 4, get_height() - 2);
565                 cairo_clip(cr);
566
567                 cairo_new_path (cr);
568                 ArdourCanvas::set_source_rgba (cr, text_color);
569                 const double text_ypos = (get_height() - _text_height) * .5;
570
571                 if (_elements & Menu) {
572                         // always left align (dropdown)
573                         cairo_move_to (cr, text_margin, text_ypos);
574                         pango_cairo_show_layout (cr, _layout->gobj());
575                 } else if ( (_elements & Indicator)  == Indicator) {
576                         // left/right align depending on LED position
577                         if (_led_left) {
578                                 cairo_move_to (cr, text_margin + _diameter + .5 * char_pixel_width(), text_ypos);
579                         } else {
580                                 cairo_move_to (cr, text_margin, text_ypos);
581                         }
582                         pango_cairo_show_layout (cr, _layout->gobj());
583                 } else {
584                         /* centered text otherwise */
585                         double ww, wh;
586                         double xa, ya;
587                         ww = get_width();
588                         wh = get_height();
589
590                         cairo_save (cr);
591                         cairo_rotate(cr, _angle * M_PI / 180.0);
592                         cairo_device_to_user(cr, &ww, &wh);
593                         xa = (ww - _text_width) * _xalign;
594                         ya = (wh - _text_height) * _yalign;
595
596                         /* quick hack for left/bottom alignment at -90deg
597                          * TODO this should be generalized incl rotation.
598                          * currently only 'user' of this API is meter_strip.cc
599                          */
600                         if (_xalign < 0) xa = ceil(.5 + (ww * fabs(_xalign) + text_margin));
601
602                         cairo_move_to (cr, xa, ya);
603                         pango_cairo_update_layout(cr, _layout->gobj());
604                         pango_cairo_show_layout (cr, _layout->gobj());
605                         cairo_restore (cr);
606                 }
607                 cairo_restore (cr);
608         }
609
610         //Menu "triangle"
611         if (_elements & Menu) {
612                 const float trih = ceil(_diameter * .5);
613                 const float triw2 = ceil(.577 * _diameter * .5); // 1/sqrt(3) Equilateral triangle
614                 //menu arrow
615                 cairo_set_source_rgba (cr, 1, 1, 1, 0.4);
616                 cairo_move_to(cr, get_width() - triw2 - 3. , rint((get_height() + trih) * .5));
617                 cairo_rel_line_to(cr, -triw2, -trih);
618                 cairo_rel_line_to(cr, 2. * triw2, 0);
619                 cairo_close_path(cr);
620
621                 cairo_set_source_rgba (cr, 1, 1, 1, 0.4);
622                 cairo_fill(cr);
623
624                 cairo_move_to(cr, get_width() - triw2 - 3 , rint((get_height() + trih) * .5));
625                 cairo_rel_line_to(cr, .5 - triw2, .5 - trih);
626                 cairo_rel_line_to(cr, 2. * triw2 - 1, 0);
627                 cairo_close_path(cr);
628                 cairo_set_source_rgba (cr, 0, 0, 0, 0.8);
629                 cairo_set_line_width(cr, 1);
630                 cairo_stroke(cr);
631         }
632
633         //Indicator LED
634         if (_elements & Indicator) {
635                 cairo_save (cr);
636
637                 /* move to the center of the indicator/led */
638                 if (_elements & Text) {
639                         int led_xoff = ceil(char_pixel_width() + _diameter * .5);
640                         if (_led_left) {
641                                 cairo_translate (cr, led_xoff, get_height() * .5);
642                         } else {
643                                 cairo_translate (cr, get_width() - led_xoff, get_height() * .5);
644                         }
645                 } else {
646                         cairo_translate (cr, get_width() * .5, get_height() * .5);
647                 }
648
649                 //inset
650                 if (!_flat_buttons) {
651                         cairo_arc (cr, 0, 0, _diameter * .5, 0, 2 * M_PI);
652                         cairo_set_source (cr, led_inset_pattern);
653                         cairo_fill (cr);
654                 }
655
656                 //black ring
657                 cairo_set_source_rgb (cr, 0, 0, 0);
658                 cairo_arc (cr, 0, 0, _diameter * .5 - 1, 0, 2 * M_PI);
659                 cairo_fill(cr);
660
661                 //led color
662                 ArdourCanvas::set_source_rgba (cr, led_color);
663                 cairo_arc (cr, 0, 0, _diameter * .5 - 3, 0, 2 * M_PI);
664                 cairo_fill(cr);
665
666                 cairo_restore (cr);
667         }
668
669         // a transparent overlay to indicate insensitivity
670         if ((visual_state() & Gtkmm2ext::Insensitive)) {
671                 rounded_function (cr, 0, 0, get_width(), get_height(), _corner_radius);
672                 uint32_t ins_color = ARDOUR_UI::config()->color ("gtk_background");
673                 ArdourCanvas::set_source_rgb_a (cr, ins_color, 0.6);
674                 cairo_fill (cr);
675         }
676
677         // if requested, show hovering
678         if (ARDOUR_UI::config()->get_widget_prelight()
679                         && !((visual_state() & Gtkmm2ext::Insensitive))) {
680                 if (_hovering) {
681                         rounded_function (cr, 1, 1, get_width() - 2, get_height() - 2, _corner_radius);
682                         cairo_set_source_rgba (cr, 0.905, 0.917, 0.925, 0.2);
683                         cairo_fill (cr);
684                 }
685         }
686
687         //user is currently pressing the button. dark outline helps to indicate this
688         if (_grabbed && !(_elements & (Inactive|Menu))) {
689                 rounded_function (cr, 1, 1, get_width() - 2, get_height() - 2, _corner_radius);
690                 cairo_set_line_width(cr, 2);
691                 cairo_set_source_rgba (cr, 0.1, 0.1, 0.1, .5);
692                 cairo_stroke (cr);
693         }
694
695         //some buttons (like processor boxes) can be selected  (so they can be deleted).  Draw a selection indicator
696         if (visual_state() & Gtkmm2ext::Selected) {
697                 cairo_set_line_width(cr, 1);
698                 cairo_set_source_rgba (cr, 1, 0, 0, 0.8);
699                 rounded_function (cr, 0.5, 0.5, get_width() - 1, get_height() - 1, _corner_radius);
700                 cairo_stroke (cr);
701         }
702
703         //I guess this means we have keyboard focus.  I don't think this works currently
704         //
705         //A: yes, it's keyboard focus and it does work when there's no editor window
706         //   (the editor is always the first receiver for KeyDown).
707         //   It's needed for eg. the engine-dialog at startup or after closing a sesion.
708         if (_focused) {
709                 rounded_function (cr, 1.5, 1.5, get_width() - 3, get_height() - 3, _corner_radius);
710                 cairo_set_source_rgba (cr, 0.905, 0.917, 0.925, 0.8);
711                 double dashes = 1;
712                 cairo_set_dash (cr, &dashes, 1, 0);
713                 cairo_set_line_cap (cr, CAIRO_LINE_CAP_BUTT);
714                 cairo_set_line_width (cr, 1.0);
715                 cairo_stroke (cr);
716                 cairo_set_dash (cr, 0, 0, 0);
717         }
718 }
719
720 void
721 ArdourButton::set_corner_radius (float r)
722 {
723         _corner_radius = r;
724         CairoWidget::set_dirty ();
725 }
726
727 void
728 ArdourButton::on_realize()
729 {
730         CairoWidget::on_realize ();
731         ensure_layout ();
732         if (_layout && _layout->get_text() != _text) {
733                 _layout->set_text (_text);
734                 queue_resize ();
735         }
736 }
737
738 void
739 ArdourButton::on_size_request (Gtk::Requisition* req)
740 {
741         req->width = req->height = 0;
742         CairoWidget::on_size_request (req);
743
744         if (_diameter == 0) {
745                 const float newdia = rint (ARDOUR_UI::config()->get_font_scale () / 9600.0); // 11px with 100% font-scaling
746                 if (_diameter != newdia) {
747                         _pattern_height = 0;
748                         _diameter = newdia;
749                 }
750         }
751
752         if ((_elements & Text) && !_text.empty()) {
753                 // if _layout does not exist, char_pixel_height() creates it,
754                 req->height = std::max(req->height, (int) ceil(char_pixel_height() * BASELINESTRETCH + 1.0));
755                 _layout->get_pixel_size (_text_width, _text_height);
756                 req->width += rint(1.75 * char_pixel_width()); // padding
757                 req->width += _text_width;
758         } else {
759                 _text_width = 0;
760                 _text_height = 0;
761         }
762
763         if (_pixbuf) {
764                 req->width += _pixbuf->get_width() + char_pixel_width();
765                 req->height = std::max(req->height, _pixbuf->get_height() + 4);
766         }
767
768         if (_elements & Indicator) {
769                 req->width += lrint (_diameter) + char_pixel_width();
770                 req->height = std::max (req->height, (int) lrint (_diameter) + 4);
771         }
772
773         if ((_elements & Menu)) {
774                 req->width += _diameter + 4;
775         }
776
777         if (_elements & VectorIcon) {
778                 assert(!(_elements & Text));
779                 const int wh = std::max (rint (TRACKHEADERBTNW * char_avg_pixel_width()), ceil (char_pixel_height() * BASELINESTRETCH + 1.));
780                 req->width += wh;
781                 req->height = std::max(req->height, wh);
782         }
783
784         /* Tweaks to mess the nice stuff above up again. */
785         if (_tweaks & TrackHeader) {
786                 // forget everything above and just use a fixed square [em] size
787                 // "TrackHeader Buttons" are single letter (usually uppercase)
788                 // a SizeGroup is much less efficient (lots of gtk work under the hood for each track)
789                 const int wh = std::max (rint (TRACKHEADERBTNW * char_avg_pixel_width()), ceil (char_pixel_height() * BASELINESTRETCH + 1.));
790                 req->width  = wh;
791                 req->height = wh;
792         }
793         else if (_tweaks & Square) {
794                 // currerntly unused (again)
795                 if (req->width < req->height)
796                         req->width = req->height;
797                 if (req->height < req->width)
798                         req->height = req->width;
799         } else if (_text_width > 0 && !(_elements & (Menu | Indicator))) {
800                 // properly centered text for those elements that are centered
801                 // (no sub-pixel offset)
802                 if ((req->width - _text_width) & 1) { ++req->width; }
803                 if ((req->height - _text_height) & 1) { ++req->height; }
804         }
805 #if 0
806                 printf("REQ: %s: %dx%d\n", get_name().c_str(), req->width, req->height);
807 #endif
808 }
809
810 /**
811  * This sets the colors used for rendering based on the name of the button, and
812  * thus uses information from the GUI config data.
813  */
814 void
815 ArdourButton::set_colors ()
816 {
817         _update_colors = false;
818         if (_fixed_colors_set) {
819                 return;
820         }
821         std::string name = get_name();
822         bool failed = false;
823
824         fill_active_color = ARDOUR_UI::config()->color (string_compose ("%1: fill active", name), &failed);
825         if (failed) {
826                 fill_active_color = ARDOUR_UI::config()->color ("generic button: fill active");
827         }
828         fill_inactive_color = ARDOUR_UI::config()->color (string_compose ("%1: fill", name), &failed);
829         if (failed) {
830                 fill_inactive_color = ARDOUR_UI::config()->color ("generic button: fill");
831         }
832
833         text_active_color = ArdourCanvas::contrasting_text_color (fill_active_color);
834         text_inactive_color = ArdourCanvas::contrasting_text_color (fill_inactive_color);
835
836         led_active_color = ARDOUR_UI::config()->color (string_compose ("%1: led active", name), &failed);
837         if (failed) {
838                 led_active_color = ARDOUR_UI::config()->color ("generic button: led active");
839         }
840
841         /* The inactive color for the LED is just a fairly dark version of the
842          * active color.
843          */
844         
845         ArdourCanvas::HSV inactive (led_active_color);
846         inactive.v = 0.35;
847
848         led_inactive_color = inactive.color ();
849 }
850
851 /**
852  * This sets the colors used for rendering based on two fixed values, rather
853  * than basing them on the button name, and thus information in the GUI config
854  * data.
855  */
856 void ArdourButton::set_fixed_colors (const uint32_t color_active, const uint32_t color_inactive)
857 {
858         _fixed_colors_set = true;
859
860         fill_active_color = color_active;
861         fill_inactive_color = color_inactive;
862
863         unsigned char r, g, b, a;
864         UINT_TO_RGBA(color_active, &r, &g, &b, &a);
865
866         double white_contrast = (max (double(r), 255.) - min (double(r), 255.)) +
867                 (max (double(g), 255.) - min (double(g), 255.)) +
868                 (max (double(b), 255.) - min (double(b), 255.));
869
870         double black_contrast = (max (double(r), 0.) - min (double(r), 0.)) +
871                 (max (double(g), 0.) - min (double(g), 0.)) +
872                 (max (double(b), 0.) - min (double(b), 0.));
873
874         text_active_color = (white_contrast > black_contrast) ?
875                 RGBA_TO_UINT(255, 255, 255, 255) : /* use white */
876                 RGBA_TO_UINT(  0,   0,   0,   255);  /* use black */
877
878
879         UINT_TO_RGBA(color_inactive, &r, &g, &b, &a);
880
881         white_contrast = (max (double(r), 255.) - min (double(r), 255.)) +
882                 (max (double(g), 255.) - min (double(g), 255.)) +
883                 (max (double(b), 255.) - min (double(b), 255.));
884
885         black_contrast = (max (double(r), 0.) - min (double(r), 0.)) +
886                 (max (double(g), 0.) - min (double(g), 0.)) +
887                 (max (double(b), 0.) - min (double(b), 0.));
888
889         text_inactive_color = (white_contrast > black_contrast) ?
890                 RGBA_TO_UINT(255, 255, 255, 255) : /* use white */
891                 RGBA_TO_UINT(  0,   0,   0,   255);  /* use black */
892
893         /* XXX what about led colors ? */
894         CairoWidget::set_dirty ();
895 }
896
897 void
898 ArdourButton::build_patterns ()
899 {
900         if (convex_pattern) {
901                 cairo_pattern_destroy (convex_pattern);
902                 convex_pattern = 0;
903         }
904
905         if (concave_pattern) {
906                 cairo_pattern_destroy (concave_pattern);
907                 concave_pattern = 0;
908         }
909
910         if (led_inset_pattern) {
911                 cairo_pattern_destroy (led_inset_pattern);
912                 led_inset_pattern = 0;
913         }
914
915         //convex gradient
916         convex_pattern = cairo_pattern_create_linear (0.0, 0, 0.0,  get_height());
917         cairo_pattern_add_color_stop_rgba (convex_pattern, 0.0, 0,0,0, 0.0);
918         cairo_pattern_add_color_stop_rgba (convex_pattern, 1.0, 0,0,0, 0.35);
919
920         //concave gradient
921         concave_pattern = cairo_pattern_create_linear (0.0, 0, 0.0,  get_height());
922         cairo_pattern_add_color_stop_rgba (concave_pattern, 0.0, 0,0,0, 0.5);
923         cairo_pattern_add_color_stop_rgba (concave_pattern, 0.7, 0,0,0, 0.0);
924
925         led_inset_pattern = cairo_pattern_create_linear (0.0, 0.0, 0.0, _diameter);
926         cairo_pattern_add_color_stop_rgba (led_inset_pattern, 0, 0,0,0, 0.4);
927         cairo_pattern_add_color_stop_rgba (led_inset_pattern, 1, 1,1,1, 0.7);
928
929         _pattern_height = get_height() ;
930 }
931
932 void
933 ArdourButton::set_led_left (bool yn)
934 {
935         _led_left = yn;
936 }
937
938 bool
939 ArdourButton::on_button_press_event (GdkEventButton *ev)
940 {
941         focus_handler ();
942
943         if (ev->button == 1 && (_elements & Indicator) && _led_rect && _distinct_led_click) {
944                 if (ev->x >= _led_rect->x && ev->x < _led_rect->x + _led_rect->width &&
945                     ev->y >= _led_rect->y && ev->y < _led_rect->y + _led_rect->height) {
946                         return true;
947                 }
948         }
949
950         if (binding_proxy.button_press_handler (ev)) {
951                 return true;
952         }
953
954         _grabbed = true;
955         CairoWidget::set_dirty ();
956
957         if (ev->button == 1 && !_act_on_release) {
958                 if (_action) {
959                         _action->activate ();
960                         return true;
961                 }
962         }
963
964         if (_fallthrough_to_parent)
965                 return false;
966
967         return true;
968 }
969
970 bool
971 ArdourButton::on_button_release_event (GdkEventButton *ev)
972 {
973         if (ev->button == 1 && _hovering && (_elements & Indicator) && _led_rect && _distinct_led_click) {
974                 if (ev->x >= _led_rect->x && ev->x < _led_rect->x + _led_rect->width &&
975                     ev->y >= _led_rect->y && ev->y < _led_rect->y + _led_rect->height) {
976                         signal_led_clicked(); /* EMIT SIGNAL */
977                         return true;
978                 }
979         }
980
981         _grabbed = false;
982         CairoWidget::set_dirty ();
983
984         if (ev->button == 1 && _hovering) {
985                 signal_clicked ();
986                 if (_act_on_release) {
987                         if (_action) {
988                                 _action->activate ();
989                                 return true;
990                         }
991                 }
992         }
993
994         if (_fallthrough_to_parent)
995                 return false;
996
997         return true;
998 }
999
1000 void
1001 ArdourButton::set_distinct_led_click (bool yn)
1002 {
1003         _distinct_led_click = yn;
1004         setup_led_rect ();
1005 }
1006
1007 void
1008 ArdourButton::color_handler ()
1009 {
1010         _update_colors = true;
1011         CairoWidget::set_dirty ();
1012 }
1013
1014 void
1015 ArdourButton::on_size_allocate (Allocation& alloc)
1016 {
1017         CairoWidget::on_size_allocate (alloc);
1018         setup_led_rect ();
1019 }
1020
1021 void
1022 ArdourButton::set_controllable (boost::shared_ptr<Controllable> c)
1023 {
1024         watch_connection.disconnect ();
1025         binding_proxy.set_controllable (c);
1026 }
1027
1028 void
1029 ArdourButton::watch ()
1030 {
1031         boost::shared_ptr<Controllable> c (binding_proxy.get_controllable ());
1032
1033         if (!c) {
1034                 warning << _("button cannot watch state of non-existing Controllable\n") << endmsg;
1035                 return;
1036         }
1037         c->Changed.connect (watch_connection, invalidator(*this), boost::bind (&ArdourButton::controllable_changed, this), gui_context());
1038 }
1039
1040 void
1041 ArdourButton::controllable_changed ()
1042 {
1043         float val = binding_proxy.get_controllable()->get_value();
1044
1045         if (fabs (val) >= 0.5f) {
1046                 set_active_state (Gtkmm2ext::ExplicitActive);
1047         } else {
1048                 unset_active_state ();
1049         }
1050         CairoWidget::set_dirty ();
1051 }
1052
1053 void
1054 ArdourButton::set_related_action (RefPtr<Action> act)
1055 {
1056         Gtkmm2ext::Activatable::set_related_action (act);
1057
1058         if (_action) {
1059
1060                 action_tooltip_changed ();
1061
1062                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (_action);
1063                 if (tact) {
1064                         action_toggled ();
1065                         tact->signal_toggled().connect (sigc::mem_fun (*this, &ArdourButton::action_toggled));
1066                 }
1067
1068                 _action->connect_property_changed ("sensitive", sigc::mem_fun (*this, &ArdourButton::action_sensitivity_changed));
1069                 _action->connect_property_changed ("visible", sigc::mem_fun (*this, &ArdourButton::action_visibility_changed));
1070                 _action->connect_property_changed ("tooltip", sigc::mem_fun (*this, &ArdourButton::action_tooltip_changed));
1071         }
1072 }
1073
1074 void
1075 ArdourButton::action_toggled ()
1076 {
1077         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (_action);
1078
1079         if (tact) {
1080                 if (tact->get_active()) {
1081                         set_active_state (Gtkmm2ext::ExplicitActive);
1082                 } else {
1083                         unset_active_state ();
1084                 }
1085         }
1086 }
1087
1088 void
1089 ArdourButton::on_style_changed (const RefPtr<Gtk::Style>&)
1090 {
1091         _update_colors = true;
1092         CairoWidget::set_dirty ();
1093 }
1094
1095 void
1096 ArdourButton::on_name_changed ()
1097 {
1098         _char_pixel_width = 0;
1099         _char_pixel_height = 0;
1100         _diameter = 0;
1101         _update_colors = true;
1102         if (is_realized()) {
1103                 queue_resize ();
1104         }
1105 }
1106
1107 void
1108 ArdourButton::setup_led_rect ()
1109 {
1110         if (!(_elements & Indicator)) {
1111                 delete _led_rect;
1112                 _led_rect = 0;
1113                 return;
1114         }
1115
1116         if (!_led_rect) {
1117                 _led_rect = new cairo_rectangle_t;
1118         }
1119
1120         if (_elements & Text) {
1121                 if (_led_left) {
1122                         _led_rect->x = char_pixel_width();
1123                 } else {
1124                         _led_rect->x = get_width() - char_pixel_width() + _diameter;
1125                 }
1126         } else {
1127                 /* centered */
1128                 _led_rect->x = .5 * get_width() - _diameter;
1129         }
1130
1131         _led_rect->y = .5 * (get_height() - _diameter);
1132         _led_rect->width = _diameter;
1133         _led_rect->height = _diameter;
1134 }
1135
1136 void
1137 ArdourButton::set_image (const RefPtr<Gdk::Pixbuf>& img)
1138 {
1139         _pixbuf = img;
1140         if (is_realized()) {
1141                 queue_resize ();
1142         }
1143 }
1144
1145 void
1146 ArdourButton::set_active_state (Gtkmm2ext::ActiveState s)
1147 {
1148         bool changed = (_active_state != s);
1149         CairoWidget::set_active_state (s);
1150         if (changed) {
1151                 _update_colors = true;
1152                 CairoWidget::set_dirty ();
1153         }
1154 }
1155
1156 void
1157 ArdourButton::set_visual_state (Gtkmm2ext::VisualState s)
1158 {
1159         bool changed = (_visual_state != s);
1160         CairoWidget::set_visual_state (s);
1161         if (changed) {
1162                 _update_colors = true;
1163                 CairoWidget::set_dirty ();
1164         }
1165 }
1166
1167 bool
1168 ArdourButton::on_focus_in_event (GdkEventFocus* ev)
1169 {
1170         _focused = true;
1171         CairoWidget::set_dirty ();
1172         return CairoWidget::on_focus_in_event (ev);
1173 }
1174
1175 bool
1176 ArdourButton::on_focus_out_event (GdkEventFocus* ev)
1177 {
1178         _focused = false;
1179         CairoWidget::set_dirty ();
1180         return CairoWidget::on_focus_out_event (ev);
1181 }
1182
1183 bool
1184 ArdourButton::on_key_release_event (GdkEventKey *ev) {
1185         if (_focused &&
1186                         (ev->keyval == GDK_space || ev->keyval == GDK_Return))
1187         {
1188                 signal_clicked();
1189                 if (_action) {
1190                         _action->activate ();
1191                 }
1192                 return true;
1193         }
1194         return CairoWidget::on_key_release_event (ev);
1195 }
1196
1197 bool
1198 ArdourButton::on_enter_notify_event (GdkEventCrossing* ev)
1199 {
1200         _hovering = (_elements & Inactive) ? false : true;
1201
1202         if (ARDOUR_UI::config()->get_widget_prelight()) {
1203                 CairoWidget::set_dirty ();
1204         }
1205
1206         return CairoWidget::on_enter_notify_event (ev);
1207 }
1208
1209 bool
1210 ArdourButton::on_leave_notify_event (GdkEventCrossing* ev)
1211 {
1212         _hovering = false;
1213
1214         if (ARDOUR_UI::config()->get_widget_prelight()) {
1215                 CairoWidget::set_dirty ();
1216         }
1217
1218         return CairoWidget::on_leave_notify_event (ev);
1219 }
1220
1221 void
1222 ArdourButton::set_tweaks (Tweaks t)
1223 {
1224         if (_tweaks != t) {
1225                 _tweaks = t;
1226                 if (is_realized()) {
1227                         queue_resize ();
1228                 }
1229         }
1230 }
1231
1232 void
1233 ArdourButton::action_sensitivity_changed ()
1234 {
1235         if (_action->property_sensitive ()) {
1236                 set_visual_state (Gtkmm2ext::VisualState (visual_state() & ~Gtkmm2ext::Insensitive));
1237         } else {
1238                 set_visual_state (Gtkmm2ext::VisualState (visual_state() | Gtkmm2ext::Insensitive));
1239         }
1240 }
1241
1242 void
1243 ArdourButton::set_layout_ellipsize_width (int w)
1244 {
1245         if (_layout_ellipsize_width == w) {
1246                 return;
1247         }
1248         _layout_ellipsize_width = w;
1249         if (!_layout) {
1250                 return;
1251         }
1252         if (_layout_ellipsize_width > 3 * PANGO_SCALE) {
1253                 _layout->set_width (_layout_ellipsize_width - 3 * PANGO_SCALE);
1254         }
1255         if (is_realized ()) {
1256                 queue_resize ();
1257         }
1258 }
1259
1260 void
1261 ArdourButton::set_text_ellipsize (Pango::EllipsizeMode e)
1262 {
1263         if (_ellipsis == e) {
1264                 return;
1265         }
1266         _ellipsis = e;
1267         if (!_layout) {
1268                 return;
1269         }
1270         _layout->set_ellipsize(_ellipsis);
1271         if (_layout_ellipsize_width > 3 * PANGO_SCALE) {
1272                 _layout->set_width (_layout_ellipsize_width - 3 * PANGO_SCALE);
1273         }
1274         if (is_realized ()) {
1275                 queue_resize ();
1276         }
1277 }
1278
1279 void
1280 ArdourButton::ensure_layout ()
1281 {
1282         if (!_layout) {
1283                 ensure_style ();
1284                 _layout = Pango::Layout::create (get_pango_context());
1285                 _layout->set_ellipsize(_ellipsis);
1286                 if (_layout_ellipsize_width > 3 * PANGO_SCALE) {
1287                         _layout->set_width (_layout_ellipsize_width - 3* PANGO_SCALE);
1288                 }
1289         }
1290 }
1291
1292 void
1293 ArdourButton::recalc_char_pixel_geometry ()
1294 {
1295         if (_char_pixel_height > 0 && _char_pixel_width > 0) {
1296                 return;
1297         }
1298         ensure_layout();
1299         // NB. this is not static, since the geometry is different
1300         // depending on the font used.
1301         int w, h;
1302         std::string x = _("ABCDEFGHIJLKMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789");
1303         _layout->set_text (x);
1304         _layout->get_pixel_size (w, h);
1305         _char_pixel_height = std::max(4, h);
1306         // number of actual chars in the string (not bytes)
1307         // Glib to the rescue.
1308         Glib::ustring gx(x);
1309         _char_avg_pixel_width = w / (float)gx.size();
1310         _char_pixel_width = std::max(4, (int) ceil (_char_avg_pixel_width));
1311         _layout->set_text (_text);
1312 }
1313
1314 void
1315 ArdourButton::action_visibility_changed ()
1316 {
1317         if (_action->property_visible ()) {
1318                 show ();
1319         } else {
1320                 hide ();
1321         }
1322 }
1323
1324 void
1325 ArdourButton::action_tooltip_changed ()
1326 {
1327         string str = _action->property_tooltip().get_value();
1328         ARDOUR_UI::instance()->set_tip (*this, str);
1329 }
1330
1331 void
1332 ArdourButton::set_elements (Element e)
1333 {
1334         _elements = e;
1335         CairoWidget::set_dirty ();
1336 }
1337
1338 void
1339 ArdourButton::add_elements (Element e)
1340 {
1341         _elements = (ArdourButton::Element) (_elements | e);
1342         CairoWidget::set_dirty ();
1343 }
1344
1345 void
1346 ArdourButton::set_icon (Icon i)
1347 {
1348         _icon = i;
1349         CairoWidget::set_dirty ();
1350 }
1351
1352 void
1353 ArdourButton::set_custom_led_color (uint32_t c, bool useit)
1354 {
1355         if (led_custom_color == c && use_custom_led_color == useit) {
1356                 return;
1357         }
1358
1359         led_custom_color = c;
1360         use_custom_led_color = useit;
1361         CairoWidget::set_dirty ();
1362 }