Support midnam files with a channel (not patch) NoteNameList.
[ardour.git] / gtk2_ardour / ardour_button.h
index 65ea10b201427cf18e46791d6ccedf5059538be4..7b8d2a2372c5cb60947c014b94143b1545dedbf0 100644 (file)
@@ -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,13 +98,19 @@ 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*);
+       bool on_focus_in_event (GdkEventFocus*);
+       bool on_focus_out_event (GdkEventFocus*);
+       bool on_key_release_event (GdkEventKey *);
 
        void controllable_changed ();
        PBD::ScopedConnection watch_connection;
@@ -126,14 +134,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;
@@ -156,12 +171,15 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
        bool _fixed_diameter;
        bool _distinct_led_click;
        bool _hovering;
+       bool _focused;
+       bool _fixed_colors_set;
     
        static bool _flat_buttons;
 
        void setup_led_rect ();
        void set_colors ();
        void color_handler ();
+        void build_patterns ();
 
        void action_toggled ();