Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add language parameter to Text objects #29794

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/matplotlib/_text_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def warn_on_missing_glyph(codepoint, fontnames):
f"Matplotlib currently does not support {block} natively.")


def layout(string, font, *, kern_mode=Kerning.DEFAULT):
def layout(string, font, language, *, kern_mode=Kerning.DEFAULT):
"""
Render *string* with *font*.

Expand All @@ -65,7 +65,7 @@ def layout(string, font, *, kern_mode=Kerning.DEFAULT):
"""
x = 0
prev_glyph_idx = None
char_to_font = font._get_fontmap(string)
char_to_font = font._get_fontmap(string) # TODO: Pass in language.
base_font = font
for char in string:
# This has done the fallback logic
Expand Down
8 changes: 6 additions & 2 deletions lib/matplotlib/backend_bases.py
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,8 @@ def draw_tex(self, gc, x, y, s, prop, angle, *, mtext=None):
"""
self._draw_text_as_path(gc, x, y, s, prop, angle, ismath="TeX")

def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None,
language=None):
"""
Draw a text instance.

Expand All @@ -516,6 +517,8 @@ def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
If True, use mathtext parser.
mtext : `~matplotlib.text.Text`
The original text object to be rendered.
language : str or list[tuple[str, int, int]]
The language of the text.

Notes
-----
Expand Down Expand Up @@ -668,7 +671,8 @@ def _draw_disabled(self):
cost of the draw_XYZ calls on the canvas.
"""
no_ops = {
meth_name: lambda *args, **kwargs: None
meth_name: functools.update_wrapper(lambda *args, **kwargs: None,
getattr(RendererBase, meth_name))
for meth_name in dir(RendererBase)
if (meth_name.startswith("draw_")
or meth_name in ["open_group", "close_group"])
Expand Down
1 change: 1 addition & 0 deletions lib/matplotlib/backend_bases.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ class RendererBase:
angle: float,
ismath: bool | Literal["TeX"] = ...,
mtext: Text | None = ...,
language: str | list[tuple[str, int, int]] | None = ...,
) -> None: ...
def get_text_width_height_descent(
self, s: str, prop: FontProperties, ismath: bool | Literal["TeX"]
Expand Down
9 changes: 5 additions & 4 deletions lib/matplotlib/backends/backend_agg.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,14 +182,15 @@ def draw_mathtext(self, gc, x, y, s, prop, angle):
y = round(y - oy + yd)
self._renderer.draw_text_image(font_image, x, y + 1, angle, gc)

def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None,
language=None):
# docstring inherited
if ismath:
return self.draw_mathtext(gc, x, y, s, prop, angle)
font = self._prepare_font(prop)
# We pass '0' for angle here, since it will be rotated (in raster
# space) in the following call to draw_text_image).
font.set_text(s, 0, flags=get_hinting_flag())
font.set_text(s, 0, flags=get_hinting_flag(), language=language)
font.draw_glyphs_to_bitmap(
antialiased=gc.get_antialiased())
d = font.get_descent() / 64.0
Expand All @@ -203,7 +204,7 @@ def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
y = round(y + yo + yd)
self._renderer.draw_text_image(font, x, y + 1, angle, gc)

def get_text_width_height_descent(self, s, prop, ismath):
def get_text_width_height_descent(self, s, prop, ismath, language=None):
# docstring inherited

_api.check_in_list(["TeX", True, False], ismath=ismath)
Expand All @@ -216,7 +217,7 @@ def get_text_width_height_descent(self, s, prop, ismath):
return width, height, descent

font = self._prepare_font(prop)
font.set_text(s, 0.0, flags=get_hinting_flag())
font.set_text(s, 0.0, flags=get_hinting_flag(), language=language)
w, h = font.get_width_height() # width and height of unrotated string
d = font.get_descent()
w /= 64.0 # convert from subpixels
Expand Down
3 changes: 2 additions & 1 deletion lib/matplotlib/backends/backend_cairo.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ def draw_image(self, gc, x, y, im):
ctx.paint()
ctx.restore()

def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None,
language=None): # TODO: Apply language tag, if possible.
# docstring inherited

# Note: (x, y) are device/display coords, not user-coords, unlike other
Expand Down
8 changes: 5 additions & 3 deletions lib/matplotlib/backends/backend_pdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2327,7 +2327,8 @@ def encode_string(self, s, fonttype):
return s.encode('cp1252', 'replace')
return s.encode('utf-16be', 'replace')

def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None,
language=None):
# docstring inherited

# TODO: combine consecutive texts into one BT/ET delimited section
Expand All @@ -2347,7 +2348,7 @@ def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
fonttype = mpl.rcParams['pdf.fonttype']

if gc.get_url() is not None:
font.set_text(s)
font.set_text(s, language=language)
width, height = font.get_width_height()
self.file._annotations[-1][1].append(_get_link_annotation(
gc, x, y, width / 64, height / 64, angle))
Expand Down Expand Up @@ -2381,7 +2382,8 @@ def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
multibyte_glyphs = []
prev_was_multibyte = True
prev_font = font
for item in _text_helpers.layout(s, font, kern_mode=Kerning.UNFITTED):
for item in _text_helpers.layout(s, font, language,
kern_mode=Kerning.UNFITTED):
if _font_supports_glyph(fonttype, ord(item.char)):
if prev_was_multibyte or item.ft_object != prev_font:
singlebyte_chunks.append((item.ft_object, item.x, []))
Expand Down
3 changes: 2 additions & 1 deletion lib/matplotlib/backends/backend_pgf.py
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,8 @@ def draw_tex(self, gc, x, y, s, prop, angle, *, mtext=None):
# docstring inherited
self.draw_text(gc, x, y, s, prop, angle, ismath="TeX", mtext=mtext)

def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None,
language=None): # TODO: Implement language if possible.
# docstring inherited

# prepare string for tex
Expand Down
5 changes: 3 additions & 2 deletions lib/matplotlib/backends/backend_ps.py
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,8 @@ def draw_tex(self, gc, x, y, s, prop, angle, *, mtext=None):
self.textcnt += 1

@_log_if_debug_on
def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None,
language=None):
# docstring inherited

if self._is_transparent(gc.get_rgb()):
Expand Down Expand Up @@ -795,7 +796,7 @@ def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
else:
font = self._get_font_ttf(prop)
self._character_tracker.track(font, s)
for item in _text_helpers.layout(s, font):
for item in _text_helpers.layout(s, font, language):
ps_name = (item.ft_object.postscript_name
.encode("ascii", "replace").decode("ascii"))
glyph_name = item.ft_object.get_glyph_name(item.glyph_idx)
Expand Down
13 changes: 8 additions & 5 deletions lib/matplotlib/backends/backend_svg.py
Original file line number Diff line number Diff line change
Expand Up @@ -1035,7 +1035,8 @@ def _update_glyph_map_defs(self, glyph_map_new):
def _adjust_char_id(self, char_id):
return char_id.replace("%20", "_")

def _draw_text_as_path(self, gc, x, y, s, prop, angle, ismath, mtext=None):
def _draw_text_as_path(self, gc, x, y, s, prop, angle, ismath, mtext=None,
language=None):
# docstring inherited
writer = self.writer

Expand Down Expand Up @@ -1106,7 +1107,8 @@ def _draw_text_as_path(self, gc, x, y, s, prop, angle, ismath, mtext=None):

writer.end('g')

def _draw_text_as_text(self, gc, x, y, s, prop, angle, ismath, mtext=None):
def _draw_text_as_text(self, gc, x, y, s, prop, angle, ismath, mtext=None,
language=None):
# NOTE: If you change the font styling CSS, then be sure the check for
# svg.fonttype = none in `lib/matplotlib/testing/compare.py::convert` remains in
# sync. Also be sure to re-generate any SVG using this mode, or else such tests
Expand Down Expand Up @@ -1263,7 +1265,8 @@ def _get_all_quoted_names(prop):

writer.end('g')

def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None,
language=None):
# docstring inherited

clip_attrs = self._get_clip_attrs(gc)
Expand All @@ -1276,9 +1279,9 @@ def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
self.writer.start('a', {'xlink:href': gc.get_url()})

if mpl.rcParams['svg.fonttype'] == 'path':
self._draw_text_as_path(gc, x, y, s, prop, angle, ismath, mtext)
self._draw_text_as_path(gc, x, y, s, prop, angle, ismath, mtext, language)
else:
self._draw_text_as_text(gc, x, y, s, prop, angle, ismath, mtext)
self._draw_text_as_text(gc, x, y, s, prop, angle, ismath, mtext, language)

if gc.get_url() is not None:
self.writer.end('a')
Expand Down
3 changes: 2 additions & 1 deletion lib/matplotlib/backends/backend_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ def draw_path(self, gc, path, transform, rgbFace=None):
def draw_image(self, gc, x, y, im):
pass

def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None):
def draw_text(self, gc, x, y, s, prop, angle, ismath=False, mtext=None,
language=None):
pass

def flipy(self):
Expand Down
50 changes: 47 additions & 3 deletions lib/matplotlib/text.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
"""

import functools
import inspect
import logging
import math
from numbers import Real
import warnings
import weakref

import numpy as np
Expand Down Expand Up @@ -136,6 +138,7 @@
super().__init__()
self._x, self._y = x, y
self._text = ''
self._language = None
self._reset_visual_defaults(
text=text,
color=color,
Expand Down Expand Up @@ -791,6 +794,7 @@

angle = self.get_rotation()

lang = self._language # TODO: Split this by line.
for line, wh, x, y in info:

mtext = self if len(info) == 1 else None
Expand All @@ -812,9 +816,19 @@
self._fontproperties, angle,
mtext=mtext)
else:
textrenderer.draw_text(gc, x, y, clean_line,
self._fontproperties, angle,
ismath=ismath, mtext=mtext)
params = inspect.signature(textrenderer.draw_text).parameters
if 'language' in params:
textrenderer.draw_text(gc, x, y, clean_line,
self._fontproperties, angle,
ismath=ismath, mtext=mtext,
language=lang)
else:
warnings.warn(

Check warning on line 826 in lib/matplotlib/text.py

View check run for this annotation

Codecov / codecov/patch

lib/matplotlib/text.py#L826

Added line #L826 was not covered by tests
f'{textrenderer.__class__.__name__} missing language '
f'parameter to draw_text method')
textrenderer.draw_text(gc, x, y, clean_line,

Check warning on line 829 in lib/matplotlib/text.py

View check run for this annotation

Codecov / codecov/patch

lib/matplotlib/text.py#L829

Added line #L829 was not covered by tests
self._fontproperties, angle,
ismath=ismath, mtext=mtext)

gc.restore()
renderer.close_group('text')
Expand Down Expand Up @@ -1410,6 +1424,36 @@
return 'baseline' if anchor_at_left else 'top'
return 'top' if anchor_at_left else 'baseline'

def get_language(self):
"""Return the language this Text is in."""
return self._language

Check warning on line 1429 in lib/matplotlib/text.py

View check run for this annotation

Codecov / codecov/patch

lib/matplotlib/text.py#L1429

Added line #L1429 was not covered by tests

def set_language(self, language):
"""
Set the language of the text.

Parameters
----------
language : str or list[tuple[str, int, int]]

"""
_api.check_isinstance((list, str, None), language=language)

Check warning on line 1440 in lib/matplotlib/text.py

View check run for this annotation

Codecov / codecov/patch

lib/matplotlib/text.py#L1440

Added line #L1440 was not covered by tests
if isinstance(language, list):
for val in language:
if not isinstance(val, tuple) or len(val) != 3:
raise ValueError('language must be list of tuple, not {language!r}')
sublang, start, end = val

Check warning on line 1445 in lib/matplotlib/text.py

View check run for this annotation

Codecov / codecov/patch

lib/matplotlib/text.py#L1444-L1445

Added lines #L1444 - L1445 were not covered by tests
if not isinstance(sublang, str):
raise ValueError(

Check warning on line 1447 in lib/matplotlib/text.py

View check run for this annotation

Codecov / codecov/patch

lib/matplotlib/text.py#L1447

Added line #L1447 was not covered by tests
'sub-language specifcation must be str, not {sublang!r}')
if not isinstance(start, int):
raise ValueError('start location must be int, not {start!r}')

Check warning on line 1450 in lib/matplotlib/text.py

View check run for this annotation

Codecov / codecov/patch

lib/matplotlib/text.py#L1450

Added line #L1450 was not covered by tests
if not isinstance(end, int):
raise ValueError('end location must be int, not {end!r}')

Check warning on line 1452 in lib/matplotlib/text.py

View check run for this annotation

Codecov / codecov/patch

lib/matplotlib/text.py#L1452

Added line #L1452 was not covered by tests

self._language = language
self.stale = True

Check warning on line 1455 in lib/matplotlib/text.py

View check run for this annotation

Codecov / codecov/patch

lib/matplotlib/text.py#L1454-L1455

Added lines #L1454 - L1455 were not covered by tests


class OffsetFrom:
"""Callable helper class for working with `Annotation`."""
Expand Down
2 changes: 2 additions & 0 deletions lib/matplotlib/text.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@
Bbox,
BboxBase,
Transform,
)

Check failure on line 15 in lib/matplotlib/text.pyi

View workflow job for this annotation

GitHub Actions / mypy-stubtest

[mypy-stubtest] reported by reviewdog 🐶 matplotlib.text.TextToPath.get_text_width_height_descent is inconsistent, stub does not have argument "language" def (self: matplotlib.textpath.TextToPath, s: builtins.str, prop: matplotlib.font_manager.FontProperties, ismath: Union[builtins.bool, Literal['TeX']]) -> tuple[builtins.float, builtins.float, builtins.float] Runtime: in file /home/runner/work/matplotlib/matplotlib/lib/matplotlib/textpath.py:48 def (self, s, prop, ismath, language=None) Raw Output: error: matplotlib.text.TextToPath.get_text_width_height_descent is inconsistent, stub does not have argument "language" Stub: in file /home/runner/work/matplotlib/matplotlib/lib/matplotlib/text.pyi:15 def (self: matplotlib.textpath.TextToPath, s: builtins.str, prop: matplotlib.font_manager.FontProperties, ismath: Union[builtins.bool, Literal['TeX']]) -> tuple[builtins.float, builtins.float, builtins.float] Runtime: in file /home/runner/work/matplotlib/matplotlib/lib/matplotlib/textpath.py:48 def (self, s, prop, ismath, language=None)

from collections.abc import Callable, Iterable
from typing import Any, Literal

Check failure on line 18 in lib/matplotlib/text.pyi

View workflow job for this annotation

GitHub Actions / mypy-stubtest

[mypy-stubtest] reported by reviewdog 🐶 matplotlib.text.TextToPath.get_text_path is inconsistent, stub does not have argument "language" def (self: matplotlib.textpath.TextToPath, prop: matplotlib.font_manager.FontProperties, s: builtins.str, ismath: Union[builtins.bool, Literal['TeX']] =) -> builtins.list[numpy.ndarray[Any, Any]] Runtime: in file /home/runner/work/matplotlib/matplotlib/lib/matplotlib/textpath.py:72 def (self, prop, s, ismath=False, language=None) Raw Output: error: matplotlib.text.TextToPath.get_text_path is inconsistent, stub does not have argument "language" Stub: in file /home/runner/work/matplotlib/matplotlib/lib/matplotlib/text.pyi:18 def (self: matplotlib.textpath.TextToPath, prop: matplotlib.font_manager.FontProperties, s: builtins.str, ismath: Union[builtins.bool, Literal['TeX']] =) -> builtins.list[numpy.ndarray[Any, Any]] Runtime: in file /home/runner/work/matplotlib/matplotlib/lib/matplotlib/textpath.py:72 def (self, prop, s, ismath=False, language=None)
from .typing import ColorType, CoordsType

class Text(Artist):

Check failure on line 21 in lib/matplotlib/text.pyi

View workflow job for this annotation

GitHub Actions / mypy-stubtest

[mypy-stubtest] reported by reviewdog 🐶 matplotlib.text.TextToPath.get_glyphs_with_font is inconsistent, stub does not have argument "language" def (self: matplotlib.textpath.TextToPath, font: matplotlib.ft2font.FT2Font, s: builtins.str, glyph_map: Union[builtins.dict[builtins.str, tuple[numpy.ndarray[Any, Any], numpy.ndarray[Any, Any]]], None] =, return_new_glyphs_only: builtins.bool =) -> tuple[builtins.list[tuple[builtins.str, builtins.float, builtins.float, builtins.float]], builtins.dict[builtins.str, tuple[numpy.ndarray[Any, Any], numpy.ndarray[Any, Any]]], builtins.list[tuple[builtins.list[tuple[builtins.float, builtins.float]], builtins.list[builtins.int]]]] Runtime: in file /home/runner/work/matplotlib/matplotlib/lib/matplotlib/textpath.py:133 def (self, font, s, glyph_map=None, return_new_glyphs_only=False, language=None) Raw Output: error: matplotlib.text.TextToPath.get_glyphs_with_font is inconsistent, stub does not have argument "language" Stub: in file /home/runner/work/matplotlib/matplotlib/lib/matplotlib/text.pyi:21 def (self: matplotlib.textpath.TextToPath, font: matplotlib.ft2font.FT2Font, s: builtins.str, glyph_map: Union[builtins.dict[builtins.str, tuple[numpy.ndarray[Any, Any], numpy.ndarray[Any, Any]]], None] =, return_new_glyphs_only: builtins.bool =) -> tuple[builtins.list[tuple[builtins.str, builtins.float, builtins.float, builtins.float]], builtins.dict[builtins.str, tuple[numpy.ndarray[Any, Any], numpy.ndarray[Any, Any]]], builtins.list[tuple[builtins.list[tuple[builtins.float, builtins.float]], builtins.list[builtins.int]]]] Runtime: in file /home/runner/work/matplotlib/matplotlib/lib/matplotlib/textpath.py:133 def (self, font, s, glyph_map=None, return_new_glyphs_only=False, language=None)
zorder: float
def __init__(
self,
Expand Down Expand Up @@ -108,6 +108,8 @@
def set_antialiased(self, antialiased: bool) -> None: ...
def _ha_for_angle(self, angle: Any) -> Literal['center', 'right', 'left'] | None: ...
def _va_for_angle(self, angle: Any) -> Literal['center', 'top', 'baseline'] | None: ...
def get_language(self) -> str | list[tuple[str, int, int]] | None: ...
def set_language(self, language: str | list[tuple[str, int, int]] | None) -> None: ...

class OffsetFrom:
def __init__(
Expand Down
13 changes: 7 additions & 6 deletions lib/matplotlib/textpath.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def _get_char_id(self, font, ccode):
"""
return urllib.parse.quote(f"{font.postscript_name}-{ccode:x}")

def get_text_width_height_descent(self, s, prop, ismath):
def get_text_width_height_descent(self, s, prop, ismath, language=None):
fontsize = prop.get_size_in_points()

if ismath == "TeX":
Expand All @@ -61,15 +61,15 @@ def get_text_width_height_descent(self, s, prop, ismath):
return width * scale, height * scale, descent * scale

font = self._get_font(prop)
font.set_text(s, 0.0, flags=LoadFlags.NO_HINTING)
font.set_text(s, 0.0, flags=LoadFlags.NO_HINTING, language=language)
w, h = font.get_width_height()
w /= 64.0 # convert from subpixels
h /= 64.0
d = font.get_descent()
d /= 64.0
return w * scale, h * scale, d * scale

def get_text_path(self, prop, s, ismath=False):
def get_text_path(self, prop, s, ismath=False, language=None):
"""
Convert text *s* to path (a tuple of vertices and codes for
matplotlib.path.Path).
Expand Down Expand Up @@ -109,7 +109,8 @@ def get_text_path(self, prop, s, ismath=False):
glyph_info, glyph_map, rects = self.get_glyphs_tex(prop, s)
elif not ismath:
font = self._get_font(prop)
glyph_info, glyph_map, rects = self.get_glyphs_with_font(font, s)
glyph_info, glyph_map, rects = self.get_glyphs_with_font(font, s,
language=language)
else:
glyph_info, glyph_map, rects = self.get_glyphs_mathtext(prop, s)

Expand All @@ -130,7 +131,7 @@ def get_text_path(self, prop, s, ismath=False):
return verts, codes

def get_glyphs_with_font(self, font, s, glyph_map=None,
return_new_glyphs_only=False):
return_new_glyphs_only=False, language=None):
"""
Convert string *s* to vertices and codes using the provided ttf font.
"""
Expand All @@ -145,7 +146,7 @@ def get_glyphs_with_font(self, font, s, glyph_map=None,

xpositions = []
glyph_ids = []
for item in _text_helpers.layout(s, font):
for item in _text_helpers.layout(s, font, language):
char_id = self._get_char_id(item.ft_object, ord(item.char))
glyph_ids.append(char_id)
xpositions.append(item.x)
Expand Down
3 changes: 2 additions & 1 deletion src/ft2font.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,8 @@ void FT2Font::set_kerning_factor(int factor)
}

void FT2Font::set_text(
std::u32string_view text, double angle, FT_Int32 flags, std::vector<double> &xys)
std::u32string_view text, double angle, FT_Int32 flags, LanguageType languages,
std::vector<double> &xys)
{
FT_Matrix matrix; /* transformation matrix */

Expand Down
6 changes: 5 additions & 1 deletion src/ft2font.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
#ifndef MPL_FT2FONT_H
#define MPL_FT2FONT_H

#include <optional>
#include <set>
#include <string>
#include <string_view>
Expand Down Expand Up @@ -70,6 +71,9 @@ class FT2Font
typedef void (*WarnFunc)(FT_ULong charcode, std::set<FT_String*> family_names);

public:
using LanguageRange = std::tuple<std::string, int, int>;
using LanguageType = std::optional<std::vector<LanguageRange>>;

FT2Font(FT_Open_Args &open_args, long hinting_factor,
std::vector<FT2Font *> &fallback_list, WarnFunc warn);
virtual ~FT2Font();
Expand All @@ -78,7 +82,7 @@ class FT2Font
void set_charmap(int i);
void select_charmap(unsigned long i);
void set_text(std::u32string_view codepoints, double angle, FT_Int32 flags,
std::vector<double> &xys);
LanguageType languages, std::vector<double> &xys);
int get_kerning(FT_UInt left, FT_UInt right, FT_Kerning_Mode mode, bool fallback);
int get_kerning(FT_UInt left, FT_UInt right, FT_Kerning_Mode mode, FT_Vector &delta);
void set_kerning_factor(int factor);
Expand Down
Loading
Loading