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 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876
|
/* Pango
* pangowin32-dwrite-fontmap.cpp: Win32 font handling with DirectWrite
*
* Copyright (C) 2022 Luca Bacci
* Copyright (C) 2022 Chun-wei Fan
*
* 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 <initguid.h>
#include <dwrite_3.h>
# ifdef _MSC_VER
# define UUID_OF_IDWriteFactory3 __uuidof (IDWriteFactory3)
# define UUID_OF_IDWriteFactory5 __uuidof (IDWriteFactory5)
# else
# define UUID_OF_IDWriteFactory3 IID_IDWriteFactory3
# define UUID_OF_IDWriteFactory5 IID_IDWriteFactory5
# endif
#ifdef STRICT
#undef STRICT
#endif
#include "pangowin32-private.hpp"
#ifdef USE_HB_DWRITE
#include <hb-directwrite.h>
#endif
#ifdef _MSC_VER
# define UUID_OF_IDWriteFactory __uuidof (IDWriteFactory)
# define UUID_OF_IDWriteFont1 __uuidof (IDWriteFont1)
# define UUID_OF_IDWriteFontCollection __uuidof (IDWriteFontCollection)
#else
# define UUID_OF_IDWriteFactory IID_IDWriteFactory
# define UUID_OF_IDWriteFont1 IID_IDWriteFont1
# define UUID_OF_IDWriteFontCollection IID_IDWriteFontCollection
#endif
PangoWin32DWriteItems *
pango_win32_init_direct_write (void)
{
PangoWin32DWriteItems *dwrite_items = g_new0 (PangoWin32DWriteItems, 1);
HRESULT hr;
IDWriteFactory5 *factory5 = NULL;
IDWriteFactory3 *factory3 = NULL;
IDWriteFactory *factory = NULL;
gboolean failed = FALSE;
gboolean have_idwritefactory3 = FALSE;
gboolean have_idwritefactory5 = FALSE;
/* Try to create a IDWriteFactory3 first, which is available on Windows 10+ */
hr = DWriteCreateFactory (DWRITE_FACTORY_TYPE_SHARED,
UUID_OF_IDWriteFactory3,
reinterpret_cast<IUnknown**> (&factory3));
if (SUCCEEDED (hr))
{
/*
* Try to acquire a IDWriteFactory5 object from the IDWriteFactory3 object,
* which is only available on or after Windows 10 Creators' Update
*/
have_idwritefactory3 = TRUE;
hr = factory3->QueryInterface (UUID_OF_IDWriteFactory5,
reinterpret_cast<void**> (&factory5));
if (SUCCEEDED (hr))
have_idwritefactory5 = TRUE;
hr = factory3->QueryInterface (UUID_OF_IDWriteFactory,
reinterpret_cast<void**> (&factory));
}
else
hr = DWriteCreateFactory (DWRITE_FACTORY_TYPE_SHARED,
UUID_OF_IDWriteFactory,
reinterpret_cast<IUnknown**> (&factory));
if (SUCCEEDED (hr) && factory != NULL)
{
IDWriteGdiInterop *gdi_interop = NULL;
hr = factory->GetGdiInterop (&gdi_interop);
if (FAILED (hr) || gdi_interop == NULL)
{
g_error ("DWriteFactory::GetGdiInterop failed with error code %x", (unsigned)hr);
factory->Release ();
if (have_idwritefactory5)
factory5->Release ();
if (have_idwritefactory3)
factory3->Release ();
failed = TRUE;
}
if (have_idwritefactory3)
dwrite_items->dwrite_factory3 = factory3;
if (have_idwritefactory5)
dwrite_items->dwrite_factory5 = factory5;
dwrite_items->have_idwritefactory3 = have_idwritefactory3;
dwrite_items->have_idwritefactory5 = have_idwritefactory5;
dwrite_items->gdi_interop = gdi_interop;
dwrite_items->dwrite_factory = factory;
}
else
{
g_error ("DWriteCreateFactory failed with error code %x", (unsigned)hr);
failed = TRUE;
}
if (failed)
g_free (dwrite_items);
return failed ? NULL : dwrite_items;
}
void
pango_win32_dwrite_items_destroy (PangoWin32DWriteItems *dwrite_items)
{
dwrite_items->gdi_interop->Release ();
dwrite_items->dwrite_factory->Release ();
if (dwrite_items->have_idwritefactory5)
dwrite_items->dwrite_factory5->Release ();
if (dwrite_items->have_idwritefactory3)
dwrite_items->dwrite_factory3->Release ();
g_free (dwrite_items);
}
static IDWriteFontFace *
_pango_win32_get_dwrite_font_face_from_dwrite_font (IDWriteFont *font)
{
IDWriteFontFace *face = NULL;
HRESULT hr;
g_return_val_if_fail (font != NULL, NULL);
hr = font->CreateFontFace (&face);
if (SUCCEEDED (hr) && face != NULL)
return face;
g_warning ("IDWriteFont::CreateFontFace failed with error code %x\n", (unsigned)hr);
return NULL;
}
void *
pango_win32_font_get_dwrite_font_face (PangoWin32Font *font)
{
return (void *) _pango_win32_get_dwrite_font_face_from_dwrite_font ((IDWriteFont *) font->win32face->dwrite_font);
}
static void
pango_win32_dwrite_font_map_add_collection (PangoWin32FontMap *map,
IDWriteFontCollection *collection)
{
UINT32 count;
HRESULT hr;
PangoWin32DWriteItems *dwrite_items = pango_win32_get_direct_write_items ();
count = collection->GetFontFamilyCount ();
for (UINT32 i = 0; i < count; i++)
{
IDWriteFontFamily *family = NULL;
UINT32 font_count;
hr = collection->GetFontFamily (i, &family);
if G_UNLIKELY (FAILED (hr) || family == NULL)
{
g_warning ("IDWriteFontCollection::GetFontFamily failed with error code %x\n", (unsigned)hr);
continue;
}
font_count = family->GetFontCount ();
for (UINT32 j = 0; j < font_count; j++)
{
IDWriteFont *font = NULL;
IDWriteFontFace *face = NULL;
DWRITE_FONT_FACE_TYPE font_face_type;
hr = family->GetFont (j, &font);
if (FAILED (hr) || font == NULL)
{
g_warning ("IDWriteFontFamily::GetFont failed with error code %x\n", (unsigned)hr);
break;
}
face = _pango_win32_get_dwrite_font_face_from_dwrite_font (font);
if (face == NULL)
{
font->Release ();
continue;
}
font_face_type = face->GetType ();
/* don't include Type-1 fonts */
if (font_face_type != DWRITE_FONT_FACE_TYPE_TYPE1)
{
LOGFONTW lfw;
BOOL is_sys_font;
hr = dwrite_items->gdi_interop->ConvertFontToLOGFONT (font, &lfw, &is_sys_font);
if (SUCCEEDED (hr))
pango_win32_insert_font (map, &lfw, font, FALSE);
else
g_warning ("GDIInterop::ConvertFontToLOGFONT failed with error code %x\n",
(unsigned)hr);
}
else
{
font->Release();
}
face->Release ();
}
family->Release ();
}
}
void
pango_win32_dwrite_font_map_populate (PangoWin32FontMap *map)
{
HRESULT hr = S_OK;
IDWriteFontCollection *sys_collection = NULL;
IDWriteFontSet *fontset = NULL;
PangoWin32DWriteItems *dwrite_items = pango_win32_get_direct_write_items ();
if (map->font_set_builder1 != NULL)
{
IDWriteFontSetBuilder1 *builder = (IDWriteFontSetBuilder1 *) map->font_set_builder1;
hr = builder->CreateFontSet (&fontset);
}
else if (map->font_set_builder != NULL)
{
IDWriteFontSetBuilder *builder = (IDWriteFontSetBuilder *) map->font_set_builder;
hr = builder->CreateFontSet (&fontset);
}
if (SUCCEEDED (hr) && fontset != NULL)
{
if (fontset->GetFontCount () > 0)
{
IDWriteFontCollection *custom_collection = NULL;
IDWriteFontCollection1 *custom_collection1 = NULL;
if (dwrite_items->have_idwritefactory5)
dwrite_items->dwrite_factory5->CreateFontCollectionFromFontSet (fontset,
&custom_collection1);
else if (dwrite_items->have_idwritefactory3)
dwrite_items->dwrite_factory3->CreateFontCollectionFromFontSet (fontset,
&custom_collection1);
if (SUCCEEDED (hr) && custom_collection1 != NULL)
{
custom_collection1->QueryInterface (UUID_OF_IDWriteFontCollection,
reinterpret_cast<void **>(&custom_collection));
pango_win32_dwrite_font_map_add_collection (map, custom_collection);
custom_collection->Release ();
custom_collection1->Release ();
}
}
fontset->Release ();
}
hr = dwrite_items->dwrite_factory->GetSystemFontCollection (&sys_collection, FALSE);
if (FAILED (hr) || sys_collection == NULL)
{
g_error ("IDWriteFactory::GetSystemFontCollection failed with error code %x\n", (unsigned)hr);
return;
}
pango_win32_dwrite_font_map_add_collection (map, sys_collection);
sys_collection->Release ();
}
gpointer
pango_win32_logfontw_get_dwrite_font (LOGFONTW *logfontw)
{
PangoWin32DWriteItems *dwrite_items = pango_win32_get_direct_write_items ();
IDWriteFont *font = NULL;
HRESULT hr;
hr = dwrite_items->gdi_interop->CreateFontFromLOGFONT (logfontw, &font);
if (FAILED (hr) || font == NULL)
g_warning ("IDWriteFactory::GdiInterop::CreateFontFromLOGFONT failed with error %x\n",
(unsigned)hr);
return font;
}
gboolean
pango_win32_dwrite_font_is_monospace (gpointer dwrite_font,
gboolean *is_monospace)
{
IDWriteFont *font = static_cast<IDWriteFont *>(dwrite_font);
IDWriteFont1 *font1 = NULL;
gboolean result = FALSE;
if (SUCCEEDED (font->QueryInterface(UUID_OF_IDWriteFont1,
reinterpret_cast<void**>(&font1))))
{
*is_monospace = font1->IsMonospacedFont ();
font1->Release ();
result = TRUE;
}
else
*is_monospace = FALSE;
return result;
}
static PangoStretch
util_to_pango_stretch (DWRITE_FONT_STRETCH stretch)
{
PangoStretch pango_stretch = PANGO_STRETCH_NORMAL;
switch (stretch)
{
case DWRITE_FONT_STRETCH_ULTRA_CONDENSED:
pango_stretch = PANGO_STRETCH_ULTRA_CONDENSED;
break;
case DWRITE_FONT_STRETCH_EXTRA_CONDENSED:
pango_stretch = PANGO_STRETCH_EXTRA_CONDENSED;
break;
case DWRITE_FONT_STRETCH_CONDENSED:
pango_stretch = PANGO_STRETCH_CONDENSED;
break;
case DWRITE_FONT_STRETCH_SEMI_CONDENSED:
pango_stretch = PANGO_STRETCH_SEMI_CONDENSED;
break;
case DWRITE_FONT_STRETCH_NORMAL:
/* also DWRITE_FONT_STRETCH_MEDIUM */
pango_stretch = PANGO_STRETCH_NORMAL;
break;
case DWRITE_FONT_STRETCH_SEMI_EXPANDED:
pango_stretch = PANGO_STRETCH_SEMI_EXPANDED;
break;
case DWRITE_FONT_STRETCH_EXPANDED:
pango_stretch = PANGO_STRETCH_EXPANDED;
break;
case DWRITE_FONT_STRETCH_EXTRA_EXPANDED:
pango_stretch = PANGO_STRETCH_EXTRA_EXPANDED;
break;
case DWRITE_FONT_STRETCH_ULTRA_EXPANDED:
pango_stretch = PANGO_STRETCH_ULTRA_EXPANDED;
break;
case DWRITE_FONT_STRETCH_UNDEFINED:
default:
pango_stretch = PANGO_STRETCH_NORMAL;
}
return pango_stretch;
}
static PangoStyle
util_to_pango_style (DWRITE_FONT_STYLE style)
{
switch (style)
{
case DWRITE_FONT_STYLE_NORMAL:
return PANGO_STYLE_NORMAL;
case DWRITE_FONT_STYLE_OBLIQUE:
return PANGO_STYLE_OBLIQUE;
case DWRITE_FONT_STYLE_ITALIC:
return PANGO_STYLE_ITALIC;
default:
g_assert_not_reached ();
return PANGO_STYLE_NORMAL;
}
}
static int
util_map_weight (int weight)
{
if G_UNLIKELY (weight < 100)
weight = 100;
if G_UNLIKELY (weight > 1000)
weight = 1000;
return weight;
}
static PangoWeight
util_to_pango_weight (DWRITE_FONT_WEIGHT weight)
{
/* DirectWrite weight values range from 1 to 999, Pango weight values
* range from 100 to 1000. */
return (PangoWeight) util_map_weight (weight);
}
static PangoVariant
util_to_pango_variant (IDWriteFont *font)
{
PangoVariant variant = PANGO_VARIANT_NORMAL;
return variant;
}
static PangoFontDescription*
util_get_pango_font_description (IDWriteFont *font,
const char *family_name)
{
DWRITE_FONT_STRETCH stretch = font->GetStretch ();
DWRITE_FONT_STYLE style = font->GetStyle ();
DWRITE_FONT_WEIGHT weight = font->GetWeight ();
PangoFontDescription *description;
description = pango_font_description_new ();
pango_font_description_set_family (description, family_name);
pango_font_description_set_stretch (description, util_to_pango_stretch (stretch));
pango_font_description_set_variant (description, util_to_pango_variant (font));
pango_font_description_set_style (description, util_to_pango_style (style));
pango_font_description_set_weight (description, util_to_pango_weight (weight));
return description;
}
static char*
util_free_to_string (IDWriteLocalizedStrings *strings)
{
char *string = NULL;
HRESULT hr;
if (strings->GetCount() > 0)
{
UINT32 index = 0;
BOOL exists = FALSE;
UINT32 length = 0;
hr = strings->FindLocaleName (L"en-us", &index, &exists);
if (FAILED (hr) || !exists || index == G_MAXUINT32)
index = 0;
hr = strings->GetStringLength (index, &length);
if (SUCCEEDED (hr) && length > 0)
{
gunichar2 *string_utf16 = g_new (gunichar2, length + 1);
hr = strings->GetString (index, (wchar_t*) string_utf16, length + 1);
if (SUCCEEDED (hr))
string = g_utf16_to_utf8 (string_utf16, -1, NULL, NULL, NULL);
g_free (string_utf16);
}
}
strings->Release ();
return string;
}
static char*
util_dwrite_get_font_family_name (IDWriteFontFamily *family)
{
IDWriteLocalizedStrings *strings = NULL;
HRESULT hr;
hr = family->GetFamilyNames (&strings);
if (FAILED (hr) || strings == NULL)
{
g_warning ("IDWriteFontFamily::GetFamilyNames failed with error code %x", (unsigned) hr);
return NULL;
}
return util_free_to_string (strings);
}
PangoFontDescription *
pango_win32_font_description_from_dwrite_font (void *dwrite_font)
{
IDWriteFont *font = NULL;
IDWriteFontFamily *family = NULL;
PangoFontDescription *desc = NULL;
HRESULT hr;
g_return_val_if_fail (dwrite_font != NULL, NULL);
font = static_cast<IDWriteFont *>(dwrite_font);
hr = font->GetFontFamily (&family);
if (SUCCEEDED (hr) && family != NULL)
{
char *family_name = util_dwrite_get_font_family_name (family);
if (family_name != NULL)
desc = util_get_pango_font_description (font, family_name);
g_free (family_name);
family->Release ();
}
return desc;
}
PangoFontDescription *
pango_win32_font_description_from_logfontw_dwrite (const LOGFONTW *logfontw)
{
PangoFontDescription *desc = NULL;
IDWriteFont *font = NULL;
HRESULT hr;
PangoWin32DWriteItems *dwrite_items;
dwrite_items = pango_win32_get_direct_write_items ();
if (dwrite_items == NULL)
return NULL;
hr = dwrite_items->gdi_interop->CreateFontFromLOGFONT (logfontw, &font);
if (SUCCEEDED (hr) && font != NULL)
{
desc = pango_win32_font_description_from_dwrite_font (font);
font->Release ();
}
return desc;
}
/* macros to help parse the 'gasp' font table, referring to FreeType2 */
#define DWRITE_UCHAR_USHORT( p, i, s ) ( (unsigned short)( ((const unsigned char *)(p))[(i)] ) << (s) )
#define DWRITE_PEEK_USHORT( p ) (unsigned short)( DWRITE_UCHAR_USHORT( p, 0, 8 ) | DWRITE_UCHAR_USHORT( p, 1, 0 ) )
#define DWRITE_NEXT_USHORT( buffer ) ( (unsigned short)( buffer += 2, DWRITE_PEEK_USHORT( buffer - 2 ) ) )
/* values to indicate that grid fit (hinting) is supported by the font */
#define GASP_GRIDFIT 0x0001
#define GASP_SYMMETRIC_GRIDFIT 0x0004
gboolean
pango_win32_dwrite_font_check_is_hinted (PangoWin32Font *font)
{
IDWriteFontFace *dwrite_font_face = NULL;
gboolean result = FALSE;
dwrite_font_face = (IDWriteFontFace *)pango_win32_font_get_dwrite_font_face (font);
if (dwrite_font_face != NULL)
{
UINT32 gasp_tag = DWRITE_MAKE_OPENTYPE_TAG ('g', 'a', 's', 'p');
UINT32 table_size;
const unsigned char *table_data;
void *table_ctx;
gboolean exists;
/* The 'gasp' table may not exist for the font, so no 'gasp' == no hinting */
if (SUCCEEDED (dwrite_font_face->TryGetFontTable (gasp_tag,
(const void **)(&table_data),
&table_size,
&table_ctx,
&exists)))
{
if (exists && table_size > 4)
{
guint16 version = DWRITE_NEXT_USHORT (table_data);
if (version == 0 || version == 1)
{
guint16 num_ranges = DWRITE_NEXT_USHORT (table_data);
UINT32 max_ranges = (table_size - 4) / (sizeof (guint16) * 2);
guint16 i = 0;
if (num_ranges > max_ranges)
num_ranges = max_ranges;
for (i = 0; i < num_ranges; i++)
{
G_GNUC_UNUSED
guint16 ppem = DWRITE_NEXT_USHORT (table_data);
guint16 behavior = DWRITE_NEXT_USHORT (table_data);
if (behavior & (GASP_GRIDFIT | GASP_SYMMETRIC_GRIDFIT))
{
result = TRUE;
break;
}
}
}
}
dwrite_font_face->ReleaseFontTable (table_ctx);
}
dwrite_font_face->Release ();
}
return result;
}
#ifdef USE_HB_DWRITE
/* Sadly, hb-directwrite.h stuff has to be done via C++... */
hb_face_t *
pango_win32_font_create_hb_face_dwrite (PangoWin32Font *font)
{
hb_face_t *hb_face = NULL;
IDWriteFontFace *face = NULL;
g_return_val_if_fail (PANGO_WIN32_IS_FONT (font), NULL);
face = static_cast<IDWriteFontFace *>(pango_win32_font_get_dwrite_font_face (font));
if (face != NULL)
hb_face = hb_directwrite_face_create (face);
if (hb_face != NULL)
{
static hb_user_data_key_t key;
hb_face_set_user_data (hb_face,
&key,
face,
(hb_destroy_func_t) pango_win32_dwrite_font_face_release,
TRUE);
}
return hb_face;
}
#endif
/* the following items require items from dwrite_3.h */
static gboolean
add_custom_font_factory5 (PangoFontMap *font_map,
IDWriteFactory5 *factory5,
const char *filepath,
GError **error)
{
HRESULT hr = S_OK;
IDWriteFontFile *font_file = NULL;
PangoWin32FontMap *win32fontmap = PANGO_WIN32_FONT_MAP (font_map);
wchar_t *filepath_w = reinterpret_cast<wchar_t*> (g_utf8_to_utf16 (filepath, -1, NULL, NULL, error));
IDWriteFontSetBuilder1 *font_set_builder = (IDWriteFontSetBuilder1 *) win32fontmap->font_set_builder1;
if (filepath_w == NULL)
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
"Failed to convert file path %s to UTF-16", filepath);
return FALSE;
}
if (font_set_builder == NULL)
{
hr = factory5->CreateFontSetBuilder (&font_set_builder);
if (SUCCEEDED (hr) && font_set_builder != NULL)
{
win32fontmap->font_set_builder1 = font_set_builder;
}
else
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
"Setup for IDWriteFontSetBuilder1 failed with error code %x\n",
(unsigned)hr);
hr = E_FAIL;
goto out;
}
}
hr = factory5->CreateFontFileReference (filepath_w, nullptr, &font_file);
if (FAILED (hr) || font_file == NULL)
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
"DirectWrite setup for custom font file %s failed with error code %x\n",
filepath, (unsigned)hr);
hr = E_FAIL;
goto out;
}
hr = font_set_builder->AddFontFile (font_file);
if (FAILED (hr))
{
if (hr == DWRITE_E_FILEFORMAT)
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_INVAL,
"Specified font file '%s' is not supported by DirectWrite",
filepath);
}
else
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
"Loading custom font '%s' file failed with error code %x\n",
filepath, (unsigned)hr);
}
goto out;
}
out:
g_free (filepath_w);
return SUCCEEDED (hr);
}
static gboolean
add_custom_font_factory3 (PangoFontMap *font_map,
IDWriteFactory3 *factory3,
const char *filepath,
GError **error)
{
HRESULT hr = S_OK;
IDWriteFontFile *font_file = NULL;
PangoWin32FontMap *win32fontmap = PANGO_WIN32_FONT_MAP (font_map);
wchar_t *filepath_w = reinterpret_cast<wchar_t*> (g_utf8_to_utf16 (filepath, -1, NULL, NULL, error));
gboolean supported;
DWRITE_FONT_FILE_TYPE file_type;
UINT32 num_fonts;
IDWriteFontSetBuilder *font_set_builder = (IDWriteFontSetBuilder *) win32fontmap->font_set_builder;
if (filepath_w == NULL)
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
"Failed to convert file path %s to UTF-16", filepath);
return FALSE;
}
if (font_set_builder == NULL)
{
hr = factory3->CreateFontSetBuilder (&font_set_builder);
if (SUCCEEDED (hr) && font_set_builder != NULL)
{
win32fontmap->font_set_builder = font_set_builder;
}
else
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
"Setup for IDWriteFontSetBuilder failed with error code %x\n",
(unsigned)hr);
hr = E_FAIL;
goto out;
}
}
hr = factory3->CreateFontFileReference (filepath_w, nullptr, &font_file);
if (FAILED (hr) || font_file == NULL)
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
"DirectWrite setup for custom font file failed with error code %x\n",
(unsigned)hr);
hr = E_FAIL;
goto out;
}
hr = font_file->Analyze (&supported, &file_type, nullptr, &num_fonts);
if (FAILED (hr))
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
"Loading custom font file failed with error code %x\n",
(unsigned)hr);
hr = E_FAIL;
goto out;
}
if (!supported)
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_INVAL,
"Specified font file '%s' is not supported by DirectWrite",
filepath);
hr = E_FAIL;
goto out;
}
for (UINT32 i = 0; i < num_fonts; i ++)
{
IDWriteFontFaceReference* ref = NULL;
hr = factory3->CreateFontFaceReference (filepath_w,
nullptr,
i,
DWRITE_FONT_SIMULATIONS_NONE,
&ref);
if (!SUCCEEDED (hr))
{
g_set_error (error, G_FILE_ERROR, G_FILE_ERROR_FAILED,
"Setting up IDWriteFontFaceReference with error code %x",
(unsigned)hr);
pangowin32_release_com_obj (&ref);
break;
}
font_set_builder->AddFontFaceReference (ref);
}
out:
g_free (filepath_w);
return *error == NULL;
}
gboolean
pango_win32_dwrite_add_font_file (PangoFontMap *font_map,
const char *font_file_path,
GError **error)
{
gboolean succeeded = FALSE;
PangoWin32DWriteItems *dwrite_items;
g_return_val_if_fail (font_file_path != NULL, FALSE);
if (!g_file_test (font_file_path, G_FILE_TEST_EXISTS))
{
g_set_error (error,
G_FILE_ERROR,
G_FILE_ERROR_NOENT,
"Specified font file '%s' does not exist",
font_file_path);
return FALSE;
}
dwrite_items = pango_win32_get_direct_write_items ();
if (dwrite_items->have_idwritefactory5)
succeeded = add_custom_font_factory5 (font_map,
dwrite_items->dwrite_factory5,
font_file_path,
error);
else if (dwrite_items->have_idwritefactory3)
succeeded = add_custom_font_factory3 (font_map,
dwrite_items->dwrite_factory3,
font_file_path,
error);
if (succeeded)
{
pango_win32_font_map_cache_clear (font_map);
pango_font_map_changed (font_map);
#if defined (HAVE_CAIRO_WIN32_DIRECTWRITE) && !defined (USE_HB_DWRITE)
g_warning ("Cairo-DirectWrite enabled but HarfBuzz does not have"
"DirectWrite enabled, possible ugly results for custom fonts.");
#endif
}
return succeeded;
}
void
pango_win32_dwrite_font_face_release (gpointer dwrite_font_face)
{
IDWriteFontFace *face = static_cast<IDWriteFontFace *>(dwrite_font_face);
pangowin32_release_com_obj (&face);
}
|