13
0
livetrax/libs/gtkmm2/pango/pangomm/layoutiter.cc
Paul Davis 449aab3c46 rollback to 3428, before the mysterious removal of libs/* at 3431/3432
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
2008-06-02 21:41:35 +00:00

208 lines
5.1 KiB
C++

// Generated by gtkmmproc -- DO NOT MODIFY!
#include <pangomm/layoutiter.h>
#include <pangomm/private/layoutiter_p.h>
// -*- 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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(gobj()));
}
LayoutRun LayoutIter::get_run() const
{
return Glib::wrap(pango_layout_iter_get_run(const_cast<PangoLayoutIter*>(gobj())));
}
Glib::RefPtr<LayoutLine> LayoutIter::get_line() const
{
Glib::RefPtr<LayoutLine> retvalue = Glib::wrap(pango_layout_iter_get_line(const_cast<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(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<PangoLayoutIter*>(gobj()), &y0, &y1);
}
void LayoutIter::get_layout_extents(Rectangle& ink_rect, Rectangle& logical_rect) const
{
pango_layout_iter_get_layout_extents(const_cast<PangoLayoutIter*>(gobj()), (ink_rect).gobj(), (logical_rect).gobj());
}
int LayoutIter::get_baseline() const
{
return pango_layout_iter_get_baseline(const_cast<PangoLayoutIter*>(gobj()));
}
} // namespace Pango