summaryrefslogtreecommitdiff
path: root/pango/pangofc-font-private.h
Commit message (Collapse)AuthorAgeFilesLines
* docs: Convert gtk-doc syntax leftoversdocs-cleanupMatthias Clasen2021-05-191-3/+3
| | | | | Remove leftovers like #Type, reduce indentations to avoid markdown block quotes, etc.
* Make PangoFcFont struct available againMatthias Clasen2019-08-121-27/+0
| | | | | | | Unfortunately, some applications are poking directly at PangoFcFont struct fields. Put the structs back in the public headers for now, but deprecated.
* Reinstate the return type of pango_fc_font_lock_face()Matthias Clasen2019-08-061-15/+1
| | | | | | | | | We did not remove the freetype dependency from libpango anyway, so bite the bullet, and keep including freetype headers. Changing the return type to gpointer broke C++ users, where casts from void* are not automatic.
* Keep deprecated pango_fc apis in pango-fc-font.hMatthias Clasen2019-08-011-15/+0
| | | | | | Turns out these are in use. Closes: https://gitlab.gnome.org/GNOME/pango/issues/394
* fc: Drop freetype from pangofc-font.hMatthias Clasen2019-07-181-1/+1
| | | | | Stop using FT_Face here, so we can stop including freetype headers.
* Deprecate pango_fc_font_has_charMatthias Clasen2019-07-121-3/+1
| | | | We have pango_font_has_char now.
* Header cleanupMatthias Clasen2019-07-041-0/+148
Abolish the PANGO_ENABLE_BACKEND and PANGO_ENABLE_ENGINE defines. All backend-only apis are moved into private headers, all apis that were engine-only are marked as deprecated, since engines are.