X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fcanvas%2Ftext.cc;h=8744a7fd77d973b545a72abfc5d7bbdc740efefb;hb=2a5921ecf159d49597264a9328dc899bba55e57e;hp=438413080a2d7a539283bf157980e5f0d15f126a;hpb=36c233fe6ce570ce85224626ce7aba4a2607537f;p=ardour.git diff --git a/libs/canvas/text.cc b/libs/canvas/text.cc index 438413080a..8744a7fd77 100644 --- a/libs/canvas/text.cc +++ b/libs/canvas/text.cc @@ -27,12 +27,13 @@ #include "canvas/text.h" #include "canvas/canvas.h" #include "canvas/utils.h" +#include "canvas/colors.h" using namespace std; using namespace ArdourCanvas; -Text::Text (Group* parent) - : Item (parent) +Text::Text (Canvas* c) + : Item (c) , _color (0x000000ff) , _font_description (0) , _alignment (Pango::ALIGN_LEFT) @@ -41,7 +42,20 @@ Text::Text (Group* parent) , _need_redraw (false) , _clamped_width (COORD_MAX) { + _outline = false; +} +Text::Text (Item* parent) + : Item (parent) + , _color (0x000000ff) + , _font_description (0) + , _alignment (Pango::ALIGN_LEFT) + , _width (0) + , _height (0) + , _need_redraw (false) + , _clamped_width (COORD_MAX) +{ + _outline = false; } Text::~Text () @@ -95,24 +109,32 @@ Text::_redraw (Glib::RefPtr layout) const } layout->set_alignment (_alignment); - + int w; int h; - layout->get_size (w, h); - - _width = w / Pango::SCALE; - _height = h / Pango::SCALE; - + layout->get_pixel_size (w, h); + + _width = w; + _height = h; + _image = Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, _width, _height); Cairo::RefPtr img_context = Cairo::Context::create (_image); /* and draw, in the appropriate color of course */ - set_source_rgba (img_context, _color); - - layout->show_in_cairo_context (img_context); + if (_outline) { + set_source_rgba (img_context, _outline_color); + layout->update_from_cairo_context (img_context); + pango_cairo_layout_path (img_context->cobj(), layout->gobj()); + img_context->stroke_preserve (); + set_source_rgba (img_context, _color); + img_context->fill (); + } else { + set_source_rgba (img_context, _color); + layout->show_in_cairo_context (img_context); + } /* text has now been rendered in _image and is ready for blit in * ::render @@ -122,19 +144,26 @@ Text::_redraw (Glib::RefPtr layout) const } void -Text::render (Rect const & /*area*/, Cairo::RefPtr context) const +Text::render (Rect const & area, Cairo::RefPtr context) const { if (_text.empty()) { return; } + Rect self = item_to_window (Rect (0, 0, min (_clamped_width, (double)_image->get_width ()), _image->get_height ())); + boost::optional i = self.intersection (area); + + if (!i) { + return; + } + if (_need_redraw) { redraw (context); } - Rect self = item_to_window (Rect (0, 0, min (_clamped_width, _width), _height)); - - context->rectangle (self.x0, self.y0, self.width(), self.height()); + Rect intersection (i.get()); + + context->rectangle (intersection.x0, intersection.y0, intersection.width(), intersection.height()); context->set_source (_image, self.x0, self.y0); context->fill (); } @@ -142,7 +171,10 @@ Text::render (Rect const & /*area*/, Cairo::RefPtr context) cons void Text::clamp_width (double w) { + begin_change (); _clamped_width = w; + _bounding_box_dirty = true; + end_change (); } void @@ -193,6 +225,9 @@ Text::set_color (Color color) begin_change (); _color = color; + if (_outline) { + set_outline_color (contrasting_text_color (_color)); + } _need_redraw = true; end_change ();