/usr/include/gtkextra-3.0/gtkextra/gtkpsfont.h is in libgtkextra-dev 3.3.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 | /* gtkpsfont - PostScript Fonts handling
* Copyright 1999-2001 Adrian E. Feiguin <feiguin@ifir.edu.ar>
*
* Some code borrowed from
* DiaCanvas -- a technical canvas widget
* Copyright (C) 1999 Arjan Molenaar
* Dia -- an diagram creation/manipulation program
* Copyright (C) 1998 Alexander Larsson
*
* and Xfig
*
* This library 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.
*
* This library 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 this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#ifndef __GTK_PS_FONT_H__
#define __GTK_PS_FONT_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* List of names of the 35 default Adobe fonts
"Times-Roman",
"Times-Italic",
"Times-Bold",
"Times-BoldItalic",
"AvantGarde-Book",
"AvantGarde-BookOblique",
"AvantGarde-Demi",
"AvantGarde-DemiOblique",
"Bookman-Light",
"Bookman-LightItalic",
"Bookman-Demi",
"Bookman-DemiItalic",
"Courier",
"Courier-Oblique",
"Courier-Bold",
"Courier-BoldOblique",
"Helvetica",
"Helvetica-Oblique",
"Helvetica-Bold",
"Helvetica-BoldOblique",
"Helvetica-Narrow",
"Helvetica-Narrow-Oblique",
"Helvetica-Narrow-Bold",
"Helvetica-Narrow-BoldOblique",
"NewCenturySchoolbook-Roman",
"NewCenturySchoolbook-Italic",
"NewCenturySchoolbook-Bold",
"NewCenturySchoolbook-BoldItalic",
"Palatino-Roman",
"Palatino-Italic",
"Palatino-Bold",
"Palatino-BoldItalic",
"Symbol",
"ZapfChancery-MediumItalic",
"ZapfDingbats",
*/
typedef struct _GtkPSFont GtkPSFont;
/**
* GtkPSFont:
*
* The GtkPSFont struct contains only private data.
* It should only be accessed through the functions described below.
*/
struct _GtkPSFont {
/*< private >*/
gchar *fontname;
gchar *psname;
gchar *family;
gchar *pango_description;
gchar *i18n_latinfamily;
gboolean italic;
gboolean bold;
gboolean vertical;
};
gint gtk_psfont_init ();
void gtk_psfont_unref ();
GtkPSFont* gtk_psfont_get_by_name (const gchar *name);
GtkPSFont* gtk_psfont_get_by_family (const gchar *family_name,
gboolean italic,
gboolean bold);
GdkFont* gtk_psfont_get_gdkfont (GtkPSFont *font, gint height);
PangoFontDescription* gtk_psfont_get_font_description (GtkPSFont *font,
gint height);
const gchar * gtk_psfont_get_psfontname (GtkPSFont *psfont);
void gtk_psfont_add_font (const char *fontname,
const gchar *psname,
const gchar *family,
const gchar *pango_description,
gboolean italic,
gboolean bold);
void gtk_psfont_add_i18n_font (const char *fontname,
const gchar *psname,
const gchar *family,
const gchar *i18n_latinfamily,
const gchar *pango_description,
gboolean italic,
gboolean bold,
gboolean vertical);
void gtk_psfont_get_families (GList **families, gint *num_families);
void gtk_psfont_get_char_size (GtkPSFont *psfont,
GdkFont *font,
GdkFont *latin_font,
GdkWChar wc,
gint *width,
gint *ascent,
gint *descent);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __GTK_PS_FONT_H__ */
|