[API] Add hb_font_create_sub_font() and hb_font_get_parent()
[profile/ivi/org.tizen.video-player.git] / src / hb-font-private.hh
1 /*
2  * Copyright © 2009  Red Hat, Inc.
3  * Copyright © 2011  Google, Inc.
4  *
5  *  This is part of HarfBuzz, a text shaping library.
6  *
7  * Permission is hereby granted, without written agreement and without
8  * license or royalty fees, to use, copy, modify, and distribute this
9  * software and its documentation for any purpose, provided that the
10  * above copyright notice and the following two paragraphs appear in
11  * all copies of this software.
12  *
13  * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
14  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
15  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
16  * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
17  * DAMAGE.
18  *
19  * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
20  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
21  * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
22  * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
23  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
24  *
25  * Red Hat Author(s): Behdad Esfahbod
26  * Google Author(s): Behdad Esfahbod
27  */
28
29 #ifndef HB_FONT_PRIVATE_HH
30 #define HB_FONT_PRIVATE_HH
31
32 #include "hb-private.hh"
33
34 #include "hb-font.h"
35 #include "hb-object-private.hh"
36
37 HB_BEGIN_DECLS
38
39
40 /*
41  * hb_font_funcs_t
42  */
43
44 struct _hb_font_funcs_t {
45   hb_object_header_t header;
46
47   hb_bool_t immutable;
48
49   struct {
50     hb_font_get_glyph_func_t            get_glyph;
51     hb_font_get_glyph_advance_func_t    get_glyph_advance;
52     hb_font_get_glyph_extents_func_t    get_glyph_extents;
53     hb_font_get_contour_point_func_t    get_contour_point;
54     hb_font_get_kerning_func_t          get_kerning;
55   } v;
56 };
57
58
59 /*
60  * hb_face_t
61  */
62
63 struct _hb_face_t {
64   hb_object_header_t header;
65
66   hb_get_table_func_t  get_table;
67   void                *user_data;
68   hb_destroy_func_t    destroy;
69
70   hb_blob_t *head_blob;
71
72   struct hb_ot_layout_t *ot_layout;
73 };
74
75
76 /*
77  * hb_font_t
78  */
79
80 struct _hb_font_t {
81   hb_object_header_t header;
82
83   hb_bool_t immutable;
84
85   hb_font_t *parent;
86   hb_face_t *face;
87
88   int x_scale;
89   int y_scale;
90
91   unsigned int x_ppem;
92   unsigned int y_ppem;
93
94   hb_font_funcs_t   *klass;
95   void              *user_data;
96   hb_destroy_func_t  destroy;
97 };
98
99
100 HB_END_DECLS
101
102 #endif /* HB_FONT_PRIVATE_HH */