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
|
/* Pango
* pangocairo-fontmap.c: Cairo font handling
*
* Copyright (C) 2000-2005 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 "config.h"
#include "pangocairo.h"
#include "pangocairo-private.h"
#include "pango-impl-utils.h"
#if defined (HAVE_CORE_TEXT) && defined (HAVE_CAIRO_QUARTZ)
# include "pangocairo-coretext.h"
#endif
#if defined (HAVE_CAIRO_WIN32)
# include "pangocairo-win32.h"
#endif
#if defined (HAVE_CAIRO_FREETYPE)
# include "pangocairo-fc.h"
#endif
typedef PangoCairoFontMapIface PangoCairoFontMapInterface;
G_DEFINE_INTERFACE (PangoCairoFontMap, pango_cairo_font_map, PANGO_TYPE_FONT_MAP)
static void
pango_cairo_font_map_default_init (PangoCairoFontMapIface *iface)
{
}
/**
* pango_cairo_font_map_new:
*
* Creates a new #PangoCairoFontMap object; a fontmap is used
* to cache information about available fonts, and holds
* certain global parameters such as the resolution.
* In most cases, you can use pango_cairo_font_map_get_default()
* instead.
*
* Note that the type of the returned object will depend
* on the particular font backend Cairo was compiled to use;
* You generally should only use the #PangoFontMap and
* #PangoCairoFontMap interfaces on the returned object.
*
* You can override the type of backend returned by using an
* environment variable %PANGOCAIRO_BACKEND. Supported types,
* based on your build, are fc (fontconfig), win32, and coretext.
* If requested type is not available, NULL is returned. Ie.
* this is only useful for testing, when at least two backends
* are compiled in.
*
* Return value: (transfer full): the newly allocated #PangoFontMap,
* which should be freed with g_object_unref().
*
* Since: 1.10
**/
PangoFontMap *
pango_cairo_font_map_new (void)
{
const char *backend = getenv ("PANGOCAIRO_BACKEND");
if (backend && !*backend)
backend = NULL;
#if !GLIB_CHECK_VERSION (2, 35, 3)
/* Make sure that the type system is initialized */
g_type_init ();
#endif
#if defined(HAVE_CORE_TEXT) && defined (HAVE_CAIRO_QUARTZ)
if (!backend || 0 == strcmp (backend, "coretext"))
return g_object_new (PANGO_TYPE_CAIRO_CORE_TEXT_FONT_MAP, NULL);
#endif
#if defined(HAVE_CAIRO_WIN32)
if (!backend || 0 == strcmp (backend, "win32"))
return g_object_new (PANGO_TYPE_CAIRO_WIN32_FONT_MAP, NULL);
#endif
#if defined(HAVE_CAIRO_FREETYPE)
if (!backend || 0 == strcmp (backend, "fc")
|| 0 == strcmp (backend, "fontconfig"))
return g_object_new (PANGO_TYPE_CAIRO_FC_FONT_MAP, NULL);
#endif
{
const char backends[] = ""
#if defined(HAVE_CORE_TEXT) && defined (HAVE_CAIRO_QUARTZ)
" coretext"
#endif
#if defined(HAVE_CAIRO_WIN32)
" win32"
#endif
#if defined(HAVE_CAIRO_FREETYPE)
" fontconfig"
#endif
;
g_error ("Unknown $PANGOCAIRO_BACKEND value.\n Available backends are:%s", backends);
}
return NULL;
}
/**
* pango_cairo_font_map_new_for_font_type:
* @fonttype: desired #cairo_font_type_t
*
* Creates a new #PangoCairoFontMap object of the type suitable
* to be used with cairo font backend of type @fonttype.
*
* In most cases one should simply use @pango_cairo_font_map_new(),
* or in fact in most of those cases, just use
* @pango_cairo_font_map_get_default().
*
* Return value: (transfer full) (nullable): the newly allocated
* #PangoFontMap of suitable type which should be freed
* with g_object_unref(), or %NULL if the requested
* cairo font backend is not supported / compiled in.
*
* Since: 1.18
**/
PangoFontMap *
pango_cairo_font_map_new_for_font_type (cairo_font_type_t fonttype)
{
#if !GLIB_CHECK_VERSION (2, 35, 3)
/* Make sure that the type system is initialized */
g_type_init ();
#endif
switch ((int) fonttype)
{
#if defined(HAVE_CORE_TEXT) && defined (HAVE_CAIRO_QUARTZ)
case CAIRO_FONT_TYPE_QUARTZ:
return g_object_new (PANGO_TYPE_CAIRO_CORE_TEXT_FONT_MAP, NULL);
#endif
#if defined(HAVE_CAIRO_WIN32)
case CAIRO_FONT_TYPE_WIN32:
return g_object_new (PANGO_TYPE_CAIRO_WIN32_FONT_MAP, NULL);
#endif
#if defined(HAVE_CAIRO_FREETYPE)
case CAIRO_FONT_TYPE_FT:
return g_object_new (PANGO_TYPE_CAIRO_FC_FONT_MAP, NULL);
#endif
default:
return NULL;
}
}
static GPrivate default_font_map = G_PRIVATE_INIT (g_object_unref); /* MT-safe */
/**
* pango_cairo_font_map_get_default:
*
* Gets a default #PangoCairoFontMap to use with Cairo.
*
* Note that the type of the returned object will depend
* on the particular font backend Cairo was compiled to use;
* You generally should only use the #PangoFontMap and
* #PangoCairoFontMap interfaces on the returned object.
*
* The default Cairo fontmap can be changed by using
* pango_cairo_font_map_set_default(). This can be used to
* change the Cairo font backend that the default fontmap
* uses for example.
*
* Note that since Pango 1.32.6, the default fontmap is per-thread.
* Each thread gets its own default fontmap. In this way,
* PangoCairo can be used safely from multiple threads.
*
* Return value: (transfer none): the default PangoCairo fontmap
* for the current thread. This object is owned by Pango and must not be freed.
*
* Since: 1.10
**/
PangoFontMap *
pango_cairo_font_map_get_default (void)
{
PangoFontMap *fontmap = g_private_get (&default_font_map);
if (G_UNLIKELY (!fontmap))
{
fontmap = pango_cairo_font_map_new ();
g_private_replace (&default_font_map, fontmap);
}
return fontmap;
}
/**
* pango_cairo_font_map_set_default:
* @fontmap: (nullable): The new default font map, or %NULL
*
* Sets a default #PangoCairoFontMap to use with Cairo.
*
* This can be used to change the Cairo font backend that the
* default fontmap uses for example. The old default font map
* is unreffed and the new font map referenced.
*
* Note that since Pango 1.32.6, the default fontmap is per-thread.
* This function only changes the default fontmap for
* the current thread. Default fontmaps of exisiting threads
* are not changed. Default fontmaps of any new threads will
* still be created using pango_cairo_font_map_new().
*
* A value of %NULL for @fontmap will cause the current default
* font map to be released and a new default font
* map to be created on demand, using pango_cairo_font_map_new().
*
* Since: 1.22
**/
void
pango_cairo_font_map_set_default (PangoCairoFontMap *fontmap)
{
g_return_if_fail (fontmap == NULL || PANGO_IS_CAIRO_FONT_MAP (fontmap));
if (fontmap)
g_object_ref (fontmap);
g_private_replace (&default_font_map, fontmap);
}
/**
* pango_cairo_font_map_set_resolution:
* @fontmap: a #PangoCairoFontMap
* @dpi: the resolution in "dots per inch". (Physical inches aren't actually
* involved; the terminology is conventional.)
*
* Sets the resolution for the fontmap. This is a scale factor between
* points specified in a #PangoFontDescription and Cairo units. The
* default value is 96, meaning that a 10 point font will be 13
* units high. (10 * 96. / 72. = 13.3).
*
* Since: 1.10
**/
void
pango_cairo_font_map_set_resolution (PangoCairoFontMap *fontmap,
double dpi)
{
g_return_if_fail (PANGO_IS_CAIRO_FONT_MAP (fontmap));
(* PANGO_CAIRO_FONT_MAP_GET_IFACE (fontmap)->set_resolution) (fontmap, dpi);
}
/**
* pango_cairo_font_map_get_resolution:
* @fontmap: a #PangoCairoFontMap
*
* Gets the resolution for the fontmap. See pango_cairo_font_map_set_resolution()
*
* Return value: the resolution in "dots per inch"
*
* Since: 1.10
**/
double
pango_cairo_font_map_get_resolution (PangoCairoFontMap *fontmap)
{
g_return_val_if_fail (PANGO_IS_CAIRO_FONT_MAP (fontmap), 96.);
return (* PANGO_CAIRO_FONT_MAP_GET_IFACE (fontmap)->get_resolution) (fontmap);
}
/**
* pango_cairo_font_map_create_context: (skip)
* @fontmap: a #PangoCairoFontMap
*
* Create a #PangoContext for the given fontmap.
*
* Return value: the newly created context; free with g_object_unref().
*
* Since: 1.10
*
* Deprecated: 1.22: Use pango_font_map_create_context() instead.
**/
PangoContext *
pango_cairo_font_map_create_context (PangoCairoFontMap *fontmap)
{
g_return_val_if_fail (PANGO_IS_CAIRO_FONT_MAP (fontmap), NULL);
return pango_font_map_create_context (PANGO_FONT_MAP (fontmap));
}
/**
* pango_cairo_font_map_get_font_type:
* @fontmap: a #PangoCairoFontMap
*
* Gets the type of Cairo font backend that @fontmap uses.
*
* Return value: the #cairo_font_type_t cairo font backend type
*
* Since: 1.18
**/
cairo_font_type_t
pango_cairo_font_map_get_font_type (PangoCairoFontMap *fontmap)
{
g_return_val_if_fail (PANGO_IS_CAIRO_FONT_MAP (fontmap), CAIRO_FONT_TYPE_TOY);
return (* PANGO_CAIRO_FONT_MAP_GET_IFACE (fontmap)->get_font_type) (fontmap);
}
|