/*
  This header file contains the lookup table used for converting between
  FCIs (font characterization integers) and font names for the standard
  35 type 1 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 General Library 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
*/

/* There are no good choices for script fonts for Type 1 so I just
 * defaulted to the Times variants in that case. */

/* There is only one Type 1 symbol font in the standard 35 so use
 * it for all variations. */

/* N.B. When updating this table by hand be sure to keep it in 
 * ascending order in fci! 
 */
#define N_Type1Lookup 30
const FCI_to_FontName_Table Type1Lookup[N_Type1Lookup] = {
     {PL_FCI_MARK | 0x000, (unsigned char *)"Helvetica"},
     {PL_FCI_MARK | 0x001, (unsigned char *)"Times-Roman"},
     {PL_FCI_MARK | 0x002, (unsigned char *)"Courier"},
     {PL_FCI_MARK | 0x003, (unsigned char *)"Times-Roman"},
     {PL_FCI_MARK | 0x004, (unsigned char *)"Symbol"},
     {PL_FCI_MARK | 0x010, (unsigned char *)"Helvetica-Oblique"},
     {PL_FCI_MARK | 0x011, (unsigned char *)"Times-Italic"},
     {PL_FCI_MARK | 0x012, (unsigned char *)"Courier-Oblique"},
     {PL_FCI_MARK | 0x013, (unsigned char *)"Times-Italic"},
     {PL_FCI_MARK | 0x014, (unsigned char *)"Symbol"},
     {PL_FCI_MARK | 0x020, (unsigned char *)"Helvetica-Oblique"},
     {PL_FCI_MARK | 0x021, (unsigned char *)"Times-Italic"},
     {PL_FCI_MARK | 0x022, (unsigned char *)"Courier-Oblique"},
     {PL_FCI_MARK | 0x023, (unsigned char *)"Times-Italic"},
     {PL_FCI_MARK | 0x024, (unsigned char *)"Symbol"},
     {PL_FCI_MARK | 0x100, (unsigned char *)"Helvetica-Bold"},
     {PL_FCI_MARK | 0x101, (unsigned char *)"Times-Bold"},
     {PL_FCI_MARK | 0x102, (unsigned char *)"Courier-Bold"},
     {PL_FCI_MARK | 0x103, (unsigned char *)"Times-Bold"},
     {PL_FCI_MARK | 0x104, (unsigned char *)"Symbol"},
     {PL_FCI_MARK | 0x110, (unsigned char *)"Helvetica-BoldOblique"},
     {PL_FCI_MARK | 0x111, (unsigned char *)"Times-BoldItalic"},
     {PL_FCI_MARK | 0x112, (unsigned char *)"Courier-BoldOblique"},
     {PL_FCI_MARK | 0x113, (unsigned char *)"Times-BoldItalic"},
     {PL_FCI_MARK | 0x114, (unsigned char *)"Symbol"},
     {PL_FCI_MARK | 0x120, (unsigned char *)"Helvetica-BoldOblique"},
     {PL_FCI_MARK | 0x121, (unsigned char *)"Times-BoldItalic"},
     {PL_FCI_MARK | 0x122, (unsigned char *)"Courier-BoldOblique"},
     {PL_FCI_MARK | 0x123, (unsigned char *)"Times-BoldItalic"},
     {PL_FCI_MARK | 0x124, (unsigned char *)"Symbol"}
};


syntax highlighted by Code2HTML, v. 0.9.1