make GUI preferences discoverable from the View menu
[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 "ardour_button.h"
37 #include "ardour_ui.h"
38 #include "global_signals.h"
39
40 #include "i18n.h"
41
42 #define REFLECTION_HEIGHT 2
43
44 using namespace Gdk;
45 using namespace Gtk;
46 using namespace Glib;
47 using namespace PBD;
48 using std::max;
49 using std::min;
50 using namespace std;
51
52 ArdourButton::Element ArdourButton::default_elements = ArdourButton::Element (ArdourButton::Edge|ArdourButton::Body|ArdourButton::Text);
53 ArdourButton::Element ArdourButton::led_default_elements = ArdourButton::Element (ArdourButton::default_elements|ArdourButton::Indicator);
54 ArdourButton::Element ArdourButton::just_led_default_elements = ArdourButton::Element (ArdourButton::Edge|ArdourButton::Body|ArdourButton::Indicator);
55 bool ArdourButton::_flat_buttons = false;
56
57 ArdourButton::ArdourButton (Element e)
58         : _elements (e)
59         , _tweaks (Tweaks (0))
60         , _text_width (0)
61         , _text_height (0)
62         , _diameter (11.0)
63         , _corner_radius (4.0)
64         , _corner_mask (0xf)
65         , _angle(0)
66         , _xalign(.5)
67         , _yalign(.5)
68         , bg_color (0)
69         , border_color (0)
70         , fill_start_inactive_color (0)
71         , fill_end_inactive_color (0)
72         , fill_start_active_color (0)
73         , fill_end_active_color (0)
74         , text_active_color(0)
75         , text_inactive_color(0)
76         , led_active_color(0)
77         , led_inactive_color(0)
78         , fill_pattern (0)
79         , fill_pattern_active (0)
80         , shine_pattern (0)
81         , led_inset_pattern (0)
82         , reflection_pattern (0)
83         , _led_rect (0)
84         , _act_on_release (true)
85         , _led_left (false)
86         , _fixed_diameter (true)
87         , _distinct_led_click (false)
88         , _hovering (false)
89         , _focused (false)
90         , _fixed_colors_set (false)
91 {
92         ARDOUR_UI_UTILS::ColorsChanged.connect (sigc::mem_fun (*this, &ArdourButton::color_handler));
93 }
94
95 ArdourButton::ArdourButton (const std::string& str, Element e)
96         : _elements (e)
97         , _tweaks (Tweaks (0))
98         , _text_width (0)
99         , _text_height (0)
100         , _diameter (11.0)
101         , _corner_radius (4.0)
102         , _corner_mask (0xf)
103         , _angle(0)
104         , _xalign(.5)
105         , _yalign(.5)
106         , bg_color (0)
107         , border_color (0)
108         , fill_start_inactive_color (0)
109         , fill_end_inactive_color (0)
110         , fill_start_active_color (0)
111         , fill_end_active_color (0)
112         , text_active_color(0)
113         , text_inactive_color(0)
114         , led_active_color(0)
115         , led_inactive_color(0)
116         , fill_pattern (0)
117         , fill_pattern_active (0)
118         , shine_pattern (0)
119         , led_inset_pattern (0)
120         , reflection_pattern (0)
121         , _led_rect (0)
122         , _act_on_release (true)
123         , _led_left (false)
124         , _fixed_diameter (true)
125         , _distinct_led_click (false)
126         , _hovering (false)
127         , _focused (false)
128         , _fixed_colors_set (false)
129 {
130         set_text (str);
131 }
132
133 ArdourButton::~ArdourButton()
134 {
135         delete _led_rect;
136
137         if (shine_pattern) {
138                 cairo_pattern_destroy (shine_pattern);
139         }
140
141         if (fill_pattern) {
142                 cairo_pattern_destroy (fill_pattern);
143         }
144         
145         if (fill_pattern_active) {
146                 cairo_pattern_destroy (fill_pattern_active);
147         }
148         
149         if (led_inset_pattern) {
150                 cairo_pattern_destroy (led_inset_pattern);
151         }
152         
153         if (reflection_pattern) {
154                 cairo_pattern_destroy (reflection_pattern);
155         }
156
157 }
158
159 void
160 ArdourButton::set_text (const std::string& str)
161 {
162         _text = str;
163
164         if (!_layout && !_text.empty()) {
165                 _layout = Pango::Layout::create (get_pango_context());
166         } 
167
168         if (_layout) {
169                 _layout->set_text (str);
170         }
171
172         queue_resize ();
173 }
174
175 void
176 ArdourButton::set_markup (const std::string& str)
177 {
178         _text = str;
179
180         if (!_layout) {
181                 _layout = Pango::Layout::create (get_pango_context());
182         } 
183
184         _layout->set_markup (str);
185         queue_resize ();
186 }
187
188 void
189 ArdourButton::set_angle (const double angle)
190 {
191         _angle = angle;
192 }
193
194 void
195 ArdourButton::set_alignment (const float xa, const float ya)
196 {
197         _xalign = xa;
198         _yalign = ya;
199 }
200
201 void
202 ArdourButton::render (cairo_t* cr, cairo_rectangle_t *)
203 {
204         void (*rounded_function)(cairo_t*, double, double, double, double, double);
205
206         switch (_corner_mask) {
207         case 0x1: /* upper left only */
208                 rounded_function = Gtkmm2ext::rounded_top_left_rectangle;
209                 break;
210         case 0x2: /* upper right only */
211                 rounded_function = Gtkmm2ext::rounded_top_right_rectangle;
212                 break;
213         case 0x3: /* upper only */
214                 rounded_function = Gtkmm2ext::rounded_top_rectangle;
215                 break;
216                 /* should really have functions for lower right, lower left,
217                    lower only, but for now, we don't
218                 */
219         default:
220                 rounded_function = Gtkmm2ext::rounded_rectangle;
221         }
222
223         if (!_fixed_diameter) {
224                 _diameter = std::min (get_width(), get_height());
225         }
226
227         float r,g,b,a;
228
229         if ((_elements & Body)==Body) {
230                 if (_elements & Edge) {
231
232                         cairo_set_source_rgba (cr, 0, 0, 0, 1);
233                         rounded_function(cr, 0, 0, get_width(), get_height(), _corner_radius);
234                         cairo_fill (cr);
235
236                         rounded_function (cr, 1, 1, get_width()-2, get_height()-2, _corner_radius - 1.5);
237                 } else {
238                         rounded_function (cr, 0, 0, get_width(), get_height(), _corner_radius);
239                 }
240
241                 if (active_state() == Gtkmm2ext::ImplicitActive) {
242                         
243                         if (!(_tweaks & ImplicitUsesSolidColor)) {
244                                 cairo_set_source (cr, fill_pattern);
245                         } else {
246                                 cairo_set_source (cr, fill_pattern_active);
247                         }
248                         cairo_fill (cr);
249                         
250                         if (!(_tweaks & ImplicitUsesSolidColor)) {
251                                 //border
252                                 UINT_TO_RGBA (fill_end_active_color, &r, &g, &b, &a);
253                                 cairo_set_line_width (cr, 1.0);
254                                 rounded_function (cr, 2, 2, get_width()-4, get_height()-4, _corner_radius - 1.5);
255                                 cairo_set_source_rgba (cr, r/255.0, g/255.0, b/255.0, a/255.0);
256                                 cairo_stroke (cr);
257                         }
258                                 
259                 } else if (active_state() == Gtkmm2ext::ExplicitActive || ((_elements & Indicator)==Indicator) ) {
260
261                         //background color
262                         cairo_set_source (cr, fill_pattern_active);
263                         cairo_fill (cr);
264
265                 } else {
266
267                         //background color
268                         cairo_set_source (cr, fill_pattern);
269                         cairo_fill (cr);
270
271                 }
272         }
273
274         if ( ((_elements & Inset)==Inset) && (active_state() != Gtkmm2ext::ExplicitActive) ) {
275
276                 if ( !_flat_buttons ) {
277                         float rheight = get_height()*0.5-REFLECTION_HEIGHT;
278                         Gtkmm2ext::rounded_rectangle (cr, 2, 3, get_width()-4, rheight, _corner_radius-1);
279                         cairo_set_source (cr, shine_pattern);
280                         cairo_fill (cr);
281                 }
282
283                 if (active_state() == Gtkmm2ext::ExplicitActive) {
284
285                         UINT_TO_RGBA (fill_start_active_color, &r, &g, &b, &a);
286                         cairo_set_line_width (cr, 2.0);
287                         rounded_function (cr, 2, 2, get_width()-4, get_height()-4, _corner_radius - 2.0);
288                         cairo_set_source_rgba (cr, r/255.0, g/255.0, b/255.0, a/255.0);
289                         cairo_fill (cr);
290
291                 } else {
292
293                         UINT_TO_RGBA (fill_start_inactive_color, &r, &g, &b, &a);
294                         cairo_set_line_width (cr, 2.0);
295                         rounded_function (cr, 2, 2, get_width()-4, get_height()-4, _corner_radius - 2.0);
296                         cairo_set_source_rgba (cr, r/255.0, g/255.0, b/255.0, a/255.0);
297                         cairo_fill (cr);
298
299                 }
300         }
301
302         if (_pixbuf) {
303
304                 double x,y;
305                 x = (get_width() - _pixbuf->get_width())/2.0;
306                 y = (get_height() - _pixbuf->get_height())/2.0;
307
308                 //if this is a DropDown with an icon, then we need to 
309                   //move the icon left slightly to accomomodate the arrow
310                 if (((_elements & Menu)==Menu)) {
311                         cairo_save (cr);
312                         cairo_translate (cr, -8,0 );
313                 }
314                 
315                 cairo_rectangle (cr, x, y, _pixbuf->get_width(), _pixbuf->get_height());
316                 gdk_cairo_set_source_pixbuf (cr, _pixbuf->gobj(), x, y);
317                 cairo_fill (cr);
318
319                 //..and then return to our previous drawing position
320                 if (((_elements & Menu)==Menu)) {
321                         cairo_restore (cr);
322                 }
323         }
324
325         /* text, if any */
326
327         int text_margin;
328
329         if (get_width() < 75) {
330                 text_margin = 5;
331         } else {
332                 text_margin = 10;
333         }
334
335         if ( !_pixbuf && ((_elements & Text)==Text) && !_text.empty()) {
336                 cairo_save (cr);
337                 cairo_rectangle (cr, 2, 1, get_width()-4, get_height()-2);
338                 cairo_clip(cr);
339
340                 cairo_new_path (cr);    
341                 cairo_set_source_rgba (cr, text_r, text_g, text_b, text_a);
342
343                 if ( (_elements & Menu) == Menu) {
344                         cairo_move_to (cr, text_margin, get_height()/2.0 - _text_height/2.0);
345                         pango_cairo_show_layout (cr, _layout->gobj());
346                 } else if ( (_elements & Indicator)  == Indicator) {
347                         if (_led_left) {
348                                 cairo_move_to (cr, text_margin + _diameter + 4, get_height()/2.0 - _text_height/2.0);
349                         } else {
350                                 cairo_move_to (cr, text_margin, get_height()/2.0 - _text_height/2.0);
351                         }
352                         pango_cairo_show_layout (cr, _layout->gobj());
353                 } else {
354                         /* align text */
355
356                         double ww, wh;
357                         double xa, ya;
358                         ww = get_width();
359                         wh = get_height();
360                         cairo_save (cr); // TODO retain rotataion.. adj. LED,...
361                         cairo_rotate(cr, _angle * M_PI / 180.0);
362                         cairo_device_to_user(cr, &ww, &wh);
363                         xa = (ww - _text_width) * _xalign;
364                         ya = (wh - _text_height) * _yalign;
365
366                         /* quick hack for left/bottom alignment at -90deg
367                          * TODO this should be generalized incl rotation.
368                          * currently only 'user' of this API is meter_strip.cc
369                          */
370                         if (_xalign < 0) xa = (ww * fabs(_xalign) + text_margin);
371
372                         // TODO honor left/right text_margin with min/max()
373
374                         cairo_move_to (cr, xa, ya);
375                         pango_cairo_update_layout(cr, _layout->gobj());
376                         pango_cairo_show_layout (cr, _layout->gobj());
377                         cairo_restore (cr);
378
379                         /* use old center'ed layout for follow up items - until rotation/aligment code is completed */
380                         cairo_move_to (cr, (get_width() - _text_width)/2.0, get_height()/2.0 - _text_height/2.0);
381                 }
382                 cairo_restore (cr);
383         } 
384
385         if (((_elements & Menu)==Menu)) {
386         
387                 cairo_save (cr);
388
389                 //menu arrow
390                 cairo_set_source_rgba (cr, 1, 1, 1, 0.4);
391                 cairo_move_to(cr, get_width() - ((_diameter/2.0) + 6.0), get_height()/2.0 +_diameter/4);
392                 cairo_rel_line_to(cr, -_diameter/2, -_diameter/2);
393                 cairo_rel_line_to(cr, _diameter, 0);
394                 cairo_close_path(cr);
395                 cairo_set_source_rgba (cr, 1, 1, 1, 0.4);
396                 cairo_fill_preserve(cr);
397                 cairo_set_source_rgba (cr, 0, 0, 0, 0.8);
398                 cairo_set_line_width(cr, 0.5);
399                 cairo_stroke(cr);
400         
401                 cairo_restore (cr);
402         }
403         
404         if (((_elements & Indicator)==Indicator)) {
405
406                 /* move to the center of the indicator/led */
407
408                 cairo_save (cr);
409
410                 if (_elements & Text) {
411                         if (_led_left) {
412                                 cairo_translate (cr, text_margin + (_diameter/2.0), get_height()/2.0);
413                         } else {
414                                 cairo_translate (cr, get_width() - ((_diameter/2.0) + 4.0), get_height()/2.0);
415                         }
416                 } else {
417                         cairo_translate (cr, get_width()/2.0, get_height()/2.0);
418                 }
419                 
420                 //inset
421                 cairo_arc (cr, 0, 0, _diameter/2, 0, 2 * M_PI);
422                 cairo_set_source (cr, led_inset_pattern);
423                 cairo_fill (cr);
424                 
425                 //black ring
426                 cairo_set_source_rgb (cr, 0, 0, 0);
427                 cairo_arc (cr, 0, 0, _diameter/2-2, 0, 2 * M_PI);
428                 cairo_fill(cr);
429                 
430                 //led color
431                 cairo_set_source_rgba (cr, led_r, led_g, led_b, led_a);
432                 cairo_arc (cr, 0, 0, _diameter/2-3, 0, 2 * M_PI);
433                 cairo_fill(cr);
434                 
435                 cairo_restore (cr);
436         }
437
438
439         /* a partially transparent gray layer to indicate insensitivity */
440
441         if ((visual_state() & Gtkmm2ext::Insensitive)) {
442                 rounded_function (cr, 0, 0, get_width(), get_height(), _corner_radius);
443                 cairo_set_source_rgba (cr, 0.505, 0.517, 0.525, 0.6);
444                 cairo_fill (cr);
445         }
446
447         //reflection
448         bool show_reflection = (active_state() == Gtkmm2ext::ExplicitActive);
449         show_reflection &= !_flat_buttons;
450         show_reflection &= !((_elements & Indicator)==Indicator);
451         if ( show_reflection ) {
452                 float rheight = get_height()*0.5-REFLECTION_HEIGHT;
453                 Gtkmm2ext::rounded_rectangle (cr, 2, get_height()*0.5-1, get_width()-4, rheight, _corner_radius-1);
454                 cairo_set_source (cr, shine_pattern);
455                 cairo_fill (cr);
456         }
457
458         /* if requested, show hovering */
459         
460         if (ARDOUR::Config->get_widget_prelight()
461                         && !((visual_state() & Gtkmm2ext::Insensitive))) {
462                 if (_hovering) {
463                         rounded_function (cr, 0, 0, get_width(), get_height(), _corner_radius);
464                         cairo_set_source_rgba (cr, 0.905, 0.917, 0.925, 0.2);
465                         cairo_fill (cr);
466                 }
467         }
468         if (_focused) {
469                 rounded_function (cr, 1.5, 1.5, get_width() - 3, get_height() - 3, _corner_radius);
470                 cairo_set_source_rgba (cr, 0.905, 0.917, 0.925, 0.8);
471                 double dashes = 1;
472                 cairo_set_dash (cr, &dashes, 1, 0);
473                 cairo_set_line_cap (cr, CAIRO_LINE_CAP_BUTT);
474                 cairo_set_line_width (cr, 1.0);
475                 cairo_stroke (cr);
476                 cairo_set_dash (cr, 0, 0, 0);
477         }
478 }
479
480 void
481 ArdourButton::set_diameter (float d)
482 {
483         _diameter = (d*2) + 5.0;
484
485         if (_diameter != 0.0) {
486                 _fixed_diameter = true;
487         }
488
489         build_patterns ();
490         queue_resize ();
491 }
492
493 void
494 ArdourButton::set_corner_radius (float r)
495 {
496         _corner_radius = r;
497         set_dirty ();
498 }
499
500 void
501 ArdourButton::on_size_request (Gtk::Requisition* req)
502 {
503         int xpad = 0;
504         int ypad = 6;
505
506         CairoWidget::on_size_request (req);
507
508         if ((_elements & Text) && !_text.empty()) {
509                 _layout->get_pixel_size (_text_width, _text_height);
510                 if (_text_width + _diameter < 75) {
511                         xpad = 7;
512                 } else {
513                         xpad = 12;
514                 }
515         } else {
516                 _text_width = 0;
517                 _text_height = 0;
518         }
519
520         if (_pixbuf) {
521                 xpad = 6;
522         }
523
524         if ((_elements & Indicator) && _fixed_diameter) {
525                 if (_pixbuf) {
526                         req->width = _pixbuf->get_width() + lrint (_diameter) + xpad;
527                         req->height = max (_pixbuf->get_height(), (int) lrint (_diameter)) + ypad;
528                 } else {
529                         req->width = _text_width + lrint (_diameter) + xpad * 2; // margin left+right * 2
530                         req->height = max (_text_height, (int) lrint (_diameter)) + ypad;
531                 }
532         } else {
533                 if (_pixbuf) {
534                         req->width = _pixbuf->get_width() + xpad;
535                         req->height = _pixbuf->get_height() + ypad;
536                 }  else {
537                         req->width = _text_width + xpad;
538                         req->height = _text_height + ypad;
539                 }
540         }
541         req->width += _corner_radius;
542 }
543
544 /**
545  * This sets the colors used for rendering based on the name of the button, and
546  * thus uses information from the GUI config data. 
547  */
548 void
549 ArdourButton::set_colors ()
550 {
551         if (_fixed_colors_set) {
552                 return;
553         }
554         std::string name = get_name();
555
556         border_color = ARDOUR_UI::config()->color_by_name ("button border");
557
558         fill_start_active_color = ARDOUR_UI::config()->color_by_name (string_compose ("%1: fill start active", name));
559         fill_end_active_color = ARDOUR_UI::config()->color_by_name (string_compose ("%1: fill end active", name));
560         
561         fill_start_inactive_color = ARDOUR_UI::config()->color_by_name (string_compose ("%1: fill start", name));
562         fill_end_inactive_color = ARDOUR_UI::config()->color_by_name (string_compose ("%1: fill end", name));
563
564         text_active_color = ARDOUR_UI::config()->color_by_name (string_compose ("%1: text active", name));
565         text_inactive_color = ARDOUR_UI::config()->color_by_name (string_compose ("%1: text", name));
566
567         led_active_color = ARDOUR_UI::config()->color_by_name (string_compose ("%1: led active", name));
568         led_inactive_color = ARDOUR_UI::config()->color_by_name (string_compose ("%1: led", name));
569 }
570 /**
571  * This sets the colors used for rendering based on two fixed values, rather
572  * than basing them on the button name, and thus information in the GUI config
573  * data.
574  */
575 void ArdourButton::set_fixed_colors (const uint32_t color_active, const uint32_t color_inactive)
576 {
577         _fixed_colors_set = true;
578
579         fill_start_active_color = fill_end_active_color = color_active;
580
581         unsigned char r, g, b, a;
582         UINT_TO_RGBA(color_active, &r, &g, &b, &a);
583         
584         double white_contrast = (max (double(r), 255.) - min (double(r), 255.)) +
585                 (max (double(g), 255.) - min (double(g), 255.)) +
586                 (max (double(b), 255.) - min (double(b), 255.));
587         
588         double black_contrast = (max (double(r), 0.) - min (double(r), 0.)) +
589                 (max (double(g), 0.) - min (double(g), 0.)) +
590                 (max (double(b), 0.) - min (double(b), 0.));
591         
592         text_active_color =
593                 text_inactive_color = (white_contrast > black_contrast) ?
594                 RGBA_TO_UINT(255, 255, 255, 255) : /* use white */
595                 RGBA_TO_UINT(  0,   0,   0,   255);  /* use black */
596         
597         fill_start_inactive_color = fill_end_inactive_color = color_inactive;
598
599         /* XXX what about led colors ? */
600
601         build_patterns ();
602         set_name (""); /* this will trigger a "style-changed" message and then set_colors() */
603 }
604
605 void
606 ArdourButton::build_patterns ()
607 {
608         uint32_t start_color;
609         uint32_t end_color;
610         uint32_t text_color;
611         uint32_t led_color;
612         uint32_t r, g, b, a;
613
614         if (shine_pattern) {
615                 cairo_pattern_destroy (shine_pattern);
616                 shine_pattern = 0;
617         }
618
619         if (fill_pattern) {
620                 cairo_pattern_destroy (fill_pattern);
621                 fill_pattern = 0;
622         }
623
624         if (fill_pattern_active) {
625                 cairo_pattern_destroy (fill_pattern_active);
626                 fill_pattern_active = 0;
627         }
628
629         if (_elements & Body) {
630
631                 if (_flat_buttons) {
632                         end_color = start_color = fill_start_active_color;
633                 } else {
634                         start_color = fill_start_active_color;
635                         end_color = fill_end_active_color;
636                 }
637                 UINT_TO_RGBA (start_color, &r, &g, &b, &a);
638
639                 active_r = r/255.0;
640                 active_g = g/255.0;
641                 active_b = b/255.0;
642                 active_a = a/255.0;
643
644                 shine_pattern = cairo_pattern_create_linear (0.0, 0.0, 0.0, get_height());
645                 cairo_pattern_add_color_stop_rgba (shine_pattern, 0, 1,1,1,0.0);
646                 cairo_pattern_add_color_stop_rgba (shine_pattern, 0.5, 1,1,1,0.1);
647                 cairo_pattern_add_color_stop_rgba (shine_pattern, 0.7, 1,1,1,0.2);
648                 cairo_pattern_add_color_stop_rgba (shine_pattern, 1, 1,1,1,0.1);
649
650                 fill_pattern = cairo_pattern_create_linear (0.0, 0.0, 0.0, get_height()-3);
651                 if (_flat_buttons) {
652                         end_color = start_color = fill_start_inactive_color;
653                 } else {
654                         start_color = fill_start_inactive_color;
655                         end_color = fill_end_inactive_color;
656                 }
657                 UINT_TO_RGBA (start_color, &r, &g, &b, &a);
658                 cairo_pattern_add_color_stop_rgba (fill_pattern, 0, r/255.0,g/255.0,b/255.0, a/255.0);
659                 UINT_TO_RGBA (end_color, &r, &g, &b, &a);
660                 cairo_pattern_add_color_stop_rgba (fill_pattern, 1, r/255.0,g/255.0,b/255.0, a/255.0);
661
662                 fill_pattern_active = cairo_pattern_create_linear (0.0, 0.0, 0.0, get_height()-3);
663                 if (_flat_buttons) {
664                         if (active_state() == Gtkmm2ext::ImplicitActive && (_tweaks & ImplicitUsesSolidColor)) {
665                                 end_color = start_color = led_active_color;
666                         } else {
667                                 end_color = start_color = fill_end_active_color;
668                         }
669                 } else {
670                         if (active_state() == Gtkmm2ext::ImplicitActive && (_tweaks & ImplicitUsesSolidColor)) {
671                                 end_color = start_color = led_active_color;
672                         } else {
673                                 start_color = fill_start_active_color;
674                                 end_color = fill_end_active_color;
675                         }
676                 }
677                 UINT_TO_RGBA (start_color, &r, &g, &b, &a);
678                 cairo_pattern_add_color_stop_rgba (fill_pattern_active, 0, r/255.0,g/255.0,b/255.0, a/255.0);
679                 UINT_TO_RGBA (end_color, &r, &g, &b, &a);
680                 cairo_pattern_add_color_stop_rgba (fill_pattern_active, 1, r/255.0,g/255.0,b/255.0, a/255.0);
681         }
682
683         if (led_inset_pattern) {
684                 cairo_pattern_destroy (led_inset_pattern);
685         }
686         
687         if (reflection_pattern) {
688                 cairo_pattern_destroy (reflection_pattern);
689         }
690
691         if (_elements & Indicator) {
692                 led_inset_pattern = cairo_pattern_create_linear (0.0, 0.0, 0.0, _diameter);
693                 cairo_pattern_add_color_stop_rgba (led_inset_pattern, 0, 0,0,0, 0.4);
694                 cairo_pattern_add_color_stop_rgba (led_inset_pattern, 1, 1,1,1, 0.7);
695
696                 reflection_pattern = cairo_pattern_create_linear (0.0, 0.0, 0.0, _diameter/2-3);
697                 cairo_pattern_add_color_stop_rgba (reflection_pattern, 0, 1,1,1, active_state() ? 0.4 : 0.2);
698                 cairo_pattern_add_color_stop_rgba (reflection_pattern, 1, 1,1,1, 0.0);
699         }
700
701         if (active_state() == Gtkmm2ext::ExplicitActive || ((_tweaks & ImplicitUsesSolidColor) && active_state() == Gtkmm2ext::ImplicitActive)) {
702                 text_color = text_active_color;
703                 led_color = led_active_color;
704         } else {
705                 text_color = text_inactive_color;
706                 led_color = led_inactive_color;
707         }
708         
709         UINT_TO_RGBA (text_color, &r, &g, &b, &a);
710         text_r = r/255.0;
711         text_g = g/255.0;
712         text_b = b/255.0;
713         text_a = a/255.0;
714         UINT_TO_RGBA (led_color, &r, &g, &b, &a);
715         led_r = r/255.0;
716         led_g = g/255.0;
717         led_b = b/255.0;
718         led_a = a/255.0;
719
720         set_dirty ();
721 }
722
723 void
724 ArdourButton::set_led_left (bool yn)
725 {
726         _led_left = yn;
727 }
728
729 bool
730 ArdourButton::on_button_press_event (GdkEventButton *ev)
731 {
732         if ((_elements & Indicator) && _led_rect && _distinct_led_click) {
733                 if (ev->x >= _led_rect->x && ev->x < _led_rect->x + _led_rect->width && 
734                     ev->y >= _led_rect->y && ev->y < _led_rect->y + _led_rect->height) {
735                         return true;
736                 }
737         }
738
739         if (_tweaks & ShowClick) {
740                 set_active_state (Gtkmm2ext::ExplicitActive);
741         }
742
743         if (binding_proxy.button_press_handler (ev)) {
744                 return true;
745         }
746
747         if (!_act_on_release) {
748                 if (_action) {
749                         _action->activate ();
750                         return true;
751                 }
752         }
753
754         return false;
755 }
756
757 bool
758 ArdourButton::on_button_release_event (GdkEventButton *ev)
759 {
760         if (_hovering && (_elements & Indicator) && _led_rect && _distinct_led_click) {
761                 if (ev->x >= _led_rect->x && ev->x < _led_rect->x + _led_rect->width && 
762                     ev->y >= _led_rect->y && ev->y < _led_rect->y + _led_rect->height) {
763                         signal_led_clicked(); /* EMIT SIGNAL */
764                         return true;
765                 }
766         }
767
768         if (_tweaks & ShowClick) {
769                 unset_active_state ();
770         }
771
772         if (_hovering) {
773                 signal_clicked ();
774                 
775                 if (_act_on_release) {
776                         if (_action) {
777                                 _action->activate ();
778                                 return true;
779                         }
780                 }
781         }
782
783         return false;
784 }
785
786 void
787 ArdourButton::set_distinct_led_click (bool yn)
788 {
789         _distinct_led_click = yn;
790         setup_led_rect ();
791 }
792
793 void
794 ArdourButton::color_handler ()
795 {
796         set_colors ();
797         build_patterns ();
798         set_dirty ();
799 }
800
801 void
802 ArdourButton::on_size_allocate (Allocation& alloc)
803 {
804         CairoWidget::on_size_allocate (alloc);
805         setup_led_rect ();
806         build_patterns ();
807 }
808
809 void
810 ArdourButton::set_controllable (boost::shared_ptr<Controllable> c)
811 {
812         watch_connection.disconnect ();
813         binding_proxy.set_controllable (c);
814 }
815
816 void
817 ArdourButton::watch ()
818 {
819         boost::shared_ptr<Controllable> c (binding_proxy.get_controllable ());
820
821         if (!c) {
822                 warning << _("button cannot watch state of non-existing Controllable\n") << endmsg;
823                 return;
824         }
825
826         c->Changed.connect (watch_connection, invalidator(*this), boost::bind (&ArdourButton::controllable_changed, this), gui_context());
827 }
828
829 void
830 ArdourButton::controllable_changed ()
831 {
832         float val = binding_proxy.get_controllable()->get_value();
833
834         if (fabs (val) >= 0.5f) {
835                 set_active_state (Gtkmm2ext::ExplicitActive);
836         } else {
837                 unset_active_state ();
838         }
839 }
840
841 void
842 ArdourButton::set_related_action (RefPtr<Action> act)
843 {
844         Gtkmm2ext::Activatable::set_related_action (act);
845
846         if (_action) {
847
848                 action_tooltip_changed ();
849
850                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (_action);
851                 if (tact) {
852                         action_toggled ();
853                         tact->signal_toggled().connect (sigc::mem_fun (*this, &ArdourButton::action_toggled));
854                 } 
855
856                 _action->connect_property_changed ("sensitive", sigc::mem_fun (*this, &ArdourButton::action_sensitivity_changed));
857                 _action->connect_property_changed ("visible", sigc::mem_fun (*this, &ArdourButton::action_visibility_changed));
858                 _action->connect_property_changed ("tooltip", sigc::mem_fun (*this, &ArdourButton::action_tooltip_changed));
859         }
860 }
861
862 void
863 ArdourButton::action_toggled ()
864 {
865         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (_action);
866
867         if (tact) {
868                 if (tact->get_active()) {
869                         set_active_state (Gtkmm2ext::ExplicitActive);
870                 } else {
871                         unset_active_state ();
872                 }
873         }
874 }       
875
876 void
877 ArdourButton::on_style_changed (const RefPtr<Gtk::Style>&)
878 {
879         set_colors ();
880         build_patterns ();
881 }
882
883 void
884 ArdourButton::on_name_changed ()
885 {
886         set_colors ();
887         build_patterns ();
888 }
889
890 void
891 ArdourButton::setup_led_rect ()
892 {
893         int text_margin;
894
895         if (get_width() < 75) {
896                 text_margin = 3;
897         } else {
898                 text_margin = 10;
899         }
900
901         if (_elements & Indicator) {
902                 _led_rect = new cairo_rectangle_t;
903                 
904                 if (_elements & Text) {
905                         if (_led_left) {
906                                 _led_rect->x = text_margin;
907                         } else {
908                                 _led_rect->x = get_width() - text_margin - _diameter/2.0;
909                         }
910                 } else {
911                         /* centered */
912                         _led_rect->x = get_width()/2.0 - _diameter/2.0;
913                 }
914
915                 _led_rect->y = get_height()/2.0 - _diameter/2.0;
916                 _led_rect->width = _diameter;
917                 _led_rect->height = _diameter;
918
919         } else {
920                 delete _led_rect;
921                 _led_rect = 0;
922         }
923 }
924
925 void
926 ArdourButton::set_image (const RefPtr<Gdk::Pixbuf>& img)
927 {
928         _pixbuf = img;
929         queue_draw ();
930 }
931
932 void
933 ArdourButton::set_active_state (Gtkmm2ext::ActiveState s)
934 {
935         bool changed = (_active_state != s);
936         CairoWidget::set_active_state (s);
937         if (changed) {
938                 set_colors ();
939                 build_patterns ();
940         }
941 }
942         
943 void
944 ArdourButton::set_visual_state (Gtkmm2ext::VisualState s)
945 {
946         bool changed = (_visual_state != s);
947         CairoWidget::set_visual_state (s);
948         if (changed) {
949                 set_colors ();
950                 build_patterns ();
951         }
952 }
953         
954
955 bool
956 ArdourButton::on_focus_in_event (GdkEventFocus* ev)
957 {
958         _focused = true;
959         queue_draw ();
960         return CairoWidget::on_focus_in_event (ev);
961 }
962
963 bool
964 ArdourButton::on_focus_out_event (GdkEventFocus* ev)
965 {
966         _focused = false;
967         queue_draw ();
968         return CairoWidget::on_focus_out_event (ev);
969 }
970
971 bool
972 ArdourButton::on_key_release_event (GdkEventKey *ev) {
973         if (_focused &&
974                         (ev->keyval == GDK_KEY_space || ev->keyval == GDK_Return))
975         {
976                 signal_clicked();
977                 if (_action) {
978                         _action->activate ();
979                 }
980                 return true;
981         }
982         return CairoWidget::on_key_release_event (ev);
983 }
984
985 bool
986 ArdourButton::on_enter_notify_event (GdkEventCrossing* ev)
987 {
988         _hovering = true;
989
990         if (ARDOUR::Config->get_widget_prelight()) {
991                 queue_draw ();
992         }
993
994         return CairoWidget::on_enter_notify_event (ev);
995 }
996
997 bool
998 ArdourButton::on_leave_notify_event (GdkEventCrossing* ev)
999 {
1000         _hovering = false;
1001
1002         if (ARDOUR::Config->get_widget_prelight()) {
1003                 queue_draw ();
1004         }
1005
1006         return CairoWidget::on_leave_notify_event (ev);
1007 }
1008
1009 void
1010 ArdourButton::set_tweaks (Tweaks t)
1011 {
1012         if (_tweaks != t) {
1013                 _tweaks = t;
1014                 queue_draw ();
1015         }
1016 }
1017
1018 void
1019 ArdourButton::action_sensitivity_changed ()
1020 {
1021         if (_action->property_sensitive ()) {
1022                 set_visual_state (Gtkmm2ext::VisualState (visual_state() & ~Gtkmm2ext::Insensitive));
1023         } else {
1024                 set_visual_state (Gtkmm2ext::VisualState (visual_state() | Gtkmm2ext::Insensitive));
1025         }
1026         
1027 }
1028
1029
1030 void
1031 ArdourButton::action_visibility_changed ()
1032 {
1033         if (_action->property_visible ()) {
1034                 show ();
1035         } else {
1036                 hide ();
1037         }
1038 }
1039
1040 void
1041 ArdourButton::action_tooltip_changed ()
1042 {
1043         string str = _action->property_tooltip().get_value();
1044         ARDOUR_UI::instance()->set_tip (*this, str);
1045 }
1046
1047 void
1048 ArdourButton::set_rounded_corner_mask (int mask)
1049 {
1050         _corner_mask = mask;
1051         queue_draw ();
1052 }
1053
1054 void
1055 ArdourButton::set_elements (Element e)
1056 {
1057         _elements = e;
1058 }
1059
1060 void
1061 ArdourButton::add_elements (Element e)
1062 {
1063         _elements = (ArdourButton::Element) (_elements | e);
1064 }
1065
1066 void
1067 ArdourButton::set_flat_buttons (bool yn)
1068 {
1069         _flat_buttons = yn;
1070 }