// -*- c++ -*- /* $Id: glyphstring.ccg,v 1.2 2006/05/30 17:14:21 murrayc Exp $ */ /* * * Copyright 1998-2002 The gtkmm Development Team * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include namespace Pango { GlyphString::GlyphString(const Glib::ustring& text, const Analysis& analysis) : gobject_(pango_glyph_string_new()) { pango_shape(text.c_str(), text.bytes(), const_cast(analysis.gobj()), gobj()); } Rectangle GlyphString::get_ink_extents(const Glib::RefPtr& font) const { Rectangle ink_rect; pango_glyph_string_extents(const_cast(gobj()), const_cast(font->gobj()), ink_rect.gobj(), 0); return ink_rect; } Rectangle GlyphString::get_ink_extents(int start, int end, const Glib::RefPtr& font) const { Rectangle ink_rect; pango_glyph_string_extents_range(const_cast(gobj()), start, end, const_cast(font->gobj()), ink_rect.gobj(), 0); return ink_rect; } Rectangle GlyphString::get_logical_extents(const Glib::RefPtr& font) const { Rectangle logical_rect; pango_glyph_string_extents(const_cast(gobj()), const_cast(font->gobj()), 0, logical_rect.gobj()); return logical_rect; } Rectangle GlyphString::get_logical_extents(int start, int end, const Glib::RefPtr& font) const { Rectangle logical_rect; pango_glyph_string_extents_range(const_cast(gobj()), start, end, const_cast(font->gobj()), 0, logical_rect.gobj()); return logical_rect; } Glib::ArrayHandle GlyphString::get_logical_widths(const Glib::ustring& text, int embedding_level) const { int* logical_widths = g_new(int, text.length()); pango_glyph_string_get_logical_widths(const_cast(gobj()), text.c_str(), text.bytes(), embedding_level, logical_widths); return Glib::ArrayHandle(logical_widths, text.length(), Glib::OWNERSHIP_SHALLOW); } int GlyphString::index_to_x(const Glib::ustring& text, const Analysis& analysis, int index, bool trailing) const { int x_pos; pango_glyph_string_index_to_x(const_cast(gobj()), const_cast(text.c_str()), text.bytes(), const_cast(analysis.gobj()), index, static_cast(trailing), &x_pos); return x_pos; } void GlyphString::x_to_index(const Glib::ustring& text, const Analysis& analysis, int x_pos, int& index, bool& trailing) const { gboolean trailing_temp = FALSE; pango_glyph_string_x_to_index(const_cast(gobj()), const_cast(text.c_str()), text.bytes(), const_cast(analysis.gobj()), x_pos, &index, &trailing_temp); trailing = trailing_temp; } Glib::ArrayHandle GlyphString::get_glyphs() const { return Glib::ArrayHandle(reinterpret_cast(gobj()->glyphs), gobj()->num_glyphs, Glib::OWNERSHIP_NONE); } } //namespace Pango