various tweaks to get clicks on processor "buttons" to work right and to keep track...
[ardour.git] / gtk2_ardour / ardour_button.h
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 #ifndef __gtk2_ardour_ardour_button_h__
21 #define __gtk2_ardour_ardour_button_h__
22
23 #include <stdint.h>
24
25 #include <gtkmm/action.h>
26
27 #include "pbd/signals.h"
28 #include "gtkmm2ext/binding_proxy.h"
29
30 #include "cairo_widget.h"
31
32 class ArdourButton : public CairoWidget
33 {
34   public:
35         enum Element {
36                 Edge = 0x1,
37                 Body = 0x2,
38                 Text = 0x4,
39                 Indicator = 0x8,
40                 Image = 0x16
41         };
42         
43         static Element default_elements;
44         static Element led_default_elements;
45         static Element just_led_default_elements;
46
47         ArdourButton (Element e = default_elements);
48         virtual ~ArdourButton ();
49
50         void set_elements (Element);
51         Element elements() const { return _elements; }
52
53         void set_corner_radius (float);
54         void set_diameter (float);
55
56         void set_text (const std::string&);
57         void set_markup (const std::string&);
58
59         void set_led_left (bool yn);
60         void set_distinct_led_click (bool yn);
61
62         sigc::signal<void> signal_led_clicked;
63
64         boost::shared_ptr<PBD::Controllable> get_controllable() { return binding_proxy.get_controllable(); }
65         void set_controllable (boost::shared_ptr<PBD::Controllable> c);
66         void watch ();
67
68         void set_related_action (Glib::RefPtr<Gtk::Action>);
69
70   protected:
71         void render (cairo_t *);
72         void on_size_request (Gtk::Requisition* req);
73         void on_size_allocate (Gtk::Allocation&);
74         bool on_button_press_event (GdkEventButton*);
75         bool on_button_release_event (GdkEventButton*);
76         void on_style_changed (const Glib::RefPtr<Gtk::Style>&);
77
78         void controllable_changed ();
79         PBD::ScopedConnection watch_connection;
80
81   private:
82         Glib::RefPtr<Pango::Layout> _layout;
83         std::string                 _text;
84         Element                     _elements;
85         BindingProxy binding_proxy;
86         bool    _act_on_release;
87
88         int   _text_width;
89         int   _text_height;
90         float _diameter;
91         float _corner_radius;
92
93         cairo_pattern_t* edge_pattern;
94         cairo_pattern_t* fill_pattern;
95         cairo_pattern_t* led_inset_pattern;
96         cairo_pattern_t* reflection_pattern;
97
98         double text_r;
99         double text_g;
100         double text_b;
101         double text_a;
102
103         double led_r;
104         double led_g;
105         double led_b;
106         double led_a;
107
108         bool _led_left;
109         bool _fixed_diameter;
110         bool _distinct_led_click;
111
112         void set_colors ();
113         void color_handler ();
114         void state_handler ();
115
116         Glib::RefPtr<Gtk::Action> _action;
117         void action_activated ();
118         void action_toggled ();
119 };
120
121 #endif /* __gtk2_ardour_ardour_button_h__ */