blob: b665509a0ddf736f74e702d02e856fe3c55803f4 [file] [log] [blame]
Behdad Esfahbod15232e22009-08-13 17:13:25 -04001/*
Behdad Esfahbod2409d5f2011-04-21 17:14:28 -04002 * Copyright © 2009 Red Hat, Inc.
Behdad Esfahbode30ebd22012-09-06 22:09:06 -04003 * Copyright © 2012 Google, Inc.
Behdad Esfahbod15232e22009-08-13 17:13:25 -04004 *
Behdad Esfahbodc755cb32010-04-22 00:11:43 -04005 * This is part of HarfBuzz, a text shaping library.
Behdad Esfahbod15232e22009-08-13 17:13:25 -04006 *
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.
12 *
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
17 * DAMAGE.
18 *
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.
24 *
25 * Red Hat Author(s): Behdad Esfahbod
Behdad Esfahbode30ebd22012-09-06 22:09:06 -040026 * Google Author(s): Behdad Esfahbod
Behdad Esfahbod15232e22009-08-13 17:13:25 -040027 */
28
Behdad Esfahbodd1c9eb42012-04-12 13:17:44 -040029#ifndef HB_H_IN
30#error "Include <hb.h> instead."
31#endif
32
Behdad Esfahbod15232e22009-08-13 17:13:25 -040033#ifndef HB_SHAPE_H
34#define HB_SHAPE_H
35
36#include "hb-common.h"
37#include "hb-buffer.h"
38#include "hb-font.h"
39
40HB_BEGIN_DECLS
41
Behdad Esfahbodacdba3f2010-07-23 15:11:18 -040042
Behdad Esfahbod1bc1cb32012-06-16 15:21:55 -040043typedef struct hb_feature_t {
Behdad Esfahbod0db299c2010-05-20 13:30:09 +010044 hb_tag_t tag;
45 uint32_t value;
Behdad Esfahbod15232e22009-08-13 17:13:25 -040046 unsigned int start;
47 unsigned int end;
48} hb_feature_t;
49
Behdad Esfahbode30ebd22012-09-06 22:09:06 -040050hb_bool_t
51hb_feature_from_string (const char *str, int len,
52 hb_feature_t *feature);
53
Behdad Esfahbode30ebd22012-09-06 22:09:06 -040054void
55hb_feature_to_string (hb_feature_t *feature,
56 char *buf, unsigned int size);
57
Behdad Esfahbod02aeca92011-08-04 22:31:05 -040058
Behdad Esfahbod3ca6c4e2011-08-05 17:22:19 -040059void
Behdad Esfahbod02aeca92011-08-04 22:31:05 -040060hb_shape (hb_font_t *font,
61 hb_buffer_t *buffer,
62 const hb_feature_t *features,
Behdad Esfahbod3ca6c4e2011-08-05 17:22:19 -040063 unsigned int num_features);
64
65hb_bool_t
Behdad Esfahbod05015732011-08-10 16:25:56 +020066hb_shape_full (hb_font_t *font,
67 hb_buffer_t *buffer,
68 const hb_feature_t *features,
69 unsigned int num_features,
Behdad Esfahbod05015732011-08-10 16:25:56 +020070 const char * const *shaper_list);
Behdad Esfahbod15232e22009-08-13 17:13:25 -040071
Behdad Esfahbod9da55452011-08-05 19:48:49 -040072const char **
73hb_shape_list_shapers (void);
74
Behdad Esfahbod15232e22009-08-13 17:13:25 -040075
76HB_END_DECLS
77
78#endif /* HB_SHAPE_H */