Add initial implementation of user_data to objects
[apps/home/video-player.git] / src / hb-unicode.h
1 /*
2  * Copyright © 2009  Red Hat, Inc.
3  * Copyright © 2011 Codethink Limited
4  * Copyright © 2011  Google, Inc.
5  *
6  *  This is part of HarfBuzz, a text shaping library.
7  *
8  * Permission is hereby granted, without written agreement and without
9  * license or royalty fees, to use, copy, modify, and distribute this
10  * software and its documentation for any purpose, provided that the
11  * above copyright notice and the following two paragraphs appear in
12  * all copies of this software.
13  *
14  * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
15  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
16  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
17  * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
18  * DAMAGE.
19  *
20  * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
21  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
22  * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
23  * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
24  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
25  *
26  * Red Hat Author(s): Behdad Esfahbod
27  * Codethink Author(s): Ryan Lortie
28  * Google Author(s): Behdad Esfahbod
29  */
30
31 #ifndef HB_UNICODE_H
32 #define HB_UNICODE_H
33
34 #include "hb-common.h"
35
36 HB_BEGIN_DECLS
37
38
39 /*
40  * hb_unicode_funcs_t
41  */
42
43 typedef struct _hb_unicode_funcs_t hb_unicode_funcs_t;
44
45
46 /*
47  * just give me the best implementation you've got there.
48  */
49 hb_unicode_funcs_t *
50 hb_unicode_funcs_get_default (void);
51
52
53 hb_unicode_funcs_t *
54 hb_unicode_funcs_create (hb_unicode_funcs_t *parent_funcs);
55
56 hb_unicode_funcs_t *
57 hb_unicode_funcs_reference (hb_unicode_funcs_t *ufuncs);
58
59 void
60 hb_unicode_funcs_destroy (hb_unicode_funcs_t *ufuncs);
61
62 void
63 hb_unicode_funcs_make_immutable (hb_unicode_funcs_t *ufuncs);
64
65 hb_bool_t
66 hb_unicode_funcs_is_immutable (hb_unicode_funcs_t *ufuncs);
67
68 hb_unicode_funcs_t *
69 hb_unicode_funcs_get_parent (hb_unicode_funcs_t *ufuncs);
70
71
72 /*
73  * funcs
74  */
75
76 /* typedefs */
77
78 typedef unsigned int                  (*hb_unicode_get_combining_class_func_t)  (hb_unicode_funcs_t *ufuncs,
79                                                                                  hb_codepoint_t      unicode,
80                                                                                  void               *user_data);
81 typedef unsigned int                  (*hb_unicode_get_eastasian_width_func_t)  (hb_unicode_funcs_t *ufuncs,
82                                                                                  hb_codepoint_t      unicode,
83                                                                                  void               *user_data);
84 typedef hb_unicode_general_category_t (*hb_unicode_get_general_category_func_t) (hb_unicode_funcs_t *ufuncs,
85                                                                                  hb_codepoint_t      unicode,
86                                                                                  void               *user_data);
87 typedef hb_codepoint_t                (*hb_unicode_get_mirroring_func_t)        (hb_unicode_funcs_t *ufuncs,
88                                                                                  hb_codepoint_t      unicode,
89                                                                                  void               *user_data);
90 typedef hb_script_t                   (*hb_unicode_get_script_func_t)           (hb_unicode_funcs_t *ufuncs,
91                                                                                  hb_codepoint_t      unicode,
92                                                                                  void               *user_data);
93
94 /* setters */
95
96 void
97 hb_unicode_funcs_set_combining_class_func (hb_unicode_funcs_t *ufuncs,
98                                            hb_unicode_get_combining_class_func_t combining_class_func,
99                                            void *user_data, hb_destroy_func_t destroy);
100
101 void
102 hb_unicode_funcs_set_eastasian_width_func (hb_unicode_funcs_t *ufuncs,
103                                            hb_unicode_get_eastasian_width_func_t eastasian_width_func,
104                                            void *user_data, hb_destroy_func_t destroy);
105
106 void
107 hb_unicode_funcs_set_general_category_func (hb_unicode_funcs_t *ufuncs,
108                                             hb_unicode_get_general_category_func_t general_category_func,
109                                             void *user_data, hb_destroy_func_t destroy);
110
111 void
112 hb_unicode_funcs_set_mirroring_func (hb_unicode_funcs_t *ufuncs,
113                                      hb_unicode_get_mirroring_func_t mirroring_func,
114                                      void *user_data, hb_destroy_func_t destroy);
115
116 void
117 hb_unicode_funcs_set_script_func (hb_unicode_funcs_t *ufuncs,
118                                   hb_unicode_get_script_func_t script_func,
119                                   void *user_data, hb_destroy_func_t destroy);
120
121
122
123 /* accessors */
124
125 unsigned int
126 hb_unicode_get_combining_class (hb_unicode_funcs_t *ufuncs,
127                                 hb_codepoint_t unicode);
128
129 unsigned int
130 hb_unicode_get_eastasian_width (hb_unicode_funcs_t *ufuncs,
131                                 hb_codepoint_t unicode);
132
133 hb_unicode_general_category_t
134 hb_unicode_get_general_category (hb_unicode_funcs_t *ufuncs,
135                                  hb_codepoint_t unicode);
136
137 hb_codepoint_t
138 hb_unicode_get_mirroring (hb_unicode_funcs_t *ufuncs,
139                           hb_codepoint_t unicode);
140
141 hb_script_t
142 hb_unicode_get_script (hb_unicode_funcs_t *ufuncs,
143                        hb_codepoint_t unicode);
144
145
146 HB_END_DECLS
147
148 #endif /* HB_UNICODE_H */