2 * Copyright (C) 1998-2004 David Turner and Werner Lemberg
3 * Copyright (C) 2006 Behdad Esfahbod
5 * This is part of HarfBuzz, an OpenType Layout engine library.
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.
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
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.
26 #ifndef HARFBUZZ_GDEF_PRIVATE_H
27 #define HARFBUZZ_GDEF_PRIVATE_H
29 #include "harfbuzz-impl.h"
30 #include "harfbuzz-stream-private.h"
31 #include "harfbuzz-buffer-private.h"
32 #include "harfbuzz-gdef.h"
37 #ifdef HB_USE_PACKED_STRUCTS
41 /* Attachment related structures */
43 struct HB_AttachPoint_
45 HB_UShort
* PointIndex
; /* array of contour points */
46 HB_UShort PointCount
; /* size of the PointIndex array */
49 /* Ligature Caret related structures */
51 struct HB_CaretValueFormat1_
53 HB_Short Coordinate
; /* x or y value (in design units) */
56 typedef struct HB_CaretValueFormat1_ HB_CaretValueFormat1
;
59 struct HB_CaretValueFormat2_
61 HB_UShort CaretValuePoint
; /* contour point index on glyph */
64 typedef struct HB_CaretValueFormat2_ HB_CaretValueFormat2
;
67 struct HB_CaretValueFormat3_
69 HB_Device
* Device
; /* Device table for x or y value */
70 HB_Short Coordinate
; /* x or y value (in design units) */
73 typedef struct HB_CaretValueFormat3_ HB_CaretValueFormat3
;
76 #ifdef HB_SUPPORT_MULTIPLE_MASTER
77 struct HB_CaretValueFormat4_
79 HB_UShort IdCaretValue
; /* metric ID */
82 typedef struct HB_CaretValueFormat4_ HB_CaretValueFormat4
;
90 HB_CaretValueFormat1 cvf1
;
91 HB_CaretValueFormat2 cvf2
;
92 HB_CaretValueFormat3 cvf3
;
93 #ifdef HB_SUPPORT_MULTIPLE_MASTER
94 HB_CaretValueFormat4 cvf4
;
98 HB_Byte CaretValueFormat
; /* 1, 2, 3, or 4 */
101 typedef struct HB_CaretValue_ HB_CaretValue
;
106 HB_CaretValue
* CaretValue
; /* array of caret values */
107 HB_UShort CaretCount
; /* number of caret values */
113 _HB_GDEF_Add_Glyph_Property( HB_GDEFHeader
* gdef
,
115 HB_UShort property
);
118 _HB_GDEF_Check_Property( HB_GDEFHeader
* gdef
,
121 HB_UShort
* property
);
124 _HB_GDEF_LoadMarkAttachClassDef_From_LookupFlags( HB_GDEFHeader
* gdef
,
127 HB_UShort num_lookups
);
129 #ifdef HB_USE_PACKED_STRUCTS
135 #endif /* HARFBUZZ_GDEF_PRIVATE_H */