2008-01-23 22:14:38 +01:00
|
|
|
/*
|
2009-05-17 11:14:33 +02:00
|
|
|
* Copyright (C) 2007,2008,2009 Red Hat, Inc.
|
2008-01-23 22:14:38 +01:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2008-01-23 22:14:38 +01:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, without written agreement and without
|
|
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
|
|
* software and its documentation for any purpose, provided that the
|
|
|
|
* above copyright notice and the following two paragraphs appear in
|
|
|
|
* all copies of this software.
|
|
|
|
*
|
|
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
|
|
* DAMAGE.
|
|
|
|
*
|
|
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#ifndef HB_OT_LAYOUT_GDEF_PRIVATE_HH
|
|
|
|
#define HB_OT_LAYOUT_GDEF_PRIVATE_HH
|
2006-12-28 12:42:37 +01:00
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#include "hb-ot-layout-common-private.hh"
|
2006-12-28 12:42:37 +01:00
|
|
|
|
2010-05-13 00:23:21 +02:00
|
|
|
#include "hb-font-private.hh"
|
2009-08-04 03:40:20 +02:00
|
|
|
|
2008-01-23 21:50:38 +01:00
|
|
|
|
2008-01-23 10:36:40 +01:00
|
|
|
/*
|
|
|
|
* Attachment List Table
|
|
|
|
*/
|
2007-07-06 17:29:21 +02:00
|
|
|
|
2009-05-23 00:54:24 +02:00
|
|
|
typedef ArrayOf<USHORT> AttachPoint; /* Array of contour point indices--in
|
2008-01-23 10:36:40 +01:00
|
|
|
* increasing numerical order */
|
2008-01-23 06:20:48 +01:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct AttachList
|
|
|
|
{
|
2009-11-04 22:36:14 +01:00
|
|
|
inline unsigned int get_attach_points (hb_codepoint_t glyph_id,
|
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *point_count /* IN/OUT */,
|
|
|
|
unsigned int *point_array /* OUT */) const
|
2009-05-26 18:00:28 +02:00
|
|
|
{
|
2009-05-26 18:24:16 +02:00
|
|
|
unsigned int index = (this+coverage) (glyph_id);
|
2009-05-26 18:40:10 +02:00
|
|
|
if (index == NOT_COVERED)
|
|
|
|
{
|
2009-11-04 22:36:14 +01:00
|
|
|
if (point_count)
|
|
|
|
*point_count = 0;
|
|
|
|
return 0;
|
2009-05-26 18:40:10 +02:00
|
|
|
}
|
2009-11-04 22:36:14 +01:00
|
|
|
|
2009-05-26 18:24:16 +02:00
|
|
|
const AttachPoint &points = this+attachPoint[index];
|
|
|
|
|
2009-11-04 22:36:14 +01:00
|
|
|
if (point_count) {
|
2010-04-22 06:27:39 +02:00
|
|
|
const USHORT *array = points.sub_array (start_offset, point_count);
|
2009-11-04 22:59:50 +01:00
|
|
|
unsigned int count = *point_count;
|
2009-11-04 22:36:14 +01:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
point_array[i] = array[i];
|
|
|
|
}
|
2009-05-26 18:40:10 +02:00
|
|
|
|
2009-11-04 22:36:14 +01:00
|
|
|
return points.len;
|
2009-05-26 18:00:28 +02:00
|
|
|
}
|
2007-07-06 17:29:21 +02:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& attachPoint.sanitize (c, this);
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2009-05-26 18:00:28 +02:00
|
|
|
private:
|
2009-05-17 06:15:51 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table -- from
|
2007-07-06 17:29:21 +02:00
|
|
|
* beginning of AttachList table */
|
2009-05-17 06:54:25 +02:00
|
|
|
OffsetArrayOf<AttachPoint>
|
|
|
|
attachPoint; /* Array of AttachPoint tables
|
|
|
|
* in Coverage Index order */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (4, attachPoint);
|
2007-07-06 17:29:21 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ligature Caret Table
|
|
|
|
*/
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct CaretValueFormat1
|
|
|
|
{
|
2008-01-24 00:02:28 +01:00
|
|
|
friend struct CaretValue;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline int get_caret_value (hb_ot_layout_context_t *c, hb_codepoint_t glyph_id HB_UNUSED) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-07 00:34:47 +02:00
|
|
|
/* TODO vertical */
|
2010-05-19 21:45:06 +02:00
|
|
|
return c->scale_x (coordinate);
|
2007-07-06 17:29:21 +02:00
|
|
|
}
|
2008-01-23 06:20:48 +01:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return c->check_struct (this);
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 06:20:48 +01:00
|
|
|
private:
|
|
|
|
USHORT caretValueFormat; /* Format identifier--format = 1 */
|
|
|
|
SHORT coordinate; /* X or Y value, in design units */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
2007-07-06 17:29:21 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct CaretValueFormat2
|
|
|
|
{
|
2008-01-24 00:02:28 +01:00
|
|
|
friend struct CaretValue;
|
|
|
|
|
|
|
|
private:
|
2010-05-13 20:18:49 +02:00
|
|
|
inline int get_caret_value (hb_ot_layout_context_t *c, hb_codepoint_t glyph_id) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2010-04-29 09:47:00 +02:00
|
|
|
/* TODO vertical */
|
2010-04-29 09:59:06 +02:00
|
|
|
hb_position_t x, y;
|
2010-05-13 20:18:49 +02:00
|
|
|
if (hb_font_get_contour_point (c->font, c->face, caretValuePoint, glyph_id, &x, &y))
|
2010-04-29 09:59:06 +02:00
|
|
|
return x;
|
|
|
|
else
|
|
|
|
return 0;
|
2007-07-06 17:29:21 +02:00
|
|
|
}
|
2008-01-23 06:20:48 +01:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return c->check_struct (this);
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 06:20:48 +01:00
|
|
|
private:
|
|
|
|
USHORT caretValueFormat; /* Format identifier--format = 2 */
|
|
|
|
USHORT caretValuePoint; /* Contour point index on glyph */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
2007-07-06 17:29:21 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct CaretValueFormat3
|
|
|
|
{
|
2008-01-24 00:02:28 +01:00
|
|
|
friend struct CaretValue;
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline int get_caret_value (hb_ot_layout_context_t *c, hb_codepoint_t glyph_id HB_UNUSED) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-08-07 00:34:47 +02:00
|
|
|
/* TODO vertical */
|
2010-05-20 18:44:52 +02:00
|
|
|
return c->scale_x (coordinate) + ((this+deviceTable).get_x_delta (c));
|
2008-01-23 06:20:48 +01:00
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return c->check_struct (this)
|
|
|
|
&& deviceTable.sanitize (c, this);
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 06:20:48 +01:00
|
|
|
private:
|
2007-07-06 17:29:21 +02:00
|
|
|
USHORT caretValueFormat; /* Format identifier--format = 3 */
|
|
|
|
SHORT coordinate; /* X or Y value, in design units */
|
2009-05-20 06:00:09 +02:00
|
|
|
OffsetTo<Device>
|
|
|
|
deviceTable; /* Offset to Device table for X or Y
|
2007-07-06 17:29:21 +02:00
|
|
|
* value--from beginning of CaretValue
|
|
|
|
* table */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (6);
|
2007-07-06 17:29:21 +02:00
|
|
|
};
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct CaretValue
|
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
inline int get_caret_value (hb_ot_layout_context_t *c, hb_codepoint_t glyph_id) const
|
2009-05-20 05:58:54 +02:00
|
|
|
{
|
2009-05-18 01:47:54 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.get_caret_value (c, glyph_id);
|
|
|
|
case 2: return u.format2.get_caret_value (c, glyph_id);
|
|
|
|
case 3: return u.format3.get_caret_value (c, glyph_id);
|
2007-07-06 17:29:21 +02:00
|
|
|
default:return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!u.format.sanitize (c)) return false;
|
2009-08-04 20:33:23 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.sanitize (c);
|
|
|
|
case 2: return u.format2.sanitize (c);
|
|
|
|
case 3: return u.format3.sanitize (c);
|
2009-08-04 20:33:23 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-23 06:20:48 +01:00
|
|
|
private:
|
2007-07-06 17:29:21 +02:00
|
|
|
union {
|
2009-05-18 01:47:54 +02:00
|
|
|
USHORT format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
CaretValueFormat1 format1;
|
|
|
|
CaretValueFormat2 format2;
|
|
|
|
CaretValueFormat3 format3;
|
2007-07-06 17:29:21 +02:00
|
|
|
} u;
|
2010-05-11 00:08:46 +02:00
|
|
|
public:
|
2010-05-11 00:47:48 +02:00
|
|
|
DEFINE_SIZE_UNION (2, format);
|
2007-07-06 17:29:21 +02:00
|
|
|
};
|
2008-01-23 10:36:40 +01:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct LigGlyph
|
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
inline unsigned int get_lig_carets (hb_ot_layout_context_t *c,
|
2009-11-04 22:36:14 +01:00
|
|
|
hb_codepoint_t glyph_id,
|
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *caret_count /* IN/OUT */,
|
|
|
|
int *caret_array /* OUT */) const
|
2009-05-26 18:40:10 +02:00
|
|
|
{
|
2009-11-04 22:36:14 +01:00
|
|
|
if (caret_count) {
|
2010-04-22 06:27:39 +02:00
|
|
|
const OffsetTo<CaretValue> *array = carets.sub_array (start_offset, caret_count);
|
2009-11-04 22:59:50 +01:00
|
|
|
unsigned int count = *caret_count;
|
2009-11-04 22:36:14 +01:00
|
|
|
for (unsigned int i = 0; i < count; i++)
|
2010-05-13 20:18:49 +02:00
|
|
|
caret_array[i] = (this+array[i]).get_caret_value (c, glyph_id);
|
2009-11-04 22:36:14 +01:00
|
|
|
}
|
2009-05-26 18:40:10 +02:00
|
|
|
|
2009-11-04 22:36:14 +01:00
|
|
|
return carets.len;
|
2009-05-26 18:40:10 +02:00
|
|
|
}
|
2008-01-24 00:02:28 +01:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return carets.sanitize (c, this);
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
private:
|
2009-05-17 06:54:25 +02:00
|
|
|
OffsetArrayOf<CaretValue>
|
2009-08-15 00:32:56 +02:00
|
|
|
carets; /* Offset array of CaretValue tables
|
2009-05-23 00:54:24 +02:00
|
|
|
* --from beginning of LigGlyph table
|
|
|
|
* --in increasing coordinate order */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (2, carets);
|
2008-01-23 10:36:40 +01:00
|
|
|
};
|
2008-01-23 07:38:10 +01:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct LigCaretList
|
|
|
|
{
|
2010-05-13 20:18:49 +02:00
|
|
|
inline unsigned int get_lig_carets (hb_ot_layout_context_t *c,
|
2009-11-04 22:36:14 +01:00
|
|
|
hb_codepoint_t glyph_id,
|
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *caret_count /* IN/OUT */,
|
|
|
|
int *caret_array /* OUT */) const
|
2009-05-26 18:00:28 +02:00
|
|
|
{
|
2009-05-26 18:24:16 +02:00
|
|
|
unsigned int index = (this+coverage) (glyph_id);
|
2009-05-26 18:40:10 +02:00
|
|
|
if (index == NOT_COVERED)
|
|
|
|
{
|
2009-11-04 22:36:14 +01:00
|
|
|
if (caret_count)
|
|
|
|
*caret_count = 0;
|
|
|
|
return 0;
|
2009-05-26 18:40:10 +02:00
|
|
|
}
|
|
|
|
const LigGlyph &lig_glyph = this+ligGlyph[index];
|
2010-05-13 20:18:49 +02:00
|
|
|
return lig_glyph.get_lig_carets (c, glyph_id, start_offset, caret_count, caret_array);
|
2009-05-26 18:00:28 +02:00
|
|
|
}
|
2008-01-23 21:50:38 +01:00
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this)
|
|
|
|
&& ligGlyph.sanitize (c, this);
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2008-01-23 21:50:38 +01:00
|
|
|
private:
|
2009-05-17 06:15:51 +02:00
|
|
|
OffsetTo<Coverage>
|
|
|
|
coverage; /* Offset to Coverage table--from
|
2008-01-23 21:50:38 +01:00
|
|
|
* beginning of LigCaretList table */
|
2009-05-17 06:54:25 +02:00
|
|
|
OffsetArrayOf<LigGlyph>
|
|
|
|
ligGlyph; /* Array of LigGlyph tables
|
|
|
|
* in Coverage Index order */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (4, ligGlyph);
|
2008-01-23 21:50:38 +01:00
|
|
|
};
|
|
|
|
|
2009-05-26 21:38:53 +02:00
|
|
|
|
|
|
|
struct MarkGlyphSetsFormat1
|
|
|
|
{
|
|
|
|
inline bool covers (unsigned int set_index, hb_codepoint_t glyph_id) const
|
|
|
|
{ return (this+coverage[set_index]).get_coverage (glyph_id) != NOT_COVERED; }
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return coverage.sanitize (c, this);
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2009-05-26 21:38:53 +02:00
|
|
|
private:
|
|
|
|
USHORT format; /* Format identifier--format = 1 */
|
|
|
|
LongOffsetArrayOf<Coverage>
|
|
|
|
coverage; /* Array of long offsets to mark set
|
|
|
|
* coverage tables */
|
2010-05-10 22:57:29 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (4, coverage);
|
2009-05-26 21:38:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct MarkGlyphSets
|
|
|
|
{
|
|
|
|
inline bool covers (unsigned int set_index, hb_codepoint_t glyph_id) const
|
|
|
|
{
|
|
|
|
switch (u.format) {
|
2010-05-11 01:45:41 +02:00
|
|
|
case 1: return u.format1.covers (set_index, glyph_id);
|
2009-05-26 21:38:53 +02:00
|
|
|
default:return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
if (!u.format.sanitize (c)) return false;
|
2009-08-04 20:33:23 +02:00
|
|
|
switch (u.format) {
|
2010-05-13 20:18:49 +02:00
|
|
|
case 1: return u.format1.sanitize (c);
|
2009-08-04 20:33:23 +02:00
|
|
|
default:return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-26 21:38:53 +02:00
|
|
|
private:
|
|
|
|
union {
|
|
|
|
USHORT format; /* Format identifier */
|
2010-05-11 01:45:41 +02:00
|
|
|
MarkGlyphSetsFormat1 format1;
|
2009-05-26 21:38:53 +02:00
|
|
|
} u;
|
2010-05-11 00:08:46 +02:00
|
|
|
public:
|
2010-05-11 00:47:48 +02:00
|
|
|
DEFINE_SIZE_UNION (2, format);
|
2009-05-26 21:38:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2008-01-23 10:36:40 +01:00
|
|
|
/*
|
2008-01-23 23:25:29 +01:00
|
|
|
* GDEF
|
2008-01-23 10:36:40 +01:00
|
|
|
*/
|
2008-01-23 07:38:10 +01:00
|
|
|
|
2009-05-20 05:58:54 +02:00
|
|
|
struct GDEF
|
|
|
|
{
|
2009-08-05 02:27:05 +02:00
|
|
|
static const hb_tag_t Tag = HB_OT_TAG_GDEF;
|
2008-01-23 08:01:37 +01:00
|
|
|
|
2009-05-19 00:44:54 +02:00
|
|
|
enum {
|
|
|
|
UnclassifiedGlyph = 0,
|
|
|
|
BaseGlyph = 1,
|
|
|
|
LigatureGlyph = 2,
|
|
|
|
MarkGlyph = 3,
|
2009-08-18 22:41:59 +02:00
|
|
|
ComponentGlyph = 4
|
2009-05-19 00:44:54 +02:00
|
|
|
};
|
2008-01-24 12:03:45 +01:00
|
|
|
|
2009-05-17 06:09:20 +02:00
|
|
|
inline bool has_glyph_classes () const { return glyphClassDef != 0; }
|
2009-05-26 21:38:53 +02:00
|
|
|
inline hb_ot_layout_class_t get_glyph_class (hb_codepoint_t glyph) const
|
2009-05-26 18:24:16 +02:00
|
|
|
{ return (this+glyphClassDef).get_class (glyph); }
|
2008-01-23 07:38:10 +01:00
|
|
|
|
2009-05-17 06:09:20 +02:00
|
|
|
inline bool has_mark_attachment_types () const { return markAttachClassDef != 0; }
|
2009-05-26 21:38:53 +02:00
|
|
|
inline hb_ot_layout_class_t get_mark_attachment_type (hb_codepoint_t glyph) const
|
2009-05-26 18:24:16 +02:00
|
|
|
{ return (this+markAttachClassDef).get_class (glyph); }
|
|
|
|
|
|
|
|
inline bool has_attach_points () const { return attachList != 0; }
|
2009-11-04 22:36:14 +01:00
|
|
|
inline unsigned int get_attach_points (hb_codepoint_t glyph_id,
|
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *point_count /* IN/OUT */,
|
|
|
|
unsigned int *point_array /* OUT */) const
|
|
|
|
{ return (this+attachList).get_attach_points (glyph_id, start_offset, point_count, point_array); }
|
2008-01-23 07:38:10 +01:00
|
|
|
|
2009-05-26 18:24:16 +02:00
|
|
|
inline bool has_lig_carets () const { return ligCaretList != 0; }
|
2010-05-13 20:18:49 +02:00
|
|
|
inline unsigned int get_lig_carets (hb_ot_layout_context_t *c,
|
2009-11-04 22:36:14 +01:00
|
|
|
hb_codepoint_t glyph_id,
|
|
|
|
unsigned int start_offset,
|
|
|
|
unsigned int *caret_count /* IN/OUT */,
|
|
|
|
int *caret_array /* OUT */) const
|
2010-05-13 20:18:49 +02:00
|
|
|
{ return (this+ligCaretList).get_lig_carets (c, glyph_id, start_offset, caret_count, caret_array); }
|
2008-01-23 07:38:10 +01:00
|
|
|
|
2009-05-26 21:38:53 +02:00
|
|
|
inline bool has_mark_sets () const { return version >= 0x00010002 && markGlyphSetsDef[0] != 0; }
|
|
|
|
inline bool mark_set_covers (unsigned int set_index, hb_codepoint_t glyph_id) const
|
|
|
|
{ return version >= 0x00010002 && (this+markGlyphSetsDef[0]).covers (set_index, glyph_id); }
|
|
|
|
|
2010-05-13 20:18:49 +02:00
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) {
|
2009-08-28 23:17:11 +02:00
|
|
|
TRACE_SANITIZE ();
|
2010-05-13 20:18:49 +02:00
|
|
|
return version.sanitize (c) && likely (version.major == 1)
|
|
|
|
&& glyphClassDef.sanitize (c, this)
|
|
|
|
&& attachList.sanitize (c, this)
|
|
|
|
&& ligCaretList.sanitize (c, this)
|
|
|
|
&& markAttachClassDef.sanitize (c, this)
|
|
|
|
&& (version < 0x00010002 || markGlyphSetsDef[0].sanitize (c, this));
|
2009-08-04 20:33:23 +02:00
|
|
|
}
|
|
|
|
|
2009-05-17 06:22:37 +02:00
|
|
|
private:
|
2009-05-26 21:38:53 +02:00
|
|
|
FixedVersion version; /* Version of the GDEF table--currently
|
|
|
|
* 0x00010002 */
|
2009-05-17 06:09:20 +02:00
|
|
|
OffsetTo<ClassDef>
|
|
|
|
glyphClassDef; /* Offset to class definition table
|
2008-01-23 07:38:10 +01:00
|
|
|
* for glyph type--from beginning of
|
2008-01-23 10:36:40 +01:00
|
|
|
* GDEF header (may be Null) */
|
2009-05-17 06:09:20 +02:00
|
|
|
OffsetTo<AttachList>
|
|
|
|
attachList; /* Offset to list of glyphs with
|
2008-01-23 07:38:10 +01:00
|
|
|
* attachment points--from beginning
|
2008-01-23 10:36:40 +01:00
|
|
|
* of GDEF header (may be Null) */
|
2009-05-17 06:09:20 +02:00
|
|
|
OffsetTo<LigCaretList>
|
|
|
|
ligCaretList; /* Offset to list of positioning points
|
2008-01-23 07:38:10 +01:00
|
|
|
* for ligature carets--from beginning
|
2008-01-23 10:36:40 +01:00
|
|
|
* of GDEF header (may be Null) */
|
2009-05-17 06:09:20 +02:00
|
|
|
OffsetTo<ClassDef>
|
|
|
|
markAttachClassDef; /* Offset to class definition table for
|
2008-01-23 07:38:10 +01:00
|
|
|
* mark attachment type--from beginning
|
2008-01-23 10:36:40 +01:00
|
|
|
* of GDEF header (may be Null) */
|
2009-05-26 21:38:53 +02:00
|
|
|
OffsetTo<MarkGlyphSets>
|
2009-11-03 16:47:29 +01:00
|
|
|
markGlyphSetsDef[VAR]; /* Offset to the table of mark set
|
2009-05-26 21:38:53 +02:00
|
|
|
* definitions--from beginning of GDEF
|
|
|
|
* header (may be NULL). Introduced
|
|
|
|
* in version 00010002. */
|
2010-05-10 22:38:32 +02:00
|
|
|
public:
|
2010-05-11 01:01:17 +02:00
|
|
|
DEFINE_SIZE_ARRAY (12, markGlyphSetsDef);
|
2008-01-23 07:38:10 +01:00
|
|
|
};
|
|
|
|
|
2009-05-18 02:28:01 +02:00
|
|
|
|
2009-08-03 02:03:12 +02:00
|
|
|
#endif /* HB_OT_LAYOUT_GDEF_PRIVATE_HH */
|