/* Pango * fonts.c: * * Copyright (C) 1999 Red Hat Software * * 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. */ #include "pango.h" /** * pango_font_description_copy: * @desc: a #PangoFontDescription * * Make a copy of a #PangoFontDescription. * * Return value: a newly allocated #PangoFontDescription. This value * must be freed using pango_font_description_free(). **/ PangoFontDescription * pango_font_description_copy (const PangoFontDescription *desc) { PangoFontDescription *result = g_new (PangoFontDescription, 1); *result = *desc; result->family_name = g_strdup (result->family_name); return result; } /** * pango_font_description_compare: * @desc1: a #PangoFontDescription * @desc2: another #PangoFontDescription * * Compare two font descriptions for equality. * * Return value: %TRUE if the two font descriptions are proveably * identical. (Two font descriptions may result in * identical fonts being loaded, but still compare * %FALSE.) **/ gboolean pango_font_description_compare (const PangoFontDescription *desc1, const PangoFontDescription *desc2) { g_return_val_if_fail (desc1 != NULL, FALSE); g_return_val_if_fail (desc2 != NULL, FALSE); return (desc1->style == desc2->style && desc1->variant == desc2->variant && desc1->weight == desc2->weight && desc1->stretch == desc2->stretch && g_strcasecmp (desc1->family_name, desc2->family_name)); } /** * pango_font_description_free: * @desc: a #PangoFontDescription * * Free a font description returned from pango_font_describe() * or pango_font_description_copy(). **/ void pango_font_description_free (PangoFontDescription *desc) { if (desc) { if (desc->family_name) g_free (desc->family_name); g_free (desc); } } /** * pango_font_descriptions_free: * @descs: a pointer to an array of #PangoFontDescription * @n_descs: number of font descriptions in @descs * * Free a list of font descriptions from pango_font_map_list_fonts() **/ void pango_font_descriptions_free (PangoFontDescription **descs, int n_descs) { int i; if (descs) { for (i = 0; idata); font->ref_count = 1; } /** * pango_font_ref: * @font: a #PangoFont * * Increase the reference count of a #PangoFont. */ void pango_font_ref (PangoFont *font) { g_return_if_fail (font != NULL); font->ref_count++; } /** * pango_font_unref: * @font: a #PangoFont * * Decrease the reference count of a #PangoFont. * if the result is zero, destroy the font * and free the associated memory. */ void pango_font_unref (PangoFont *font) { g_return_if_fail (font != NULL); g_return_if_fail (font->ref_count > 0); font->ref_count--; if (font->ref_count == 0) { g_datalist_clear (&font->data); font->klass->destroy (font); } } /** * pango_font_set_data: * @font: a #PangoFont * @key: a string identifying the type of user data. * @data: the data to store. If %NULL, the current * data for the key will be removed. * @destroy_func: a function to call when the data is no * longer stored, either because the font has * been destroyed, or because the data has * been replaced. This can be %NULL, in which * case no function will be called. * * Associate user data, tagged with a string id, with a particular * font. */ void pango_font_set_data (PangoFont *font, gchar *key, gpointer data, GDestroyNotify destroy_func) { g_datalist_set_data_full (&font->data, key, data, destroy_func); } /** * pango_font_get_data: * @font: a #PangoFont * @key: a string identifying the type of user data. * * Look up user data tagged with a particular key. * * Returns the data, or NULL if that key does not exist. */ gpointer pango_font_get_data (PangoFont *font, gchar *key) { return g_datalist_get_data (&font->data, key); } /** * pango_font_get_coverage: * @font: a #PangoFont * @lang: the language tag (in the form of "en_US") * * Compute the coverage map for a given font and language tag. * * Return value: a newly allocated #PangoContext object. **/ PangoCoverage * pango_font_get_coverage (PangoFont *font, const char *lang) { g_return_val_if_fail (font != NULL, NULL); g_return_val_if_fail (lang != NULL, NULL); return font->klass->get_coverage (font, lang); } /** * pango_font_find_shaper: * @font: a #PangoFont * @lang: the language tag (in the form of "en_US") * @ch: the ISO-10646 character code. * * Find the best matching shaper for a font for a particular * language tag and character point. * * Return value: the best matching shaper. **/ PangoEngineShape * pango_font_find_shaper (PangoFont *font, const char *lang, guint32 ch) { g_return_val_if_fail (font != NULL, NULL); g_return_val_if_fail (lang != NULL, NULL); return font->klass->find_shaper (font, lang, ch); } /** * pango_font_map_init: * @fontmap: a #PangoFontMap * * Initialize a #PangoFontMap structure. This should * only be called from the "new" routine of code which * is implementing a "subclass" of #PangoFontMap */ void pango_font_map_init (PangoFontMap *fontmap) { g_return_if_fail (fontmap != NULL); fontmap->ref_count = 1; } /** * pango_font_map_ref: * @fontmap: a #PangoFontMap * * Increase the reference count of a #PangoFontMap. */ void pango_font_map_ref (PangoFontMap *fontmap) { g_return_if_fail (fontmap != NULL); fontmap->ref_count++; } /** * pango_font_map_unref: * @fontmap: a #PangoFontMap * * Decrease the reference count of a #PangoFontMap. * if the result is zero, destroy the font * and free the associated memory. */ void pango_font_map_unref (PangoFontMap *fontmap) { g_return_if_fail (fontmap != NULL); g_return_if_fail (fontmap->ref_count > 0); fontmap->ref_count--; if (fontmap->ref_count == 0) fontmap->klass->destroy (fontmap); } /** * pango_font_map_load_font: * @fontmap: a #PangoFontMap * @desc: a #PangoFontDescription describing the font to load * @size: the size at which to load the font (in points) * * Load the font in the fontmap that is the closest match for @desc. * * Returns the font loaded, or %NULL if no font matched. **/ PangoFont * pango_font_map_load_font (PangoFontMap *fontmap, const PangoFontDescription *desc, double size) { g_return_val_if_fail (fontmap != NULL, NULL); return fontmap->klass->load_font (fontmap, desc, size); } /** * pango_font_map_list_fonts: * @fontmap: a #PangoFontMap * @family: the family for which to list the fonts, or %NULL * to list fonts in all families. * @descs: location to store a pointer to an array of pointers to * #PangoFontDescription. This array should be freed * with pango_font_descriptions_free(). * @n_descs: location to store the number of elements in @descs * * List all fonts in a fontmap, or the fonts in a particular family. **/ void pango_font_map_list_fonts (PangoFontMap *fontmap, const char *family, PangoFontDescription ***descs, int *n_descs) { g_return_if_fail (fontmap != NULL); fontmap->klass->list_fonts (fontmap, family, descs, n_descs); } /** * pango_font_map_list_families: * @fontmap: a #PangoFontMap * @families: location to store a pointer to an array of strings. * This array should be freed with pango_font_map_free_families(). * @n_families: location to store the number of elements in @descs * * List all families for a fontmap. **/ void pango_font_map_list_families (PangoFontMap *fontmap, gchar ***families, int *n_families) { g_return_if_fail (fontmap != NULL); fontmap->klass->list_families (fontmap, families, n_families); } /** * pango_font_map_free_families: * @families: a list of families * @n_families: number of elements in @families * * Free a list of families returned from pango_font_map_list_families() **/ void pango_font_map_free_families (gchar **families, int n_families) { int i; g_return_if_fail (n_families == 0 || families != NULL); for (i=0; i