ardour/libs/canvas/text.cc

155 lines
2.7 KiB
C++
Raw Normal View History

#include <cairomm/cairomm.h>
#include <gtkmm/label.h>
#include "pbd/xml++.h"
#include "canvas/text.h"
#include "canvas/canvas.h"
#include "canvas/utils.h"
using namespace std;
using namespace ArdourCanvas;
Text::Text (Group* parent)
: Item (parent)
, _color (0x000000ff)
, _font_description (0)
, _alignment (Pango::ALIGN_LEFT)
, _width (0)
, _height (0)
2013-04-06 19:04:34 -04:00
, _need_redraw (false)
{
}
2013-04-04 18:45:27 -04:00
Text::~Text ()
{
delete _font_description;
}
void
Text::set (string const & text)
{
begin_change ();
_text = text;
2013-04-06 19:04:34 -04:00
_need_redraw = true;
_bounding_box_dirty = true;
2013-04-06 19:04:34 -04:00
end_change ();
}
void
2013-04-06 19:04:34 -04:00
Text::redraw (Cairo::RefPtr<Cairo::Context> context) const
{
Glib::RefPtr<Pango::Layout> layout = Pango::Layout::create (context);
layout->set_text (_text);
if (_font_description) {
layout->set_font_description (*_font_description);
}
layout->set_alignment (_alignment);
Pango::Rectangle ink_rect = layout->get_ink_extents();
_origin.x = ink_rect.get_x() / Pango::SCALE;
_origin.y = ink_rect.get_y() / Pango::SCALE;
_width = (ink_rect.get_width() + Pango::SCALE / 2) / Pango::SCALE;
_height = (ink_rect.get_height() + Pango::SCALE / 2) / Pango::SCALE;
2013-04-06 19:04:34 -04:00
_image = Cairo::ImageSurface::create (Cairo::FORMAT_ARGB32, _width, _height);
Cairo::RefPtr<Cairo::Context> img_context = Cairo::Context::create (_image);
2013-04-06 19:04:34 -04:00
/* and draw, in the appropriate color of course */
2013-04-06 19:04:34 -04:00
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
*/
_need_redraw = false;
}
void
Text::compute_bounding_box () const
{
_bounding_box = Rect (_origin.x, _origin.y, _origin.x + _width, _origin.y + _height);
_bounding_box_dirty = false;
}
void
Text::render (Rect const & /*area*/, Cairo::RefPtr<Cairo::Context> context) const
{
2013-04-06 19:04:34 -04:00
if (_text.empty()) {
return;
}
if (_need_redraw) {
redraw (context);
}
context->set_source (_image, 0, 0);
context->rectangle (0, 0, _width, _height);
context->fill ();
}
XMLNode *
Text::get_state () const
{
XMLNode* node = new XMLNode ("Text");
#ifdef CANVAS_DEBUG
if (!name.empty ()) {
node->add_property ("name", name);
}
#endif
return node;
}
void
Text::set_state (XMLNode const * /*node*/)
{
/* XXX */
}
void
Text::set_alignment (Pango::Alignment alignment)
{
begin_change ();
_alignment = alignment;
2013-04-06 19:04:34 -04:00
_need_redraw = true;
_bounding_box_dirty = true;
end_change ();
}
void
2013-04-04 18:45:27 -04:00
Text::set_font_description (Pango::FontDescription font_description)
{
begin_change ();
2013-04-04 18:45:27 -04:00
_font_description = new Pango::FontDescription (font_description);
2013-04-06 19:04:34 -04:00
_need_redraw = true;
_bounding_box_dirty = true;
end_change ();
}
void
Text::set_color (Color color)
{
begin_change ();
_color = color;
2013-04-06 19:04:34 -04:00
_need_redraw = true;
end_change ();
}