/* AbiWord * Copyright (C) 2004 Luca Padovani * * 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., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #include "gr_Graphics.h" #include "gr_Abi_CharArea.h" #include "gr_Abi_RenderingContext.h" GR_Abi_CharArea::GR_Abi_CharArea(GR_Graphics* graphics, GR_Font* f, const scaled& /*size*/, UT_UCS4Char c) : m_pFont(f), m_ch(c) { #if 0 UT_ASSERT(graphics); graphics->setFont(m_pFont); m_box = BoundingBox(GR_Abi_RenderingContext::fromAbiLayoutUnits(graphics->measureUnRemappedChar(m_ch)), GR_Abi_RenderingContext::fromAbiLayoutUnits(graphics->getFontAscent()), GR_Abi_RenderingContext::fromAbiLayoutUnits(graphics->getFontDescent())); #else UT_ASSERT(f); UT_Rect glyphRect; graphics->setFont(m_pFont); f->glyphBox(m_ch, glyphRect, graphics); GR_Abi_RenderingContext Context(graphics); #if 0 fprintf(stderr, "getting glyph %d\n glyphBox [left=%d,width=%d,top=%d,height=%d]\n measureUnremappedChar=%d\n measureUnremappedCharForCache=%d\n ftlu=%f\n tdu=%f\n tlu=%f\n size=%d\n", c, glyphRect.left, glyphRect.width, glyphRect.top, glyphRect.height, graphics->measureUnRemappedChar(m_ch), f->measureUnremappedCharForCache(m_ch), graphics->ftluD(1.0), graphics->tduD(1.0), graphics->tluD(1.0), size.getValue()); #endif m_box = BoundingBox(Context.fromAbiLayoutUnits(glyphRect.width + glyphRect.left), Context.fromAbiLayoutUnits(glyphRect.top), Context.fromAbiLayoutUnits(glyphRect.height - glyphRect.top)); #endif } GR_Abi_CharArea::~GR_Abi_CharArea() { } BoundingBox GR_Abi_CharArea::box() const { return m_box; } scaled GR_Abi_CharArea::leftEdge() const { return 0; } scaled GR_Abi_CharArea::rightEdge() const { return m_box.width; } void GR_Abi_CharArea::render(RenderingContext& c, const scaled& x, const scaled& y) const { GR_Abi_RenderingContext& context = dynamic_cast(c); context.drawChar(x, y, m_pFont, m_ch); //context.drawBox(x, y, m_box); }