summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/ardour_button.h')
-rw-r--r--gtk2_ardour/ardour_button.h23
1 files changed, 18 insertions, 5 deletions
diff --git a/gtk2_ardour/ardour_button.h b/gtk2_ardour/ardour_button.h
index 65ea10b201..18de7230d2 100644
--- a/gtk2_ardour/ardour_button.h
+++ b/gtk2_ardour/ardour_button.h
@@ -37,7 +37,8 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
Body = 0x2,
Text = 0x4,
Indicator = 0x8,
- FlatFace = 0x10,
+ Inset = 0x10,
+ Menu = 0x20,
};
static Element default_elements;
@@ -72,6 +73,7 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
void set_diameter (float);
void set_text (const std::string&);
+ const std::string& get_text () {return _text;}
void set_markup (const std::string&);
void set_angle (const double);
void set_alignment (const float, const float);
@@ -96,11 +98,14 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
void set_image (const Glib::RefPtr<Gdk::Pixbuf>&);
+ void set_fixed_colors (const uint32_t active_color, const uint32_t inactive_color);
+
protected:
- void render (cairo_t *);
+ void render (cairo_t *, cairo_rectangle_t *);
void on_size_request (Gtk::Requisition* req);
void on_size_allocate (Gtk::Allocation&);
void on_style_changed (const Glib::RefPtr<Gtk::Style>&);
+ void on_name_changed ();
bool on_enter_notify_event (GdkEventCrossing*);
bool on_leave_notify_event (GdkEventCrossing*);
@@ -126,14 +131,21 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
uint32_t bg_color;
uint32_t border_color;
- uint32_t fill_color_active;
- uint32_t fill_color_inactive;
+ uint32_t fill_start_inactive_color;
+ uint32_t fill_end_inactive_color;
+ uint32_t fill_start_active_color;
+ uint32_t fill_end_active_color;
+ uint32_t text_active_color;
+ uint32_t text_inactive_color;
+ uint32_t led_active_color;
+ uint32_t led_inactive_color;
+
cairo_pattern_t* fill_pattern;
cairo_pattern_t* fill_pattern_active;
cairo_pattern_t* shine_pattern;
cairo_pattern_t* led_inset_pattern;
cairo_pattern_t* reflection_pattern;
-
+
cairo_rectangle_t* _led_rect;
double text_r;
@@ -162,6 +174,7 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
void setup_led_rect ();
void set_colors ();
void color_handler ();
+ void build_patterns ();
void action_toggled ();