[pango/pango2: 191/195] wip: Drop PangoFc apis




commit 0ec7912f1ff8a7f3702df9bee20c6b9779719f3d
Author: Matthias Clasen <mclasen redhat com>
Date:   Sun Mar 13 09:11:46 2022 -0400

    wip: Drop PangoFc apis
    
    We will just use PangoHbFont, going forward.

 pango/meson.build               |   15 -
 pango/pangocairo-fc-private.h   |   45 -
 pango/pangocairo-fc.h           |   51 -
 pango/pangocairo-fcfont.c       |  279 ----
 pango/pangocairo-fcfontmap.c    |  208 ---
 pango/pangocairo-font.c         |    1 -
 pango/pangocairo-fontmap.c      |    8 -
 pango/pangofc-decoder.c         |   90 --
 pango/pangofc-decoder.h         |  122 --
 pango/pangofc-font-private.h    |  112 --
 pango/pangofc-font.c            | 1048 -------------
 pango/pangofc-font.h            |   69 -
 pango/pangofc-fontmap-private.h |  200 ---
 pango/pangofc-fontmap.c         | 3307 ---------------------------------------
 pango/pangofc-fontmap.h         |  233 ---
 pango/pangofc-private.h         |   86 -
 tests/test-fonts.c              |   22 +-
 tests/test-layout.c             |    1 -
 utils/pango-list.c              |   26 -
 19 files changed, 6 insertions(+), 5917 deletions(-)
---
diff --git a/pango/meson.build b/pango/meson.build
index 7d9ef346..14802eea 100644
--- a/pango/meson.build
+++ b/pango/meson.build
@@ -115,13 +115,6 @@ if cairo_dep.found()
     'pangocairo-render.c',
   ]
 
-  if pango_font_backends.contains('freetype')
-    pango_sources += [
-      'pangocairo-fcfont.c',
-      'pangocairo-fcfontmap.c',
-    ]
-  endif
-
   if pango_font_backends.contains('win32')
     pango_sources += [
       'pangocairo-win32font.c',
@@ -145,24 +138,16 @@ endif
 
 if build_pangoft2
   pango_headers += [
-    'pangofc-font.h',
-    'pangofc-fontmap.h',
-    'pangofc-decoder.h',
     'pangofc-hbfontmap.h',
   ]
 
   pango_sources += [
-    'pangofc-font.c',
-    'pangofc-fontmap.c',
-    'pangofc-decoder.c',
-    'pango-trace.c',
     'pangofc-hbfontmap.c',
     'pangofc-language-set.c',
   ]
 
   pango_gir_includes += [
     'fontconfig-2.0',
-    'freetype2-2.0',
   ]
 endif
 
diff --git a/pango/pangocairo-font.c b/pango/pangocairo-font.c
index 021c9d62..9e113e6d 100644
--- a/pango/pangocairo-font.c
+++ b/pango/pangocairo-font.c
@@ -33,7 +33,6 @@
 #include "pango-hbface-private.h"
 #include "pango-userfont-private.h"
 #include "pango-userface-private.h"
-#include "pangocairo-fc.h"
 
 #pragma GCC diagnostic push
 #pragma GCC diagnostic ignored "-Wundef"
diff --git a/pango/pangocairo-fontmap.c b/pango/pangocairo-fontmap.c
index 903b8753..6672f9c0 100644
--- a/pango/pangocairo-fontmap.c
+++ b/pango/pangocairo-fontmap.c
@@ -32,7 +32,6 @@
 #  include "pangocairo-win32.h"
 #endif
 #if defined (HAVE_CAIRO_FREETYPE)
-#  include "pangocairo-fc.h"
 #  include "pangofc-hbfontmap.h"
 #endif
 
@@ -89,9 +88,6 @@ pango_cairo_font_map_new (void)
 #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);
-  else if (0 == strcmp (backend, "fc2") ||
-           0 == strcmp (backend, "fontconfig2"))
     return g_object_new (PANGO_TYPE_FC_HB_FONT_MAP, NULL);
 #endif
   {
@@ -141,10 +137,6 @@ pango_cairo_font_map_new_for_font_type (cairo_font_type_t fonttype)
 #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;
diff --git a/tests/test-fonts.c b/tests/test-fonts.c
index 2ecdc545..c1c44132 100644
--- a/tests/test-fonts.c
+++ b/tests/test-fonts.c
@@ -2,20 +2,20 @@
 #include <locale.h>
 
 #include <pango/pango.h>
-#include <pango/pangocairo-fc.h>
-#include <pango/pangofc-fontmap.h>
+#include <pango/pangofc-hbfontmap.h>
 #include "test-common.h"
 
+static PangoFontMap *map = NULL;
+
 static void
 install_fonts (const char *dir)
 {
   FcConfig *config;
-  PangoFontMap *map;
   char *path;
   gsize len;
   char *conf;
 
-  map = g_object_new (PANGO_TYPE_CAIRO_FC_FONT_MAP, NULL);
+  map = PANGO_FONT_MAP (pango_fc_hb_font_map_new ());
 
   config = FcConfigCreate ();
 
@@ -29,12 +29,8 @@ install_fonts (const char *dir)
   g_free (path);
 
   FcConfigAppFontAddDir (config, (const FcChar8 *) dir);
-  pango_fc_font_map_set_config (PANGO_FC_FONT_MAP (map), config);
+  pango_fc_hb_font_map_set_config (PANGO_FC_HB_FONT_MAP (map), config);
   FcConfigDestroy (config);
-
-  pango_cairo_font_map_set_default (PANGO_CAIRO_FONT_MAP (map));
-
-  g_object_unref (map);
 }
 
 static gboolean
@@ -74,7 +70,7 @@ list_fonts (const char *contents)
 
   desc = pango_font_description_from_string (s);
 
-  context = pango_font_map_create_context (pango_cairo_font_map_get_default ());
+  context = pango_font_map_create_context (map);
   fonts = pango_context_load_fontset (context, desc, pango_language_get_default ());
 
   str = g_string_new (s);
@@ -103,12 +99,6 @@ test_fontset (gconstpointer d)
   char *s;
   GBytes *orig;
 
-  if (strcmp (G_OBJECT_TYPE_NAME (pango_cairo_font_map_get_default ()), "PangoFcFontMap") != 0)
-    {
-      g_test_skip ("Not an fc fontmap. Skipping...");
-      return;
-    }
-
   char *old_locale = g_strdup (setlocale (LC_ALL, NULL));
   setlocale (LC_ALL, "en_US.UTF-8");
   if (strstr (setlocale (LC_ALL, NULL), "en_US") == NULL)
diff --git a/tests/test-layout.c b/tests/test-layout.c
index 667e5c2f..e9af9a79 100644
--- a/tests/test-layout.c
+++ b/tests/test-layout.c
@@ -29,7 +29,6 @@
 
 #include "config.h"
 #include <pango/pangocairo.h>
-#include <pango/pangocairo-fc.h>
 #include <pango/pangofc-hbfontmap.h>
 #include "test-common.h"
 
diff --git a/utils/pango-list.c b/utils/pango-list.c
index d7e52f09..ab19bddb 100644
--- a/utils/pango-list.c
+++ b/utils/pango-list.c
@@ -23,7 +23,6 @@
 #include "config.h"
 #include <pango/pangocairo.h>
 #include <pango/pangofc-hbfontmap.h>
-#include <pango/pangofc-font.h>
 #include <pango/pango-hbface-private.h>
 #include <hb-ot.h>
 #include <glib/gstdio.h>
@@ -242,13 +241,6 @@ main (int    argc,
                   PangoHbFace *hbface = (PangoHbFace *)face;
                   instance_id = hbface->instance_id;
                 }
-              else if (PANGO_IS_FC_FONT (font))
-                {
-                  int index;
-                  FcPattern *pattern = pango_fc_font_get_pattern (PANGO_FC_FONT (font));
-                  FcPatternGetInteger (pattern, FC_INDEX, 0, (int *)&index);
-                  instance_id = (index >> 16) - 1;
-                }
 
               if (pango_font_face_is_variable (face))
                 {
@@ -288,24 +280,6 @@ main (int    argc,
                   if (hbface->file)
                     g_print ("    %d %s\n", hbface->index, hbface->file);
                 }
-              else
-                {
-                  PangoFont *font;
-
-                  font = pango_context_load_font (ctx, desc);
-                  if (PANGO_IS_FC_FONT (font))
-                    {
-                      FcPattern *pattern;
-                      const char *file;
-                      int index;
-
-                      pattern = pango_fc_font_get_pattern (PANGO_FC_FONT (font));
-                      FcPatternGetString (pattern, FC_FILE, 0, (FcChar8 **)&file);
-                      FcPatternGetInteger (pattern, FC_INDEX, 0, &index);
-                      g_print ("    %d %s\n", index, file);
-                    }
-                  g_object_unref (font);
-                }
             }
 
           g_free (desc_str);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]