2017-08-18 01:55:54 +02:00
|
|
|
/*
|
|
|
|
* Copyright © 2017 Google, Inc.
|
|
|
|
*
|
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#ifndef HB_AAT_LAYOUT_HH
|
|
|
|
#define HB_AAT_LAYOUT_HH
|
2017-08-18 01:55:54 +02:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb.hh"
|
2017-08-18 01:55:54 +02:00
|
|
|
|
2018-10-10 04:35:22 +02:00
|
|
|
#include "hb-ot-shape.hh"
|
2019-04-22 20:31:23 +02:00
|
|
|
#include "hb-aat-ltag-table.hh"
|
2017-08-18 01:55:54 +02:00
|
|
|
|
2018-10-14 00:37:14 +02:00
|
|
|
struct hb_aat_feature_mapping_t
|
|
|
|
{
|
|
|
|
hb_tag_t otFeatureTag;
|
2018-11-01 19:08:54 +01:00
|
|
|
hb_aat_layout_feature_type_t aatFeatureType;
|
2018-11-23 09:35:06 +01:00
|
|
|
hb_aat_layout_feature_selector_t selectorToEnable;
|
|
|
|
hb_aat_layout_feature_selector_t selectorToDisable;
|
2018-10-14 00:37:14 +02:00
|
|
|
|
2019-04-12 23:50:03 +02:00
|
|
|
HB_INTERNAL static int cmp (const void *key_, const void *entry_)
|
2018-10-14 00:37:14 +02:00
|
|
|
{
|
|
|
|
hb_tag_t key = * (unsigned int *) key_;
|
|
|
|
const hb_aat_feature_mapping_t * entry = (const hb_aat_feature_mapping_t *) entry_;
|
|
|
|
return key < entry->otFeatureTag ? -1 :
|
|
|
|
key > entry->otFeatureTag ? 1 :
|
|
|
|
0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
HB_INTERNAL const hb_aat_feature_mapping_t *
|
|
|
|
hb_aat_layout_find_feature_mapping (hb_tag_t tag);
|
|
|
|
|
2018-10-23 23:14:03 +02:00
|
|
|
HB_INTERNAL void
|
|
|
|
hb_aat_layout_compile_map (const hb_aat_map_builder_t *mapper,
|
|
|
|
hb_aat_map_t *map);
|
2018-10-14 00:37:14 +02:00
|
|
|
|
2018-01-09 17:55:17 +01:00
|
|
|
HB_INTERNAL void
|
2018-11-14 20:49:34 +01:00
|
|
|
hb_aat_layout_substitute (const hb_ot_shape_plan_t *plan,
|
2018-10-10 04:35:22 +02:00
|
|
|
hb_font_t *font,
|
|
|
|
hb_buffer_t *buffer);
|
2018-01-09 17:55:17 +01:00
|
|
|
|
2018-11-07 23:19:21 +01:00
|
|
|
HB_INTERNAL void
|
|
|
|
hb_aat_layout_zero_width_deleted_glyphs (hb_buffer_t *buffer);
|
|
|
|
|
|
|
|
HB_INTERNAL void
|
|
|
|
hb_aat_layout_remove_deleted_glyphs (hb_buffer_t *buffer);
|
|
|
|
|
2018-02-24 10:19:42 +01:00
|
|
|
HB_INTERNAL void
|
2018-11-14 20:49:34 +01:00
|
|
|
hb_aat_layout_position (const hb_ot_shape_plan_t *plan,
|
2018-10-10 04:35:22 +02:00
|
|
|
hb_font_t *font,
|
|
|
|
hb_buffer_t *buffer);
|
2018-02-24 10:19:42 +01:00
|
|
|
|
2018-10-11 17:10:06 +02:00
|
|
|
HB_INTERNAL void
|
2018-11-14 20:49:34 +01:00
|
|
|
hb_aat_layout_track (const hb_ot_shape_plan_t *plan,
|
2018-10-11 17:10:06 +02:00
|
|
|
hb_font_t *font,
|
|
|
|
hb_buffer_t *buffer);
|
|
|
|
|
2019-04-22 20:31:23 +02:00
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#endif /* HB_AAT_LAYOUT_HH */
|