// Copyright (C) 2000-2007, Luca Padovani . // // This file is part of GtkMathView, a flexible, high-quality rendering // engine for MathML documents. // // GtkMathView is free software; you can redistribute it and/or modify it // under the terms of the GNU Lesser General Public License as published // by the Free Software Foundation; either version 3 of the License, or // (at your option) any later version. // // GtkMathView 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 // Lesser General Public License for more details. // // You should have received a copy of the GNU Lesser General Public License // along with this program. If not, see . #ifndef __FontDataBase_hh__ #define __FontDataBase_hh__ #include #include #include #include "Object.hh" #include "SmartPtr.hh" #include "String.hh" class GMV_BackEnd_EXPORT FontDataBase : public Object { protected: FontDataBase(); virtual ~FontDataBase(); public: virtual int getFontId(const String& fontName, float fontSize); virtual void dumpFontTable(std::ostream& os) const; virtual void recallFont(const int id, std::ostringstream& body); virtual void usedChar(const String& content, const String& family); static SmartPtr create(); private: struct FontDesc { String name; float size; int id; FontDesc(const String& fontName, const float fontSize, const int i) : name(fontName), size(fontSize), id(i) { }; }; std::list fd; }; #endif // __FontDataBase_hh__