hb-aat.h 2.2 KB
Newer Older
E
Ebrahim Byagowi 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright © 2018  Ebrahim Byagowi
 *
 *  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.
 */

E
Ebrahim Byagowi 已提交
25 26 27 28 29 30
#ifndef HB_OT_H_IN
#error "Include <hb-ot.h> instead."
#endif

#ifndef HB_AAT_H
#define HB_AAT_H
E
Ebrahim Byagowi 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

#include "hb.h"
#include "hb-ot.h"

HB_BEGIN_DECLS

/**
 * hb_aat_type_t:
 *
 * Feature identifier
 *
 * Since: REPLACEME
 */
typedef uint16_t hb_aat_feature_type_t;

/**
 * hb_aat_feature_t:
 *
 * Feature value
 *
 * Since: REPLACEME
 */
typedef uint16_t hb_aat_feature_setting_t;

/**
56
 * hb_aat_feature_type_selector_t:
E
Ebrahim Byagowi 已提交
57 58 59 60 61
 *
 * Feature type record
 *
 * Since: REPLACEME
 **/
62
typedef struct hb_aat_feature_type_selector_t
E
Ebrahim Byagowi 已提交
63 64 65
{
  hb_aat_feature_setting_t setting;
  hb_ot_name_id_t name_id;
66
} hb_aat_feature_type_selector_t;
E
Ebrahim Byagowi 已提交
67

E
Ebrahim Byagowi 已提交
68 69 70
/*
 * Since: REPLACEME
 */
71
#define HB_AAT_FEATURE_NO_DEFAULT_SETTING ((hb_aat_feature_setting_t) -1)
E
Ebrahim Byagowi 已提交
72

E
Ebrahim Byagowi 已提交
73
HB_EXTERN unsigned int
E
Ebrahim Byagowi 已提交
74 75 76 77 78 79
hb_aat_layout_get_feature_settings (hb_face_t                      *face,
				    hb_aat_feature_type_t           type,
				    hb_aat_feature_setting_t       *default_setting, /* OUT.     May be NULL. */
				    unsigned int                    start_offset,
				    unsigned int                   *records_count,   /* IN/OUT.  May be NULL. */
				    hb_aat_feature_type_selector_t *records_buffer   /* OUT.     May be NULL. */);
E
Ebrahim Byagowi 已提交
80 81 82

HB_END_DECLS

E
Ebrahim Byagowi 已提交
83
#endif /* HB_AAT_H */