Prefer C linkage
[profile/ivi/org.tizen.video-player.git] / src / hb-ot-head-private.hh
1 /*
2  * Copyright (C) 2010  Red Hat, Inc.
3  *
4  *  This is part of HarfBuzz, a text shaping library.
5  *
6  * Permission is hereby granted, without written agreement and without
7  * license or royalty fees, to use, copy, modify, and distribute this
8  * software and its documentation for any purpose, provided that the
9  * above copyright notice and the following two paragraphs appear in
10  * all copies of this software.
11  *
12  * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13  * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14  * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15  * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16  * DAMAGE.
17  *
18  * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19  * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20  * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
21  * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22  * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23  *
24  * Red Hat Author(s): Behdad Esfahbod
25  */
26
27 #ifndef HB_OT_HEAD_PRIVATE_HH
28 #define HB_OT_HEAD_PRIVATE_HH
29
30 #include "hb-open-type-private.hh"
31
32 HB_BEGIN_DECLS
33
34
35 /*
36  * head
37  */
38
39 #define HB_OT_TAG_head HB_TAG('h','e','a','d')
40
41 struct head
42 {
43   static const hb_tag_t Tag     = HB_OT_TAG_head;
44
45   inline bool sanitize (hb_sanitize_context_t *c) {
46     TRACE_SANITIZE ();
47     /* Shall we check for magicNumber here?  Who cares? */
48     return c->check_struct (this) && likely (version.major == 1);
49   }
50
51   FixedVersion  version;                /* Version of the head table--currently
52                                          * 0x00010000 for version 1.0. */
53   FixedVersion  fontRevision;           /* Set by font manufacturer. */
54   ULONG         checkSumAdjustment;     /* To compute: set it to 0, sum the
55                                          * entire font as ULONG, then store
56                                          * 0xB1B0AFBA - sum. */
57   ULONG         magicNumber;            /* Set to 0x5F0F3CF5. */
58   USHORT        flags;                  /* Bit 0: Baseline for font at y=0;
59                                          * Bit 1: Left sidebearing point at x=0;
60                                          * Bit 2: Instructions may depend on point size;
61                                          * Bit 3: Force ppem to integer values for all
62                                          *   internal scaler math; may use fractional
63                                          *   ppem sizes if this bit is clear;
64                                          * Bit 4: Instructions may alter advance width
65                                          *   (the advance widths might not scale linearly);
66
67                                          * Bits 5-10: These should be set according to
68                                          *   Apple's specification. However, they are not
69                                          *   implemented in OpenType.
70                                          * Bit 5: This bit should be set in fonts that are
71                                          *   intended to e laid out vertically, and in
72                                          *   which the glyphs have been drawn such that an
73                                          *   x-coordinate of 0 corresponds to the desired
74                                          *   vertical baseline.
75                                          * Bit 6: This bit must be set to zero.
76                                          * Bit 7: This bit should be set if the font
77                                          *   requires layout for correct linguistic
78                                          *   rendering (e.g. Arabic fonts).
79                                          * Bit 8: This bit should be set for a GX font
80                                          *   which has one or more metamorphosis effects
81                                          *   designated as happening by default.
82                                          * Bit 9: This bit should be set if the font
83                                          *   contains any strong right-to-left glyphs.
84                                          * Bit 10: This bit should be set if the font
85                                          *   contains Indic-style rearrangement effects.
86
87                                          * Bit 11: Font data is 'lossless,' as a result
88                                          *   of having been compressed and decompressed
89                                          *   with the Agfa MicroType Express engine.
90                                          * Bit 12: Font converted (produce compatible metrics)
91                                          * Bit 13: Font optimized for ClearType™.
92                                          *   Note, fonts that rely on embedded bitmaps (EBDT)
93                                          *   for rendering should not be considered optimized
94                                          *   for ClearType, and therefore should keep this bit
95                                          *   cleared.
96                                          * Bit 14: Reserved, set to 0
97                                          * Bit 15: Reserved, set to 0. */
98   USHORT        unitsPerEm;             /* Valid range is from 16 to 16384. This value
99                                          * should be a power of 2 for fonts that have
100                                          * TrueType outlines. */
101   LONGDATETIME  created;                /* Number of seconds since 12:00 midnight,
102                                            January 1, 1904. 64-bit integer */
103   LONGDATETIME  modified;               /* Number of seconds since 12:00 midnight,
104                                            January 1, 1904. 64-bit integer */
105   SHORT         xMin;                   /* For all glyph bounding boxes. */
106   SHORT         yMin;                   /* For all glyph bounding boxes. */
107   SHORT         xMax;                   /* For all glyph bounding boxes. */
108   SHORT         yMax;                   /* For all glyph bounding boxes. */
109   USHORT        macStyle;               /* Bit 0: Bold (if set to 1);
110                                          * Bit 1: Italic (if set to 1)
111                                          * Bit 2: Underline (if set to 1)
112                                          * Bit 3: Outline (if set to 1)
113                                          * Bit 4: Shadow (if set to 1)
114                                          * Bit 5: Condensed (if set to 1)
115                                          * Bit 6: Extended (if set to 1)
116                                          * Bits 7-15: Reserved (set to 0). */
117   USHORT        lowestRecPPEM;          /* Smallest readable size in pixels. */
118   SHORT         fontDirectionHint;      /* Deprecated (Set to 2).
119                                          * 0: Fully mixed directional glyphs;
120                                          * 1: Only strongly left to right;
121                                          * 2: Like 1 but also contains neutrals;
122                                          * -1: Only strongly right to left;
123                                          * -2: Like -1 but also contains neutrals. */
124   SHORT         indexToLocFormat;       /* 0 for short offsets, 1 for long. */
125   SHORT         glyphDataFormat;        /* 0 for current format. */
126   public:
127   DEFINE_SIZE_STATIC (54);
128 };
129
130
131 HB_END_DECLS
132
133 #endif /* HB_OT_HEAD_PRIVATE_HH */