2b0ec99d780cf35f730dd6043db21b9ad12f3edc
[framework/uifw/harfbuzz.git] / src / hb-unicode-private.hh
1 /*
2  * Copyright © 2009  Red Hat, Inc.
3  * Copyright © 2011  Codethink Limited
4  * Copyright © 2010,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_PRIVATE_HH
32 #define HB_UNICODE_PRIVATE_HH
33
34 #include "hb-private.hh"
35
36 #include "hb-unicode.h"
37 #include "hb-object-private.hh"
38
39 HB_BEGIN_DECLS
40
41
42 /*
43  * hb_unicode_funcs_t
44  */
45
46 #define HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS \
47   HB_UNICODE_FUNC_IMPLEMENT (combining_class) \
48   HB_UNICODE_FUNC_IMPLEMENT (eastasian_width) \
49   HB_UNICODE_FUNC_IMPLEMENT (general_category) \
50   HB_UNICODE_FUNC_IMPLEMENT (mirroring) \
51   HB_UNICODE_FUNC_IMPLEMENT (script) \
52   HB_UNICODE_FUNC_IMPLEMENT (compose) \
53   HB_UNICODE_FUNC_IMPLEMENT (decompose) \
54   /* ^--- Add new callbacks here */
55
56 /* Simple callbacks are those taking a hb_codepoint_t and returning a hb_codepoint_t */
57 #define HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS_SIMPLE \
58   HB_UNICODE_FUNC_IMPLEMENT (unsigned int, combining_class) \
59   HB_UNICODE_FUNC_IMPLEMENT (unsigned int, eastasian_width) \
60   HB_UNICODE_FUNC_IMPLEMENT (hb_unicode_general_category_t, general_category) \
61   HB_UNICODE_FUNC_IMPLEMENT (hb_codepoint_t, mirroring) \
62   HB_UNICODE_FUNC_IMPLEMENT (hb_script_t, script) \
63   /* ^--- Add new simple callbacks here */
64
65 struct _hb_unicode_funcs_t {
66   hb_object_header_t header;
67
68   hb_unicode_funcs_t *parent;
69
70   bool immutable;
71
72   /* Don't access these directly.  Call hb_unicode_*() instead. */
73
74   struct {
75 #define HB_UNICODE_FUNC_IMPLEMENT(name) hb_unicode_##name##_func_t name;
76     HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS
77 #undef HB_UNICODE_FUNC_IMPLEMENT
78   } func;
79
80   struct {
81 #define HB_UNICODE_FUNC_IMPLEMENT(name) void *name;
82     HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS
83 #undef HB_UNICODE_FUNC_IMPLEMENT
84   } user_data;
85
86   struct {
87 #define HB_UNICODE_FUNC_IMPLEMENT(name) hb_destroy_func_t name;
88     HB_UNICODE_FUNCS_IMPLEMENT_CALLBACKS
89 #undef HB_UNICODE_FUNC_IMPLEMENT
90   } destroy;
91 };
92
93
94 #if HAVE_GLIB
95 extern HB_INTERNAL hb_unicode_funcs_t _hb_glib_unicode_funcs;
96 #define _hb_unicode_funcs_default _hb_glib_unicode_funcs
97 #elif HAVE_ICU
98 extern HB_INTERNAL hb_unicode_funcs_t _hb_icu_unicode_funcs;
99 #define _hb_unicode_funcs_default _hb_icu_unicode_funcs
100 #else
101 extern HB_INTERNAL hb_unicode_funcs_t _hb_unicode_funcs_nil;
102 #define _hb_unicode_funcs_default _hb_unicode_funcs_nil
103 #endif
104
105
106
107 HB_END_DECLS
108
109 #endif /* HB_UNICODE_PRIVATE_HH */