// Generated by gtkmmproc -- DO NOT MODIFY! #include #include // -*- c++ -*- /* $Id$ */ /* * * Copyright 2001-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. */ namespace Pango { LayoutIter::LayoutIter() : gobject_ (0) {} LayoutIter::~LayoutIter() { if(gobject_) pango_layout_iter_free(gobject_); } void LayoutIter::assign_gobj(PangoLayoutIter* src) { if(src != gobject_) { if(gobject_) pango_layout_iter_free(gobject_); gobject_ = src; } } Rectangle LayoutIter::get_char_extents() const { Rectangle logical_rect; pango_layout_iter_get_char_extents(const_cast(gobj()), logical_rect.gobj()); return logical_rect; } Rectangle LayoutIter::get_cluster_ink_extents() const { Rectangle ink_rect; pango_layout_iter_get_cluster_extents(const_cast(gobj()), ink_rect.gobj(), 0); return ink_rect; } Rectangle LayoutIter::get_cluster_logical_extents() const { Rectangle logical_rect; pango_layout_iter_get_cluster_extents(const_cast(gobj()), 0, logical_rect.gobj()); return logical_rect; } Rectangle LayoutIter::get_run_ink_extents() const { Rectangle ink_rect; pango_layout_iter_get_run_extents(const_cast(gobj()), ink_rect.gobj(), 0); return ink_rect; } Rectangle LayoutIter::get_run_logical_extents() const { Rectangle logical_rect; pango_layout_iter_get_run_extents(const_cast(gobj()), 0, logical_rect.gobj()); return logical_rect; } Rectangle LayoutIter::get_line_ink_extents() const { Rectangle ink_rect; pango_layout_iter_get_line_extents(const_cast(gobj()), ink_rect.gobj(), 0); return ink_rect; } Rectangle LayoutIter::get_line_logical_extents() const { Rectangle logical_rect; pango_layout_iter_get_line_extents(const_cast(gobj()), 0, logical_rect.gobj()); return logical_rect; } Rectangle LayoutIter::get_layout_ink_extents() const { Rectangle ink_rect; pango_layout_iter_get_layout_extents(const_cast(gobj()), ink_rect.gobj(), 0); return ink_rect; } Rectangle LayoutIter::get_layout_logical_extents() const { Rectangle logical_rect; pango_layout_iter_get_layout_extents(const_cast(gobj()), 0, logical_rect.gobj()); return logical_rect; } } // namespace Pango namespace { } // anonymous namespace namespace Pango { int LayoutIter::get_index() const { return pango_layout_iter_get_index(const_cast(gobj())); } LayoutRun LayoutIter::get_run() const { return Glib::wrap(pango_layout_iter_get_run(const_cast(gobj()))); } Glib::RefPtr LayoutIter::get_line() const { Glib::RefPtr retvalue = Glib::wrap(pango_layout_iter_get_line(const_cast(gobj()))); if(retvalue) retvalue->reference(); //The function does not do a ref for us. return retvalue; } bool LayoutIter::at_last_line() const { return pango_layout_iter_at_last_line(const_cast(gobj())); } bool LayoutIter::next_char() { return pango_layout_iter_next_char(gobj()); } bool LayoutIter::next_cluster() { return pango_layout_iter_next_cluster(gobj()); } bool LayoutIter::next_run() { return pango_layout_iter_next_run(gobj()); } bool LayoutIter::next_line() { return pango_layout_iter_next_line(gobj()); } void LayoutIter::get_cluster_extents(Rectangle& ink_rect, Rectangle& logical_rect) const { pango_layout_iter_get_cluster_extents(const_cast(gobj()), (ink_rect).gobj(), (logical_rect).gobj()); } void LayoutIter::get_run_extents(Rectangle& ink_rect, Rectangle& logical_rect) const { pango_layout_iter_get_run_extents(const_cast(gobj()), (ink_rect).gobj(), (logical_rect).gobj()); } void LayoutIter::get_line_extents(Rectangle& ink_rect, Rectangle& logical_rect) const { pango_layout_iter_get_line_extents(const_cast(gobj()), (ink_rect).gobj(), (logical_rect).gobj()); } void LayoutIter::get_line_yrange(int& y0, int& y1) const { pango_layout_iter_get_line_yrange(const_cast(gobj()), &y0, &y1); } void LayoutIter::get_layout_extents(Rectangle& ink_rect, Rectangle& logical_rect) const { pango_layout_iter_get_layout_extents(const_cast(gobj()), (ink_rect).gobj(), (logical_rect).gobj()); } int LayoutIter::get_baseline() const { return pango_layout_iter_get_baseline(const_cast(gobj())); } } // namespace Pango