2 * Copyright © 2009 Red Hat, Inc.
4 * This is part of HarfBuzz, a text shaping library.
6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software.
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
24 * Red Hat Author(s): Behdad Esfahbod
28 #error "Include <hb.h> instead."
34 #include "hb-common.h"
40 typedef struct hb_face_t hb_face_t
;
41 typedef struct hb_font_t hb_font_t
;
48 hb_face_create (hb_blob_t
*blob
,
51 typedef hb_blob_t
* (*hb_reference_table_func_t
) (hb_face_t
*face
, hb_tag_t tag
, void *user_data
);
53 /* calls destroy() when not needing user_data anymore */
55 hb_face_create_for_tables (hb_reference_table_func_t reference_table_func
,
57 hb_destroy_func_t destroy
);
60 hb_face_get_empty (void);
63 hb_face_reference (hb_face_t
*face
);
66 hb_face_destroy (hb_face_t
*face
);
69 hb_face_set_user_data (hb_face_t
*face
,
70 hb_user_data_key_t
*key
,
72 hb_destroy_func_t destroy
,
77 hb_face_get_user_data (hb_face_t
*face
,
78 hb_user_data_key_t
*key
);
81 hb_face_make_immutable (hb_face_t
*face
);
84 hb_face_is_immutable (hb_face_t
*face
);
88 hb_face_reference_table (hb_face_t
*face
,
92 hb_face_reference_blob (hb_face_t
*face
);
95 hb_face_set_index (hb_face_t
*face
,
99 hb_face_get_index (hb_face_t
*face
);
102 hb_face_set_upem (hb_face_t
*face
,
106 hb_face_get_upem (hb_face_t
*face
);
113 typedef struct hb_font_funcs_t hb_font_funcs_t
;
116 hb_font_funcs_create (void);
119 hb_font_funcs_get_empty (void);
122 hb_font_funcs_reference (hb_font_funcs_t
*ffuncs
);
125 hb_font_funcs_destroy (hb_font_funcs_t
*ffuncs
);
128 hb_font_funcs_set_user_data (hb_font_funcs_t
*ffuncs
,
129 hb_user_data_key_t
*key
,
131 hb_destroy_func_t destroy
,
136 hb_font_funcs_get_user_data (hb_font_funcs_t
*ffuncs
,
137 hb_user_data_key_t
*key
);
141 hb_font_funcs_make_immutable (hb_font_funcs_t
*ffuncs
);
144 hb_font_funcs_is_immutable (hb_font_funcs_t
*ffuncs
);
149 typedef struct hb_glyph_extents_t
151 hb_position_t x_bearing
;
152 hb_position_t y_bearing
;
154 hb_position_t height
;
155 } hb_glyph_extents_t
;
160 typedef hb_bool_t (*hb_font_get_glyph_func_t
) (hb_font_t
*font
, void *font_data
,
161 hb_codepoint_t unicode
, hb_codepoint_t variation_selector
,
162 hb_codepoint_t
*glyph
,
166 typedef hb_position_t (*hb_font_get_glyph_advance_func_t
) (hb_font_t
*font
, void *font_data
,
167 hb_codepoint_t glyph
,
169 typedef hb_font_get_glyph_advance_func_t hb_font_get_glyph_h_advance_func_t
;
170 typedef hb_font_get_glyph_advance_func_t hb_font_get_glyph_v_advance_func_t
;
172 typedef hb_bool_t (*hb_font_get_glyph_origin_func_t
) (hb_font_t
*font
, void *font_data
,
173 hb_codepoint_t glyph
,
174 hb_position_t
*x
, hb_position_t
*y
,
176 typedef hb_font_get_glyph_origin_func_t hb_font_get_glyph_h_origin_func_t
;
177 typedef hb_font_get_glyph_origin_func_t hb_font_get_glyph_v_origin_func_t
;
179 typedef hb_position_t (*hb_font_get_glyph_kerning_func_t
) (hb_font_t
*font
, void *font_data
,
180 hb_codepoint_t first_glyph
, hb_codepoint_t second_glyph
,
182 typedef hb_font_get_glyph_kerning_func_t hb_font_get_glyph_h_kerning_func_t
;
183 typedef hb_font_get_glyph_kerning_func_t hb_font_get_glyph_v_kerning_func_t
;
186 typedef hb_bool_t (*hb_font_get_glyph_extents_func_t
) (hb_font_t
*font
, void *font_data
,
187 hb_codepoint_t glyph
,
188 hb_glyph_extents_t
*extents
,
190 typedef hb_bool_t (*hb_font_get_glyph_contour_point_func_t
) (hb_font_t
*font
, void *font_data
,
191 hb_codepoint_t glyph
, unsigned int point_index
,
192 hb_position_t
*x
, hb_position_t
*y
,
196 typedef hb_bool_t (*hb_font_get_glyph_name_func_t
) (hb_font_t
*font
, void *font_data
,
197 hb_codepoint_t glyph
,
198 char *name
, unsigned int size
,
200 typedef hb_bool_t (*hb_font_get_glyph_from_name_func_t
) (hb_font_t
*font
, void *font_data
,
201 const char *name
, int len
, /* -1 means nul-terminated */
202 hb_codepoint_t
*glyph
,
209 hb_font_funcs_set_glyph_func (hb_font_funcs_t
*ffuncs
,
210 hb_font_get_glyph_func_t glyph_func
,
211 void *user_data
, hb_destroy_func_t destroy
);
214 hb_font_funcs_set_glyph_h_advance_func (hb_font_funcs_t
*ffuncs
,
215 hb_font_get_glyph_h_advance_func_t func
,
216 void *user_data
, hb_destroy_func_t destroy
);
218 hb_font_funcs_set_glyph_v_advance_func (hb_font_funcs_t
*ffuncs
,
219 hb_font_get_glyph_v_advance_func_t func
,
220 void *user_data
, hb_destroy_func_t destroy
);
223 hb_font_funcs_set_glyph_h_origin_func (hb_font_funcs_t
*ffuncs
,
224 hb_font_get_glyph_h_origin_func_t func
,
225 void *user_data
, hb_destroy_func_t destroy
);
227 hb_font_funcs_set_glyph_v_origin_func (hb_font_funcs_t
*ffuncs
,
228 hb_font_get_glyph_v_origin_func_t func
,
229 void *user_data
, hb_destroy_func_t destroy
);
232 hb_font_funcs_set_glyph_h_kerning_func (hb_font_funcs_t
*ffuncs
,
233 hb_font_get_glyph_h_kerning_func_t func
,
234 void *user_data
, hb_destroy_func_t destroy
);
236 hb_font_funcs_set_glyph_v_kerning_func (hb_font_funcs_t
*ffuncs
,
237 hb_font_get_glyph_v_kerning_func_t func
,
238 void *user_data
, hb_destroy_func_t destroy
);
241 hb_font_funcs_set_glyph_extents_func (hb_font_funcs_t
*ffuncs
,
242 hb_font_get_glyph_extents_func_t func
,
243 void *user_data
, hb_destroy_func_t destroy
);
245 hb_font_funcs_set_glyph_contour_point_func (hb_font_funcs_t
*ffuncs
,
246 hb_font_get_glyph_contour_point_func_t func
,
247 void *user_data
, hb_destroy_func_t destroy
);
250 hb_font_funcs_set_glyph_name_func (hb_font_funcs_t
*ffuncs
,
251 hb_font_get_glyph_name_func_t glyph_func
,
252 void *user_data
, hb_destroy_func_t destroy
);
254 hb_font_funcs_set_glyph_from_name_func (hb_font_funcs_t
*ffuncs
,
255 hb_font_get_glyph_from_name_func_t glyph_func
,
256 void *user_data
, hb_destroy_func_t destroy
);
262 hb_font_get_glyph (hb_font_t
*font
,
263 hb_codepoint_t unicode
, hb_codepoint_t variation_selector
,
264 hb_codepoint_t
*glyph
);
267 hb_font_get_glyph_h_advance (hb_font_t
*font
,
268 hb_codepoint_t glyph
);
270 hb_font_get_glyph_v_advance (hb_font_t
*font
,
271 hb_codepoint_t glyph
);
274 hb_font_get_glyph_h_origin (hb_font_t
*font
,
275 hb_codepoint_t glyph
,
276 hb_position_t
*x
, hb_position_t
*y
);
278 hb_font_get_glyph_v_origin (hb_font_t
*font
,
279 hb_codepoint_t glyph
,
280 hb_position_t
*x
, hb_position_t
*y
);
283 hb_font_get_glyph_h_kerning (hb_font_t
*font
,
284 hb_codepoint_t left_glyph
, hb_codepoint_t right_glyph
);
286 hb_font_get_glyph_v_kerning (hb_font_t
*font
,
287 hb_codepoint_t top_glyph
, hb_codepoint_t bottom_glyph
);
290 hb_font_get_glyph_extents (hb_font_t
*font
,
291 hb_codepoint_t glyph
,
292 hb_glyph_extents_t
*extents
);
295 hb_font_get_glyph_contour_point (hb_font_t
*font
,
296 hb_codepoint_t glyph
, unsigned int point_index
,
297 hb_position_t
*x
, hb_position_t
*y
);
300 hb_font_get_glyph_name (hb_font_t
*font
,
301 hb_codepoint_t glyph
,
302 char *name
, unsigned int size
);
304 hb_font_get_glyph_from_name (hb_font_t
*font
,
305 const char *name
, int len
, /* -1 means nul-terminated */
306 hb_codepoint_t
*glyph
);
309 /* high-level funcs, with fallback */
312 hb_font_get_glyph_advance_for_direction (hb_font_t
*font
,
313 hb_codepoint_t glyph
,
314 hb_direction_t direction
,
315 hb_position_t
*x
, hb_position_t
*y
);
317 hb_font_get_glyph_origin_for_direction (hb_font_t
*font
,
318 hb_codepoint_t glyph
,
319 hb_direction_t direction
,
320 hb_position_t
*x
, hb_position_t
*y
);
322 hb_font_add_glyph_origin_for_direction (hb_font_t
*font
,
323 hb_codepoint_t glyph
,
324 hb_direction_t direction
,
325 hb_position_t
*x
, hb_position_t
*y
);
327 hb_font_subtract_glyph_origin_for_direction (hb_font_t
*font
,
328 hb_codepoint_t glyph
,
329 hb_direction_t direction
,
330 hb_position_t
*x
, hb_position_t
*y
);
333 hb_font_get_glyph_kerning_for_direction (hb_font_t
*font
,
334 hb_codepoint_t first_glyph
, hb_codepoint_t second_glyph
,
335 hb_direction_t direction
,
336 hb_position_t
*x
, hb_position_t
*y
);
339 hb_font_get_glyph_extents_for_origin (hb_font_t
*font
,
340 hb_codepoint_t glyph
,
341 hb_direction_t direction
,
342 hb_glyph_extents_t
*extents
);
345 hb_font_get_glyph_contour_point_for_origin (hb_font_t
*font
,
346 hb_codepoint_t glyph
, unsigned int point_index
,
347 hb_direction_t direction
,
348 hb_position_t
*x
, hb_position_t
*y
);
350 /* Generates gidDDD if glyph has no name. */
352 hb_font_glyph_to_string (hb_font_t
*font
,
353 hb_codepoint_t glyph
,
354 char *s
, unsigned int size
);
355 /* Parses gidDDD and uniUUUU strings automatically. */
357 hb_font_glyph_from_string (hb_font_t
*font
,
358 const char *s
, int len
, /* -1 means nul-terminated */
359 hb_codepoint_t
*glyph
);
366 /* Fonts are very light-weight objects */
369 hb_font_create (hb_face_t
*face
);
372 hb_font_create_sub_font (hb_font_t
*parent
);
375 hb_font_get_empty (void);
378 hb_font_reference (hb_font_t
*font
);
381 hb_font_destroy (hb_font_t
*font
);
384 hb_font_set_user_data (hb_font_t
*font
,
385 hb_user_data_key_t
*key
,
387 hb_destroy_func_t destroy
,
392 hb_font_get_user_data (hb_font_t
*font
,
393 hb_user_data_key_t
*key
);
396 hb_font_make_immutable (hb_font_t
*font
);
399 hb_font_is_immutable (hb_font_t
*font
);
402 hb_font_get_parent (hb_font_t
*font
);
405 hb_font_get_face (hb_font_t
*font
);
409 hb_font_set_funcs (hb_font_t
*font
,
410 hb_font_funcs_t
*klass
,
412 hb_destroy_func_t destroy
);
414 /* Be *very* careful with this function! */
416 hb_font_set_funcs_data (hb_font_t
*font
,
418 hb_destroy_func_t destroy
);
422 hb_font_set_scale (hb_font_t
*font
,
427 hb_font_get_scale (hb_font_t
*font
,
432 * A zero value means "no hinting in that direction"
435 hb_font_set_ppem (hb_font_t
*font
,
437 unsigned int y_ppem
);
440 hb_font_get_ppem (hb_font_t
*font
,
441 unsigned int *x_ppem
,
442 unsigned int *y_ppem
);
447 #endif /* HB_FONT_H */