outline a "NoSampleAccurateControl" LV2 feature:
[ardour.git] / libs / canvas / text.cc
index a77e03020d1124b6530b9c1f674b4ee8e96d2584..d1f76eb1a3ff84c6566dafabd913874faa148fd1 100644 (file)
@@ -71,7 +71,7 @@ void
 Text::set (string const & text)
 {
        begin_change ();
-       
+
        _text = text;
 
        _need_redraw = true;
@@ -81,31 +81,12 @@ Text::set (string const & text)
 }
 
 void
-Text::_redraw (Cairo::RefPtr<Cairo::Context> context) const
-{
-       if (_text.empty()) {
-               return;
-       }
-
-       Glib::RefPtr<Pango::Layout> layout = Pango::Layout::create (context);
-
-       __redraw (layout);
-}
-
-void
-Text::_redraw (Glib::RefPtr<Pango::Context> context) const
+Text::_redraw () const
 {
-       if (_text.empty()) {
-               return;
-       }
-
+       assert (!_text.empty());
+       Glib::RefPtr<Pango::Context> context = Glib::wrap (gdk_pango_context_get());
        Glib::RefPtr<Pango::Layout> layout = Pango::Layout::create (context);
-       __redraw (layout);
-}
 
-void
-Text::__redraw (Glib::RefPtr<Pango::Layout> layout) const
-{
 #ifdef __APPLE__
        if (_width_correction < 0.0) {
                // Pango returns incorrect text width on some OS X
@@ -115,6 +96,7 @@ Text::__redraw (Glib::RefPtr<Pango::Layout> layout) const
                Gtk::Window win;
                Gtk::Label foo;
                win.add (foo);
+               win.ensure_style ();
 
                int width = 0;
                int height = 0;
@@ -138,7 +120,7 @@ Text::__redraw (Glib::RefPtr<Pango::Layout> layout) const
        }
 
        layout->set_alignment (_alignment);
-    
+
        int w;
        int h;
 
@@ -152,7 +134,7 @@ Text::__redraw (Glib::RefPtr<Pango::Layout> layout) const
 #else
        _image = Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, _width, _height);
 #endif
-       
+
        Cairo::RefPtr<Cairo::Context> img_context = Cairo::Context::create (_image);
 
 #ifdef __APPLE__
@@ -160,7 +142,7 @@ Text::__redraw (Glib::RefPtr<Pango::Layout> layout) const
         */
        img_context->scale (2, 2);
 #endif
-       
+
        /* and draw, in the appropriate color of course */
 
        if (_outline) {
@@ -176,7 +158,7 @@ Text::__redraw (Glib::RefPtr<Pango::Layout> layout) const
        }
 
        /* text has now been rendered in _image and is ready for blit in
-        * ::render 
+        * ::render
         */
 
        _need_redraw = false;
@@ -191,15 +173,15 @@ Text::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
 
        Rect self = item_to_window (Rect (0, 0, min (_clamped_width, (double)_image->get_width ()), _image->get_height ()));
        boost::optional<Rect> i = self.intersection (area);
-       
+
        if (!i) {
                return;
        }
 
        if (_need_redraw) {
-               _redraw (context);
+               _redraw ();
        }
-       
+
        Rect intersection (i.get());
 
        context->rectangle (intersection.x0, intersection.y0, intersection.width(), intersection.height());
@@ -220,10 +202,13 @@ Text::render (Rect const & area, Cairo::RefPtr<Cairo::Context> context) const
 void
 Text::clamp_width (double w)
 {
-        begin_change ();
+       if (_clamped_width == w) {
+               return;
+       }
+       begin_change ();
        _clamped_width = w;
-        _bounding_box_dirty = true;
-        end_change ();
+       _bounding_box_dirty = true;
+       end_change ();
 }
 
 void
@@ -236,11 +221,15 @@ Text::compute_bounding_box () const
        }
 
        if (_bounding_box_dirty) {
+#ifdef __APPLE__
+               const float retina_factor = 0.5;
+#else
+               const float retina_factor = 1.0;
+#endif
                if (_need_redraw || !_image) {
-                       Glib::RefPtr<Pango::Context> context = Glib::wrap (gdk_pango_context_get()); // context now owns C object and will free it
-                       _redraw (context);
+                       _redraw ();
                }
-               _bounding_box = Rect (0, 0, min (_clamped_width, (double) _image->get_width()), _image->get_height());
+               _bounding_box = Rect (0, 0, min (_clamped_width, (double) _image->get_width() * retina_factor), _image->get_height() * retina_factor);
                _bounding_box_dirty = false;
        }
 }
@@ -249,7 +238,7 @@ void
 Text::set_alignment (Pango::Alignment alignment)
 {
        begin_change ();
-       
+
        _alignment = alignment;
        _need_redraw = true;
        _bounding_box_dirty = true;
@@ -260,7 +249,7 @@ void
 Text::set_font_description (Pango::FontDescription font_description)
 {
        begin_change ();
-       
+
        _font_description = new Pango::FontDescription (font_description);
        _need_redraw = true;
         _width_correction = -1.0;
@@ -283,7 +272,7 @@ Text::set_color (Color color)
        end_change ();
 }
 
-               
+
 void
 Text::dump (ostream& o) const
 {
@@ -302,6 +291,6 @@ Text::text_width() const
     if (_need_redraw) {
         redraw ();
     }
-    
+
     return _width;
 }