1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
/* Copyright (C) 2004 MySQL AB
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 */
/**
* @file myx_gc_font_manager.h
* @brief Implements the global font manager class that handles all text output related tasks.
*/
#ifndef __GC_FONT_MANAGER_H__
#define __GC_FONT_MANAGER_H__
#include "myx_gc_utilities.h"
#ifdef USE_FONTCONFIG
#include <fontconfig/fontconfig.h>
#endif
// FTGL
#include <FTGLOutlineFont.h>
#include <FTGLPolygonFont.h>
#include <FTGLBitmapFont.h>
#include <FTGLTextureFont.h>
#include <FTGLPixmapFont.h>
#include <FTGLExtrdFont.h>
//----------------------------------------------------------------------------------------------------------------------
typedef map<string, FTFont*> Fonts;
typedef struct tagFontFileEntry
{
int useCount;
string entries[2][2];
} FontFileEntry;
typedef map<string, FontFileEntry*> FontFiles;
/**
* CFontManager is a helper class for text output in the generic canvas. It maps a description string for a font with
* attributes to a display list. If there is no display for a given font then one is created.
* The font manager is basically a singleton class. We only need one instance of it.
*/
class CFontManager
{
private:
Fonts FFonts;
bool FUseLocalDisplayLists;
string FFontResourcesPath;
#ifndef USE_FONTCONFIG
FontFiles FFiles;
#endif
protected:
string getFontFile(string family, const string& style, int Weight);
public:
CFontManager(void);
virtual ~CFontManager(void);
float ascender(const string& fontId);
void boundingBox(const wstring& output, const string& fontId, TBoundingBox& Box);
void clear(void);
float descender(const string& fontId);
string fontIdCreate(const string& family, const string& style, int weight, int fontSize);
float lineHeight(const string& fontId);
void setFontResourcesPath(const string& path);
void textOut(const wstring& output, const string& fontId);
};
//----------------------------------------------------------------------------------------------------------------------
int convertFontWeight(const string Weight);
/** Returns the singleton font manager instance. */
CFontManager* fontManager(void);
/** Increase lock count for the manager. */
void lockFontManager(void);
/** Decrease lock count for the manager. */
void unlockFontManager(void);
#endif // #ifdef __GC_FONT_MANAGER_H__
|