show ShuttleControl GUI some love.
authorPaul Davis <paul@linuxaudiosystems.com>
Mon, 13 Jun 2016 21:25:31 +0000 (17:25 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Mon, 13 Jun 2016 21:26:02 +0000 (17:26 -0400)
now uses Pango, not Cairo, for text rendering

gtk2_ardour/shuttle_control.cc
gtk2_ardour/shuttle_control.h

index 4616b7673473fdf06ff15cbc943a7dc51daad0b9..c423c21679ac332b9f2e946a49d65aa9aa8ffd1e 100644 (file)
@@ -53,7 +53,14 @@ gboolean qt (gboolean, gint, gint, gboolean, Gtk::Tooltip*, gpointer)
 ShuttleControl::ShuttleControl ()
        : _controllable (new ShuttleControllable (*this))
        , binding_proxy (_controllable)
+       , text_color (0)
 {
+       left_text = Pango::Layout::create (get_pango_context());
+       right_text = Pango::Layout::create (get_pango_context());
+
+       right_text->set_attributes (text_attributes);
+       left_text->set_attributes (text_attributes);
+
        set_tooltip (*this, _("Shuttle speed control (Context-click for options)"));
 
        pattern = 0;
@@ -84,6 +91,9 @@ ShuttleControl::ShuttleControl ()
        else                               { shuttle_max_speed = 1.5f; }
 
        Config->ParameterChanged.connect (parameter_connection, MISSING_INVALIDATOR, boost::bind (&ShuttleControl::parameter_changed, this, _1), gui_context());
+       UIConfiguration::instance().ColorsChanged.connect (sigc::mem_fun (*this, &ShuttleControl::set_colors));
+
+       set_colors ();
 
        /* gtkmm 2.4: the C++ wrapper doesn't work */
        g_signal_connect ((GObject*) gobj(), "query-tooltip", G_CALLBACK (qt), NULL);
@@ -135,6 +145,13 @@ ShuttleControl::on_size_allocate (Gtk::Allocation& alloc)
        cairo_pattern_add_color_stop_rgba (shine_pattern, 0, 1,1,1,0.0);
        cairo_pattern_add_color_stop_rgba (shine_pattern, 0.2, 1,1,1,0.4);
        cairo_pattern_add_color_stop_rgba (shine_pattern, 1, 1,1,1,0.1);
+
+       Pango::AttrFontDesc* font_attr;
+
+       font_attr = new Pango::AttrFontDesc (Pango::Attribute::create_attr_font_desc (UIConfiguration::instance().get_NormalBoldFont()));
+       text_attributes.change (*font_attr);
+
+       delete font_attr;
 }
 
 void
@@ -143,9 +160,9 @@ ShuttleControl::map_transport_state ()
        float speed = _session->transport_speed ();
 
        if ( (fabsf( speed - last_speed_displayed) < 0.005f) // dead-zone
-                       && !( speed == 1.f && last_speed_displayed != 1.f)
-                       && !( speed == 0.f && last_speed_displayed != 0.f)
-          )
+            && !( speed == 1.f && last_speed_displayed != 1.f)
+            && !( speed == 0.f && last_speed_displayed != 0.f)
+               )
        {
                return; // nothing to see here, move along.
        }
@@ -295,8 +312,8 @@ ShuttleControl::on_button_press_event (GdkEventButton* ev)
                        shuttle_speed_on_grab = _session->transport_speed ();
                        mouse_shuttle (ev->x, true);
                        gdk_pointer_grab(ev->window,false,
-                                       GdkEventMask( Gdk::POINTER_MOTION_MASK | Gdk::BUTTON_PRESS_MASK |Gdk::BUTTON_RELEASE_MASK),
-                                       NULL,NULL,ev->time);
+                                        GdkEventMask( Gdk::POINTER_MOTION_MASK | Gdk::BUTTON_PRESS_MASK |Gdk::BUTTON_RELEASE_MASK),
+                                        NULL,NULL,ev->time);
                }
                break;
 
@@ -546,12 +563,36 @@ ShuttleControl::use_shuttle_fract (bool force, bool zero_ok)
 }
 
 void
-ShuttleControl::render (cairo_t* cr, cairo_rectangle_t*)
+ShuttleControl::set_colors ()
 {
-       cairo_text_extents_t extents;
+       int r, g, b, a;
+
+       uint32_t bg_color = UIConfiguration::instance().color (X_("shuttle bg"));
+       uint32_t text = UIConfiguration::instance().color (X_("shuttle text"));
+
+       UINT_TO_RGBA (bg_color, &r, &g, &b, &a);
+       bg_r = r/255.0;
+       bg_g = g/255.0;
+       bg_b = b/255.0;
 
+       UINT_TO_RGBA (text, &r, &g, &b, &a);
+
+       /* rescale for Pango colors ... sigh */
+
+       r = lrint (r * 65535.0);
+       g = lrint (g * 65535.0);
+       b = lrint (b * 65535.0);
+
+       delete text_color;
+       text_color = new Pango::AttrColor (Pango::Attribute::create_attr_foreground (r, g, b));
+       text_attributes.change (*text_color);
+}
+
+void
+ShuttleControl::render (cairo_t* cr, cairo_rectangle_t*)
+{
        //black border
-       cairo_set_source_rgb (cr, 0, 0.0, 0.0);
+       cairo_set_source_rgb (cr, bg_r, bg_g, bg_b);
        rounded_rectangle (cr, 0, 0, get_width(), get_height(), 4);
        cairo_fill (cr);
 
@@ -616,18 +657,15 @@ ShuttleControl::render (cairo_t* cr, cairo_rectangle_t*)
 
        last_speed_displayed = speed;
 
-       // TODO use a proper pango layout, scale font
-       cairo_set_source_rgb (cr, 0.6, 0.6, 0.6);
-       cairo_set_font_size (cr, 13.0);
-       cairo_text_extents (cr, "0|", &extents); // note the descender
-       const float text_ypos = (get_height() + extents.height - 1.) * .5;
+       const float top_text_margin = 3.0f;
+       const float side_text_margin = 5.0f;
 
-       cairo_move_to (cr, 10, text_ypos);
-       cairo_show_text (cr, buf);
+       left_text->set_text (buf);
+       cairo_move_to (cr, side_text_margin, top_text_margin);
+       pango_cairo_show_layout (cr, left_text->gobj());
 
        /* style text */
 
-
        switch (Config->get_shuttle_behaviour()) {
        case Sprung:
                snprintf (buf, sizeof (buf), "%s", _("Sprung"));
@@ -637,14 +675,15 @@ ShuttleControl::render (cairo_t* cr, cairo_rectangle_t*)
                break;
        }
 
-       cairo_text_extents (cr, buf, &extents);
-       cairo_move_to (cr, get_width() - (fabs(extents.x_advance) + 5), text_ypos);
-       cairo_show_text (cr, buf);
+       right_text->set_text (buf);
+       Pango::Rectangle r = right_text->get_ink_extents ();
+       cairo_move_to (cr, get_width() - ((r.get_width()/PANGO_SCALE) + side_text_margin), top_text_margin);
+       pango_cairo_show_layout (cr, right_text->gobj());
 
        if (UIConfiguration::instance().get_widget_prelight()) {
                if (_hovering) {
                        rounded_rectangle (cr, 1, 1, get_width()-2, get_height()-2, 4.0);
-                       cairo_set_source_rgba (cr, 1, 1, 1, 0.2);
+                       cairo_set_source_rgba (cr, 1, 1, 1, 0.15);
                        cairo_fill (cr);
                }
        }
index 20fe46096f0e9f8254b483e19423939e5d9aa922..31be53c976c9f40c8ac886aa037e37ccae9cdf4f 100644 (file)
@@ -56,6 +56,7 @@ class ShuttleControl : public CairoWidget, public ARDOUR::SessionHandlePtr
        };
 
        boost::shared_ptr<ShuttleControllable> controllable() const { return _controllable; }
+       void set_colors ();
 
   protected:
        bool _hovering;
@@ -73,7 +74,11 @@ class ShuttleControl : public CairoWidget, public ARDOUR::SessionHandlePtr
        Gtk::Menu*        shuttle_style_menu;
        Gtk::Menu*        shuttle_context_menu;
        BindingProxy      binding_proxy;
-
+       Glib::RefPtr<Pango::Layout> left_text;
+       Glib::RefPtr<Pango::Layout> right_text;
+       Pango::AttrList text_attributes;
+       Pango::AttrColor* text_color;
+       float bg_r, bg_g, bg_b;
        void build_shuttle_context_menu ();
        void show_shuttle_context_menu ();
        void shuttle_style_changed();