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
);
109 hb_face_set_glyph_count (hb_face_t
*face
,
110 unsigned int glyph_count
);
113 hb_face_get_glyph_count (hb_face_t
*face
);
120 typedef struct hb_font_funcs_t hb_font_funcs_t
;
123 hb_font_funcs_create (void);
126 hb_font_funcs_get_empty (void);
129 hb_font_funcs_reference (hb_font_funcs_t
*ffuncs
);
132 hb_font_funcs_destroy (hb_font_funcs_t
*ffuncs
);
135 hb_font_funcs_set_user_data (hb_font_funcs_t
*ffuncs
,
136 hb_user_data_key_t
*key
,
138 hb_destroy_func_t destroy
,
143 hb_font_funcs_get_user_data (hb_font_funcs_t
*ffuncs
,
144 hb_user_data_key_t
*key
);
148 hb_font_funcs_make_immutable (hb_font_funcs_t
*ffuncs
);
151 hb_font_funcs_is_immutable (hb_font_funcs_t
*ffuncs
);
156 typedef struct hb_glyph_extents_t
158 hb_position_t x_bearing
;
159 hb_position_t y_bearing
;
161 hb_position_t height
;
162 } hb_glyph_extents_t
;
167 typedef hb_bool_t (*hb_font_get_glyph_func_t
) (hb_font_t
*font
, void *font_data
,
168 hb_codepoint_t unicode
, hb_codepoint_t variation_selector
,
169 hb_codepoint_t
*glyph
,
173 typedef hb_position_t (*hb_font_get_glyph_advance_func_t
) (hb_font_t
*font
, void *font_data
,
174 hb_codepoint_t glyph
,
176 typedef hb_font_get_glyph_advance_func_t hb_font_get_glyph_h_advance_func_t
;
177 typedef hb_font_get_glyph_advance_func_t hb_font_get_glyph_v_advance_func_t
;
179 typedef hb_bool_t (*hb_font_get_glyph_origin_func_t
) (hb_font_t
*font
, void *font_data
,
180 hb_codepoint_t glyph
,
181 hb_position_t
*x
, hb_position_t
*y
,
183 typedef hb_font_get_glyph_origin_func_t hb_font_get_glyph_h_origin_func_t
;
184 typedef hb_font_get_glyph_origin_func_t hb_font_get_glyph_v_origin_func_t
;
186 typedef hb_position_t (*hb_font_get_glyph_kerning_func_t
) (hb_font_t
*font
, void *font_data
,
187 hb_codepoint_t first_glyph
, hb_codepoint_t second_glyph
,
189 typedef hb_font_get_glyph_kerning_func_t hb_font_get_glyph_h_kerning_func_t
;
190 typedef hb_font_get_glyph_kerning_func_t hb_font_get_glyph_v_kerning_func_t
;
193 typedef hb_bool_t (*hb_font_get_glyph_extents_func_t
) (hb_font_t
*font
, void *font_data
,
194 hb_codepoint_t glyph
,
195 hb_glyph_extents_t
*extents
,
197 typedef hb_bool_t (*hb_font_get_glyph_contour_point_func_t
) (hb_font_t
*font
, void *font_data
,
198 hb_codepoint_t glyph
, unsigned int point_index
,
199 hb_position_t
*x
, hb_position_t
*y
,
203 typedef hb_bool_t (*hb_font_get_glyph_name_func_t
) (hb_font_t
*font
, void *font_data
,
204 hb_codepoint_t glyph
,
205 char *name
, unsigned int size
,
207 typedef hb_bool_t (*hb_font_get_glyph_from_name_func_t
) (hb_font_t
*font
, void *font_data
,
208 const char *name
, int len
, /* -1 means nul-terminated */
209 hb_codepoint_t
*glyph
,
216 hb_font_funcs_set_glyph_func (hb_font_funcs_t
*ffuncs
,
217 hb_font_get_glyph_func_t glyph_func
,
218 void *user_data
, hb_destroy_func_t destroy
);
221 hb_font_funcs_set_glyph_h_advance_func (hb_font_funcs_t
*ffuncs
,
222 hb_font_get_glyph_h_advance_func_t func
,
223 void *user_data
, hb_destroy_func_t destroy
);
225 hb_font_funcs_set_glyph_v_advance_func (hb_font_funcs_t
*ffuncs
,
226 hb_font_get_glyph_v_advance_func_t func
,
227 void *user_data
, hb_destroy_func_t destroy
);
230 hb_font_funcs_set_glyph_h_origin_func (hb_font_funcs_t
*ffuncs
,
231 hb_font_get_glyph_h_origin_func_t func
,
232 void *user_data
, hb_destroy_func_t destroy
);
234 hb_font_funcs_set_glyph_v_origin_func (hb_font_funcs_t
*ffuncs
,
235 hb_font_get_glyph_v_origin_func_t func
,
236 void *user_data
, hb_destroy_func_t destroy
);
239 hb_font_funcs_set_glyph_h_kerning_func (hb_font_funcs_t
*ffuncs
,
240 hb_font_get_glyph_h_kerning_func_t func
,
241 void *user_data
, hb_destroy_func_t destroy
);
243 hb_font_funcs_set_glyph_v_kerning_func (hb_font_funcs_t
*ffuncs
,
244 hb_font_get_glyph_v_kerning_func_t func
,
245 void *user_data
, hb_destroy_func_t destroy
);
248 hb_font_funcs_set_glyph_extents_func (hb_font_funcs_t
*ffuncs
,
249 hb_font_get_glyph_extents_func_t func
,
250 void *user_data
, hb_destroy_func_t destroy
);
252 hb_font_funcs_set_glyph_contour_point_func (hb_font_funcs_t
*ffuncs
,
253 hb_font_get_glyph_contour_point_func_t func
,
254 void *user_data
, hb_destroy_func_t destroy
);
257 hb_font_funcs_set_glyph_name_func (hb_font_funcs_t
*ffuncs
,
258 hb_font_get_glyph_name_func_t glyph_func
,
259 void *user_data
, hb_destroy_func_t destroy
);
261 hb_font_funcs_set_glyph_from_name_func (hb_font_funcs_t
*ffuncs
,
262 hb_font_get_glyph_from_name_func_t glyph_func
,
263 void *user_data
, hb_destroy_func_t destroy
);
269 hb_font_get_glyph (hb_font_t
*font
,
270 hb_codepoint_t unicode
, hb_codepoint_t variation_selector
,
271 hb_codepoint_t
*glyph
);
274 hb_font_get_glyph_h_advance (hb_font_t
*font
,
275 hb_codepoint_t glyph
);
277 hb_font_get_glyph_v_advance (hb_font_t
*font
,
278 hb_codepoint_t glyph
);
281 hb_font_get_glyph_h_origin (hb_font_t
*font
,
282 hb_codepoint_t glyph
,
283 hb_position_t
*x
, hb_position_t
*y
);
285 hb_font_get_glyph_v_origin (hb_font_t
*font
,
286 hb_codepoint_t glyph
,
287 hb_position_t
*x
, hb_position_t
*y
);
290 hb_font_get_glyph_h_kerning (hb_font_t
*font
,
291 hb_codepoint_t left_glyph
, hb_codepoint_t right_glyph
);
293 hb_font_get_glyph_v_kerning (hb_font_t
*font
,
294 hb_codepoint_t top_glyph
, hb_codepoint_t bottom_glyph
);
297 hb_font_get_glyph_extents (hb_font_t
*font
,
298 hb_codepoint_t glyph
,
299 hb_glyph_extents_t
*extents
);
302 hb_font_get_glyph_contour_point (hb_font_t
*font
,
303 hb_codepoint_t glyph
, unsigned int point_index
,
304 hb_position_t
*x
, hb_position_t
*y
);
307 hb_font_get_glyph_name (hb_font_t
*font
,
308 hb_codepoint_t glyph
,
309 char *name
, unsigned int size
);
311 hb_font_get_glyph_from_name (hb_font_t
*font
,
312 const char *name
, int len
, /* -1 means nul-terminated */
313 hb_codepoint_t
*glyph
);
316 /* high-level funcs, with fallback */
319 hb_font_get_glyph_advance_for_direction (hb_font_t
*font
,
320 hb_codepoint_t glyph
,
321 hb_direction_t direction
,
322 hb_position_t
*x
, hb_position_t
*y
);
324 hb_font_get_glyph_origin_for_direction (hb_font_t
*font
,
325 hb_codepoint_t glyph
,
326 hb_direction_t direction
,
327 hb_position_t
*x
, hb_position_t
*y
);
329 hb_font_add_glyph_origin_for_direction (hb_font_t
*font
,
330 hb_codepoint_t glyph
,
331 hb_direction_t direction
,
332 hb_position_t
*x
, hb_position_t
*y
);
334 hb_font_subtract_glyph_origin_for_direction (hb_font_t
*font
,
335 hb_codepoint_t glyph
,
336 hb_direction_t direction
,
337 hb_position_t
*x
, hb_position_t
*y
);
340 hb_font_get_glyph_kerning_for_direction (hb_font_t
*font
,
341 hb_codepoint_t first_glyph
, hb_codepoint_t second_glyph
,
342 hb_direction_t direction
,
343 hb_position_t
*x
, hb_position_t
*y
);
346 hb_font_get_glyph_extents_for_origin (hb_font_t
*font
,
347 hb_codepoint_t glyph
,
348 hb_direction_t direction
,
349 hb_glyph_extents_t
*extents
);
352 hb_font_get_glyph_contour_point_for_origin (hb_font_t
*font
,
353 hb_codepoint_t glyph
, unsigned int point_index
,
354 hb_direction_t direction
,
355 hb_position_t
*x
, hb_position_t
*y
);
357 /* Generates gidDDD if glyph has no name. */
359 hb_font_glyph_to_string (hb_font_t
*font
,
360 hb_codepoint_t glyph
,
361 char *s
, unsigned int size
);
362 /* Parses gidDDD and uniUUUU strings automatically. */
364 hb_font_glyph_from_string (hb_font_t
*font
,
365 const char *s
, int len
, /* -1 means nul-terminated */
366 hb_codepoint_t
*glyph
);
373 /* Fonts are very light-weight objects */
376 hb_font_create (hb_face_t
*face
);
379 hb_font_create_sub_font (hb_font_t
*parent
);
382 hb_font_get_empty (void);
385 hb_font_reference (hb_font_t
*font
);
388 hb_font_destroy (hb_font_t
*font
);
391 hb_font_set_user_data (hb_font_t
*font
,
392 hb_user_data_key_t
*key
,
394 hb_destroy_func_t destroy
,
399 hb_font_get_user_data (hb_font_t
*font
,
400 hb_user_data_key_t
*key
);
403 hb_font_make_immutable (hb_font_t
*font
);
406 hb_font_is_immutable (hb_font_t
*font
);
409 hb_font_get_parent (hb_font_t
*font
);
412 hb_font_get_face (hb_font_t
*font
);
416 hb_font_set_funcs (hb_font_t
*font
,
417 hb_font_funcs_t
*klass
,
419 hb_destroy_func_t destroy
);
421 /* Be *very* careful with this function! */
423 hb_font_set_funcs_data (hb_font_t
*font
,
425 hb_destroy_func_t destroy
);
429 hb_font_set_scale (hb_font_t
*font
,
434 hb_font_get_scale (hb_font_t
*font
,
439 * A zero value means "no hinting in that direction"
442 hb_font_set_ppem (hb_font_t
*font
,
444 unsigned int y_ppem
);
447 hb_font_get_ppem (hb_font_t
*font
,
448 unsigned int *x_ppem
,
449 unsigned int *y_ppem
);
454 #endif /* HB_FONT_H */