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 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
|
/* Pango
* pangoft2-fontmap.c:
*
* Copyright (C) 2000 Red Hat Software
* Copyright (C) 2000 Tor Lillqvist
*
* 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 <config.h>
#include <glib.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <fontconfig/fontconfig.h>
#include "pango-impl-utils.h"
#include "pangoft2-private.h"
#include "pangofc-fontmap.h"
typedef struct _PangoFT2Family PangoFT2Family;
typedef struct _PangoFT2FontMapClass PangoFT2FontMapClass;
struct _PangoFT2FontMap
{
PangoFcFontMap parent_instance;
FT_Library library;
double dpi_x;
double dpi_y;
/* Function to call on prepared patterns to do final
* config tweaking.
*/
PangoFT2SubstituteFunc substitute_func;
gpointer substitute_data;
GDestroyNotify substitute_destroy;
PangoRenderer *renderer;
};
struct _PangoFT2FontMapClass
{
PangoFcFontMapClass parent_class;
};
static void pango_ft2_font_map_finalize (GObject *object);
static PangoFcFont * pango_ft2_font_map_new_font (PangoFcFontMap *fcfontmap,
FcPattern *pattern);
static double pango_ft2_font_map_get_resolution (PangoFcFontMap *fcfontmap,
PangoContext *context);
static PangoFT2FontMap *pango_ft2_global_fontmap = NULL;
G_DEFINE_TYPE (PangoFT2FontMap, pango_ft2_font_map, PANGO_TYPE_FC_FONT_MAP)
static void
pango_ft2_font_map_class_init (PangoFT2FontMapClass *class)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (class);
PangoFcFontMapClass *fcfontmap_class = PANGO_FC_FONT_MAP_CLASS (class);
gobject_class->finalize = pango_ft2_font_map_finalize;
fcfontmap_class->default_substitute = _pango_ft2_font_map_default_substitute;
fcfontmap_class->new_font = pango_ft2_font_map_new_font;
fcfontmap_class->get_resolution = pango_ft2_font_map_get_resolution;
}
static void
pango_ft2_font_map_init (PangoFT2FontMap *fontmap)
{
fontmap->library = NULL;
fontmap->dpi_x = 72.0;
fontmap->dpi_y = 72.0;
}
static void
pango_ft2_font_map_finalize (GObject *object)
{
PangoFT2FontMap *ft2fontmap = PANGO_FT2_FONT_MAP (object);
if (ft2fontmap->renderer)
g_object_unref (ft2fontmap->renderer);
if (ft2fontmap->substitute_destroy)
ft2fontmap->substitute_destroy (ft2fontmap->substitute_data);
FT_Done_FreeType (ft2fontmap->library);
G_OBJECT_CLASS (pango_ft2_font_map_parent_class)->finalize (object);
}
/**
* pango_ft2_font_map_new:
*
* Create a new #PangoFT2FontMap object; a fontmap is used
* to cache information about available fonts, and holds
* certain global parameters such as the resolution and
* the default substitute function (see
* pango_ft2_font_map_set_default_substitute()).
*
* Return value: the newly created fontmap object. Unref
* with g_object_unref() when you are finished with it.
*
* Since: 1.2
**/
PangoFontMap *
pango_ft2_font_map_new (void)
{
PangoFT2FontMap *ft2fontmap;
FT_Error error;
/* Make sure that the type system is initialized */
g_type_init ();
ft2fontmap = g_object_new (PANGO_TYPE_FT2_FONT_MAP, NULL);
error = FT_Init_FreeType (&ft2fontmap->library);
if (error != FT_Err_Ok)
g_critical ("pango_ft2_font_map_new: Could not initialize freetype");
return (PangoFontMap *)ft2fontmap;
}
/**
* pango_ft2_font_map_set_default_substitute:
* @fontmap: a #PangoFT2FontMap
* @func: function to call to to do final config tweaking
* on #FcPattern objects.
* @data: data to pass to @func
* @notify: function to call when @data is no longer used.
*
* Sets a function that will be called to do final configuration
* substitution on a #FcPattern before it is used to load
* the font. This function can be used to do things like set
* hinting and antialiasing options.
*
* Since: 1.2
**/
void
pango_ft2_font_map_set_default_substitute (PangoFT2FontMap *fontmap,
PangoFT2SubstituteFunc func,
gpointer data,
GDestroyNotify notify)
{
if (fontmap->substitute_destroy)
fontmap->substitute_destroy (fontmap->substitute_data);
fontmap->substitute_func = func;
fontmap->substitute_data = data;
fontmap->substitute_destroy = notify;
pango_fc_font_map_cache_clear (PANGO_FC_FONT_MAP (fontmap));
}
/**
* pango_ft2_font_map_substitute_changed:
* @fontmap: a #PangoFT2Fontmap
*
* Call this function any time the results of the
* default substitution function set with
* pango_ft2_font_map_set_default_substitute() change.
* That is, if your substitution function will return different
* results for the same input pattern, you must call this function.
*
* Since: 1.2
**/
void
pango_ft2_font_map_substitute_changed (PangoFT2FontMap *fontmap)
{
pango_fc_font_map_cache_clear (PANGO_FC_FONT_MAP (fontmap));
}
/**
* pango_ft2_font_map_set_resolution:
* @fontmap: a #PangoFT2Fontmap
* @dpi_x: dots per inch in the X direction
* @dpi_y: dots per inch in the Y direction
*
* Sets the horizontal and vertical resolutions for the fontmap.
*
* Since: 1.2
**/
void
pango_ft2_font_map_set_resolution (PangoFT2FontMap *fontmap,
double dpi_x,
double dpi_y)
{
g_return_if_fail (PANGO_FT2_IS_FONT_MAP (fontmap));
fontmap->dpi_x = dpi_x;
fontmap->dpi_y = dpi_y;
pango_ft2_font_map_substitute_changed (fontmap);
}
/**
* pango_ft2_font_map_create_context:
* @fontmap: a #PangoFT2Fontmap
*
* Create a #PangoContext for the given fontmap.
*
* Return value: the newly created context; free with g_object_unref().
*
* Since: 1.2
**/
PangoContext *
pango_ft2_font_map_create_context (PangoFT2FontMap *fontmap)
{
g_return_val_if_fail (PANGO_FT2_IS_FONT_MAP (fontmap), NULL);
return pango_fc_font_map_create_context (PANGO_FC_FONT_MAP (fontmap));
}
/**
* pango_ft2_get_context:
* @dpi_x: the horizontal DPI of the target device
* @dpi_y: the vertical DPI of the target device
*
* Retrieves a #PangoContext for the default PangoFT2 fontmap
* (see pango_ft2_fontmap_get_for_display()) and sets the resolution
* for the default fontmap to @dpi_x by @dpi_y.
*
* Use of this function is deprecated; see pango_ft2_fontmap_create_context()
* instead.
*
* Return value: the new #PangoContext
**/
PangoContext *
pango_ft2_get_context (double dpi_x, double dpi_y)
{
PangoFontMap *fontmap;
fontmap = pango_ft2_font_map_for_display ();
pango_ft2_font_map_set_resolution (PANGO_FT2_FONT_MAP (fontmap), dpi_x, dpi_y);
return pango_ft2_font_map_create_context (PANGO_FT2_FONT_MAP (fontmap));
}
/**
* pango_ft2_font_map_for_display:
*
* Returns a #PangoFT2FontMap. This font map is cached and should
* not be freed. If the font map is no longer needed, it can
* be released with pango_ft2_shutdown_display(). Use of the
* global PangoFT2 fontmap is deprecated; use pango_ft2_font_map_new()
* instead.
*
* Return value: a #PangoFT2FontMap.
**/
PangoFontMap *
pango_ft2_font_map_for_display (void)
{
if (pango_ft2_global_fontmap != NULL)
return PANGO_FONT_MAP (pango_ft2_global_fontmap);
pango_ft2_global_fontmap = (PangoFT2FontMap *)pango_ft2_font_map_new ();
return PANGO_FONT_MAP (pango_ft2_global_fontmap);
}
/**
* pango_ft2_shutdown_display:
*
* Free the global fontmap. (See pango_ft2_font_map_for_display())
* Use of the global PangoFT2 fontmap is deprecated.
**/
void
pango_ft2_shutdown_display (void)
{
if (pango_ft2_global_fontmap)
{
pango_fc_font_map_cache_clear (PANGO_FC_FONT_MAP (pango_ft2_global_fontmap));
g_object_unref (pango_ft2_global_fontmap);
pango_ft2_global_fontmap = NULL;
}
}
FT_Library
_pango_ft2_font_map_get_library (PangoFontMap *fontmap)
{
PangoFT2FontMap *ft2fontmap = (PangoFT2FontMap *)fontmap;
return ft2fontmap->library;
}
/**
* _pango_ft2_font_map_get_renderer:
* @fontmap: a #PangoFT2Fontmap
*
* Gets the singleton PangoFT2Renderer for this fontmap.
*
* Return value:
**/
PangoRenderer *
_pango_ft2_font_map_get_renderer (PangoFT2FontMap *ft2fontmap)
{
if (!ft2fontmap->renderer)
ft2fontmap->renderer = g_object_new (PANGO_TYPE_FT2_RENDERER, NULL);
return ft2fontmap->renderer;
}
void
_pango_ft2_font_map_default_substitute (PangoFcFontMap *fcfontmap,
FcPattern *pattern)
{
PangoFT2FontMap *ft2fontmap = PANGO_FT2_FONT_MAP (fcfontmap);
FcValue v;
FcConfigSubstitute (NULL, pattern, FcMatchPattern);
if (ft2fontmap->substitute_func)
ft2fontmap->substitute_func (pattern, ft2fontmap->substitute_data);
if (FcPatternGet (pattern, FC_DPI, 0, &v) == FcResultNoMatch)
FcPatternAddDouble (pattern, FC_DPI, ft2fontmap->dpi_y);
FcDefaultSubstitute (pattern);
}
static double
pango_ft2_font_map_get_resolution (PangoFcFontMap *fcfontmap,
PangoContext *context)
{
return ((PangoFT2FontMap *)fcfontmap)->dpi_y;
}
static PangoFcFont *
pango_ft2_font_map_new_font (PangoFcFontMap *fcfontmap,
FcPattern *pattern)
{
return (PangoFcFont *)_pango_ft2_font_new (PANGO_FT2_FONT_MAP (fcfontmap), pattern);
}
|