Import Dialog is Window. Dialog Esc behavior needs to be emulated.
[ardour.git] / gtk2_ardour / ardour_button.h
index 25986ccc0c8bb4ea7afcfb970d0dc6c4367a2fe2..edccfd209fd659aa0a35d9cb03b5c8e192823b34 100644 (file)
@@ -41,9 +41,12 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
                unused = 0x10,
                Menu = 0x20,
                Inactive = 0x40, // no _action is defined AND state is not used
-               VectorIcon = 0x80, // tentative, see commit message
+               VectorIcon = 0x80,
+               IconRenderCallback = 0x100,
        };
 
+       typedef void (* rendercallback_t) (cairo_t*, int, int, uint32_t, void*);
+
        static Element default_elements;
        static Element led_default_elements;
        static Element just_led_default_elements;
@@ -55,7 +58,8 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
        enum Tweaks {
                Square = 0x1,
                TrackHeader = 0x2,
-               unused3 = 0x4,
+               OccasionalText = 0x4,
+               unused4 = 0x8,
        };
 
        Tweaks tweaks() const { return _tweaks; }
@@ -74,11 +78,13 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
 
        Gtkmm2ext::ArdourIcon::Icon icon() const { return _icon; }
        void set_icon (Gtkmm2ext::ArdourIcon::Icon);
+       void set_icon (rendercallback_t, void*);
 
        void set_corner_radius (float);
 
-       void set_text (const std::string&);
-       const std::string& get_text () {return _text;}
+       void set_text (const std::string&, bool markup = false);
+       const std::string& get_text () { return _text; }
+       bool get_markup () const { return _markup; }
        void set_angle (const double);
        void set_alignment (const float, const float);
        void get_alignment (float& xa, float& ya) {xa = _xalign; ya = _yalign;};
@@ -90,6 +96,12 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
        void set_layout_font (const Pango::FontDescription&);
        void set_text_ellipsize (Pango::EllipsizeMode);
 
+    /* Sets the text used for size request computation. Pass an
+     * empty string to return to the default behavior which uses
+     * the currently displayed text for measurement. */
+       void set_sizing_text (const std::string&);
+       const std::string& get_sizing_text () {return _sizing_text;}
+
        sigc::signal<void, GdkEventButton*> signal_led_clicked;
        sigc::signal<void> signal_clicked;
 
@@ -104,7 +116,9 @@ 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);
+       void set_fixed_colors   (const uint32_t active_color, const uint32_t inactive_color);
+       void set_active_color   (const uint32_t active_color);
+       void set_inactive_color (const uint32_t inactive_color);
 
        void set_fallthrough_to_parent(bool fall) { _fallthrough_to_parent = fall; }
 
@@ -113,7 +127,7 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
        float char_avg_pixel_width() { if (_char_pixel_width < 1) recalc_char_pixel_geometry() ; return _char_avg_pixel_width; }
 
        protected:
-       void render (cairo_t *, cairo_rectangle_t *);
+       void render (Cairo::RefPtr<Cairo::Context> const&, 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>&);
@@ -121,9 +135,11 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
        void on_realize ();
        bool on_enter_notify_event (GdkEventCrossing*);
        bool on_leave_notify_event (GdkEventCrossing*);
+       bool on_grab_broken_event(GdkEventGrabBroken*);
        bool on_focus_in_event (GdkEventFocus*);
        bool on_focus_out_event (GdkEventFocus*);
        bool on_key_release_event (GdkEventKey *);
+       bool on_key_press_event (GdkEventKey *);
 
        void controllable_changed ();
        PBD::ScopedConnection watch_connection;
@@ -132,11 +148,16 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
        Glib::RefPtr<Pango::Layout> _layout;
        Glib::RefPtr<Gdk::Pixbuf>   _pixbuf;
        std::string                 _text;
+       std::string                 _sizing_text;
+       bool                        _markup;
        Element                     _elements;
        Gtkmm2ext::ArdourIcon::Icon _icon;
+       rendercallback_t            _icon_render_cb;
+       void*                       _icon_render_cb_data;
        Tweaks                      _tweaks;
        BindingProxy                binding_proxy;
 
+       void set_text_internal ();
        void recalc_char_pixel_geometry ();
        unsigned int _char_pixel_width;
        unsigned int _char_pixel_height;
@@ -172,7 +193,7 @@ class ArdourButton : public CairoWidget , public Gtkmm2ext::Activatable
        bool _distinct_led_click;
        bool _hovering;
        bool _focused;
-       bool _fixed_colors_set;
+       int  _fixed_colors_set;
        bool _fallthrough_to_parent;
        int _layout_ellipsize_width;
        Pango::EllipsizeMode _ellipsis;