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
|
//
// This header file contains the lookup table used for converting between
// FCIs (font characterization integers) and font names for TrueType fonts.
//
// Copyright (C) 2005 Alan W. Irwin
//
// This file is part of PLplot.
//
// PLplot 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.
//
// PLplot 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 PLplot; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
//
// N.B. When updating this table by hand be sure to keep it in
// ascending order in fci!
//
#define N_TrueTypeLookup 30
static const FCI_to_FontName_Table TrueTypeLookup[N_TrueTypeLookup] = {
{ PL_FCI_MARK | 0x000, (const unsigned char *) PL_FREETYPE_SANS },
{ PL_FCI_MARK | 0x001, (const unsigned char *) PL_FREETYPE_SERIF },
{ PL_FCI_MARK | 0x002, (const unsigned char *) PL_FREETYPE_MONO },
{ PL_FCI_MARK | 0x003, (const unsigned char *) PL_FREETYPE_SCRIPT },
{ PL_FCI_MARK | 0x004, (const unsigned char *) PL_FREETYPE_SYMBOL },
{ PL_FCI_MARK | 0x010, (const unsigned char *) PL_FREETYPE_SANS_ITALIC },
{ PL_FCI_MARK | 0x011, (const unsigned char *) PL_FREETYPE_SERIF_ITALIC },
{ PL_FCI_MARK | 0x012, (const unsigned char *) PL_FREETYPE_MONO_ITALIC },
{ PL_FCI_MARK | 0x013, (const unsigned char *) PL_FREETYPE_SCRIPT_ITALIC },
{ PL_FCI_MARK | 0x014, (const unsigned char *) PL_FREETYPE_SYMBOL_ITALIC },
{ PL_FCI_MARK | 0x020, (const unsigned char *) PL_FREETYPE_SANS_OBLIQUE },
{ PL_FCI_MARK | 0x021, (const unsigned char *) PL_FREETYPE_SERIF_OBLIQUE },
{ PL_FCI_MARK | 0x022, (const unsigned char *) PL_FREETYPE_MONO_OBLIQUE },
{ PL_FCI_MARK | 0x023, (const unsigned char *) PL_FREETYPE_SCRIPT_OBLIQUE },
{ PL_FCI_MARK | 0x024, (const unsigned char *) PL_FREETYPE_SYMBOL_OBLIQUE },
{ PL_FCI_MARK | 0x100, (const unsigned char *) PL_FREETYPE_SANS_BOLD },
{ PL_FCI_MARK | 0x101, (const unsigned char *) PL_FREETYPE_SERIF_BOLD },
{ PL_FCI_MARK | 0x102, (const unsigned char *) PL_FREETYPE_MONO_BOLD },
{ PL_FCI_MARK | 0x103, (const unsigned char *) PL_FREETYPE_SCRIPT_BOLD },
{ PL_FCI_MARK | 0x104, (const unsigned char *) PL_FREETYPE_SYMBOL_BOLD },
{ PL_FCI_MARK | 0x110, (const unsigned char *) PL_FREETYPE_SANS_BOLD_ITALIC },
{ PL_FCI_MARK | 0x111, (const unsigned char *) PL_FREETYPE_SERIF_BOLD_ITALIC },
{ PL_FCI_MARK | 0x112, (const unsigned char *) PL_FREETYPE_MONO_BOLD_ITALIC },
{ PL_FCI_MARK | 0x113, (const unsigned char *) PL_FREETYPE_SCRIPT_BOLD_ITALIC },
{ PL_FCI_MARK | 0x114, (const unsigned char *) PL_FREETYPE_SYMBOL_BOLD_ITALIC },
{ PL_FCI_MARK | 0x120, (const unsigned char *) PL_FREETYPE_SANS_BOLD_OBLIQUE },
{ PL_FCI_MARK | 0x121, (const unsigned char *) PL_FREETYPE_SERIF_BOLD_OBLIQUE },
{ PL_FCI_MARK | 0x122, (const unsigned char *) PL_FREETYPE_MONO_BOLD_OBLIQUE },
{ PL_FCI_MARK | 0x123, (const unsigned char *) PL_FREETYPE_SCRIPT_BOLD_OBLIQUE },
{ PL_FCI_MARK | 0x124, (const unsigned char *) PL_FREETYPE_SYMBOL_BOLD_OBLIQUE }
};
|