Update Copyright headers
[apps/home/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
36 HB_BEGIN_DECLS
37
38
39 /*
40  * hb_font_funcs_t
41  */
42
43 struct _hb_font_funcs_t {
44   hb_reference_count_t ref_count;
45
46   hb_bool_t immutable;
47
48   struct {
49     hb_font_get_glyph_func_t            get_glyph;
50     hb_font_get_glyph_advance_func_t    get_glyph_advance;
51     hb_font_get_glyph_extents_func_t    get_glyph_extents;
52     hb_font_get_contour_point_func_t    get_contour_point;
53     hb_font_get_kerning_func_t          get_kerning;
54   } v;
55 };
56
57 extern HB_INTERNAL hb_font_funcs_t _hb_font_funcs_nil;
58
59
60 /*
61  * hb_face_t
62  */
63
64 struct _hb_face_t {
65   hb_reference_count_t ref_count;
66
67   hb_get_table_func_t  get_table;
68   void                *user_data;
69   hb_destroy_func_t    destroy;
70
71   hb_blob_t *head_blob;
72   const struct head *head_table;
73
74   struct hb_ot_layout_t *ot_layout;
75 };
76
77
78 /*
79  * hb_font_t
80  */
81
82 struct _hb_font_t {
83   hb_reference_count_t ref_count;
84
85   unsigned int x_scale;
86   unsigned int y_scale;
87
88   unsigned int x_ppem;
89   unsigned int y_ppem;
90
91   hb_font_funcs_t   *klass;
92   void              *user_data;
93   hb_destroy_func_t  destroy;
94 };
95
96
97 HB_END_DECLS
98
99 #endif /* HB_FONT_PRIVATE_HH */