/* 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 #include #include #include #include #ifdef HAVE_CONFIG_H #include "config.h" #endif #include "gr_Abi_AreaFactory.h" #include "gr_Abi_MathGraphicDevice.h" #include "gr_Abi_DefaultShaper.h" #include "gr_Abi_StandardSymbolsShaper.h" #include "gr_Abi_ComputerModernShaper.h" GR_Abi_MathGraphicDevice::GR_Abi_MathGraphicDevice(const SmartPtr& pLogger, const SmartPtr& pConf, GR_Graphics* pGr) : MathGraphicDevice(pLogger), m_abiFactory(GR_Abi_AreaFactory::create()) { UT_ASSERT(pGr); setShaperManager(ShaperManager::create(pLogger)); setFactory(m_abiFactory); SmartPtr defaultShaper = GR_Abi_DefaultShaper::create(); defaultShaper->setGraphics(pGr); getShaperManager()->registerShaper(defaultShaper); getShaperManager()->registerShaper(SpaceShaper::create()); #ifndef TOOLKIT_COCOA SmartPtr symbolsShaper = GR_Abi_StandardSymbolsShaper::create(); symbolsShaper->setGraphics(pGr); getShaperManager()->registerShaper(symbolsShaper); #endif #if 1 SmartPtr cmShaper = GR_Abi_ComputerModernShaper::create(pLogger, pConf); cmShaper->setGraphics(pGr); getShaperManager()->registerShaper(cmShaper); #endif } GR_Abi_MathGraphicDevice::~GR_Abi_MathGraphicDevice() { } scaled GR_Abi_MathGraphicDevice::defaultLineThickness(const class FormattingContext& FC) const { return scaled(0.25); } SmartPtr GR_Abi_MathGraphicDevice::create(const SmartPtr& pLogger, const SmartPtr& pConf, GR_Graphics* pGr) { return new GR_Abi_MathGraphicDevice(pLogger, pConf, pGr); }