ardour/libs/canvas/text.cc

258 lines
5.1 KiB
C++
Raw Normal View History

/*
Copyright (C) 2011-2013 Paul Davis
Author: Carl Hetherington <cth@carlh.net>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <gdk/gdk.h>
#include <cairomm/cairomm.h>
#include <gtkmm/label.h>
#include "pbd/stacktrace.h"
#include "canvas/text.h"
#include "canvas/canvas.h"
#include "canvas/utils.h"
#include "canvas/colors.h"
using namespace std;
using namespace ArdourCanvas;
Text::Text (Canvas* c)
: Item (c)
, _color (0x000000ff)
, _font_description (0)
, _alignment (Pango::ALIGN_LEFT)
, _width (0)
, _height (0)
2013-04-06 19:04:34 -04:00
, _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;
}
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
2014-11-25 13:44:01 -05:00
Text::_redraw (Cairo::RefPtr<Cairo::Context> context) const
{
if (_text.empty()) {
return;
}
Glib::RefPtr<Pango::Layout> layout = Pango::Layout::create (context);
2014-11-25 13:44:01 -05:00
__redraw (layout);
}
void
2014-11-25 13:44:01 -05:00
Text::_redraw (Glib::RefPtr<Pango::Context> context) const
{
if (_text.empty()) {
return;
}
Glib::RefPtr<Pango::Layout> layout = Pango::Layout::create (context);
2014-11-25 13:44:01 -05:00
__redraw (layout);
}
void
2014-11-25 13:44:01 -05:00
Text::__redraw (Glib::RefPtr<Pango::Layout> layout) const
{
layout->set_text (_text);
if (_font_description) {
layout->set_font_description (*_font_description);
}
layout->set_alignment (_alignment);
int w;
int h;
layout->get_pixel_size (w, h);
_width = w;
_height = h;
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 */
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);
}
2013-04-06 19:04:34 -04:00
/* text has now been rendered in _image and is ready for blit in
* ::render
*/
_need_redraw = false;
}
void
Text::render (Rect const & area, Cairo::RefPtr<Cairo::Context> 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<Rect> i = self.intersection (area);
if (!i) {
return;
}
if (_need_redraw) {
2014-11-25 13:44:01 -05:00
_redraw (context);
}
Rect intersection (i.get());
context->rectangle (intersection.x0, intersection.y0, intersection.width(), intersection.height());
context->set_source (_image, self.x0, self.y0);
context->fill ();
}
void
Text::clamp_width (double w)
{
begin_change ();
_clamped_width = w;
_bounding_box_dirty = true;
end_change ();
}
void
Text::compute_bounding_box () const
{
if (!_canvas || _text.empty()) {
_bounding_box = boost::optional<Rect> ();
_bounding_box_dirty = false;
return;
}
if (_bounding_box_dirty) {
if (_need_redraw || !_image) {
Glib::RefPtr<Pango::Context> context = Glib::wrap (gdk_pango_context_get()); // context now owns C object and will free it
2014-11-25 13:44:01 -05:00
_redraw (context);
}
_bounding_box = Rect (0, 0, min (_clamped_width, (double) _image->get_width()), _image->get_height());
_bounding_box_dirty = false;
}
}
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;
if (_outline) {
set_outline_color (contrasting_text_color (_color));
}
2013-04-06 19:04:34 -04:00
_need_redraw = true;
end_change ();
}
void
Text::dump (ostream& o) const
{
Item::dump (o);
o << _canvas->indent() << '\t' << " text = " << _text << endl
<< _canvas->indent() << " color = " << _color;
o << endl;
}
double
Text::text_width() const
{
if (_need_redraw) {
redraw ();
}
return _width;
}