2010-05-21 16:12:52 +02:00
|
|
|
/*
|
2012-04-12 20:53:53 +02:00
|
|
|
* Copyright © 2012 Google, Inc.
|
2010-05-21 16:12:52 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2012-04-12 20:53:53 +02:00
|
|
|
* Google Author(s): Behdad Esfahbod
|
2010-05-21 16:12:52 +02:00
|
|
|
*/
|
|
|
|
|
2021-02-10 22:37:43 +01:00
|
|
|
#if !defined(HB_H_IN) && !defined(HB_NO_SINGLE_HEADER_ERROR)
|
2012-11-16 03:39:46 +01:00
|
|
|
#error "Include <hb.h> instead."
|
|
|
|
#endif
|
|
|
|
|
2012-07-26 23:34:25 +02:00
|
|
|
#ifndef HB_SHAPE_PLAN_H
|
|
|
|
#define HB_SHAPE_PLAN_H
|
|
|
|
|
2012-11-16 03:39:46 +01:00
|
|
|
#include "hb-common.h"
|
|
|
|
#include "hb-font.h"
|
2012-07-26 23:34:25 +02:00
|
|
|
|
2012-11-16 03:39:46 +01:00
|
|
|
HB_BEGIN_DECLS
|
2012-07-26 23:34:25 +02:00
|
|
|
|
2019-04-22 20:17:40 +02:00
|
|
|
/**
|
|
|
|
* hb_shape_plan_t:
|
|
|
|
*
|
|
|
|
* Data type for holding a shaping plan.
|
|
|
|
*
|
|
|
|
* Shape plans contain information about how HarfBuzz will shape a
|
|
|
|
* particular text segment, based on the segment's properties and the
|
|
|
|
* capabilities in the font face in use.
|
|
|
|
*
|
|
|
|
* Shape plans can be queried about how shaping will perform, given a set
|
|
|
|
* of specific input parameters (script, language, direction, features,
|
|
|
|
* etc.).
|
|
|
|
*
|
|
|
|
**/
|
2012-11-16 03:39:46 +01:00
|
|
|
typedef struct hb_shape_plan_t hb_shape_plan_t;
|
2012-07-26 23:34:25 +02:00
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN hb_shape_plan_t *
|
2012-07-26 23:34:25 +02:00
|
|
|
hb_shape_plan_create (hb_face_t *face,
|
|
|
|
const hb_segment_properties_t *props,
|
|
|
|
const hb_feature_t *user_features,
|
|
|
|
unsigned int num_user_features,
|
|
|
|
const char * const *shaper_list);
|
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN hb_shape_plan_t *
|
2012-07-27 10:02:38 +02:00
|
|
|
hb_shape_plan_create_cached (hb_face_t *face,
|
|
|
|
const hb_segment_properties_t *props,
|
|
|
|
const hb_feature_t *user_features,
|
|
|
|
unsigned int num_user_features,
|
|
|
|
const char * const *shaper_list);
|
|
|
|
|
2016-09-10 12:57:24 +02:00
|
|
|
HB_EXTERN hb_shape_plan_t *
|
|
|
|
hb_shape_plan_create2 (hb_face_t *face,
|
|
|
|
const hb_segment_properties_t *props,
|
|
|
|
const hb_feature_t *user_features,
|
|
|
|
unsigned int num_user_features,
|
|
|
|
const int *coords,
|
|
|
|
unsigned int num_coords,
|
|
|
|
const char * const *shaper_list);
|
|
|
|
|
|
|
|
HB_EXTERN hb_shape_plan_t *
|
|
|
|
hb_shape_plan_create_cached2 (hb_face_t *face,
|
|
|
|
const hb_segment_properties_t *props,
|
|
|
|
const hb_feature_t *user_features,
|
|
|
|
unsigned int num_user_features,
|
|
|
|
const int *coords,
|
|
|
|
unsigned int num_coords,
|
|
|
|
const char * const *shaper_list);
|
|
|
|
|
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN hb_shape_plan_t *
|
2012-07-26 23:34:25 +02:00
|
|
|
hb_shape_plan_get_empty (void);
|
2010-05-21 16:12:52 +02:00
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN hb_shape_plan_t *
|
2012-07-26 23:34:25 +02:00
|
|
|
hb_shape_plan_reference (hb_shape_plan_t *shape_plan);
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN void
|
2012-07-26 23:34:25 +02:00
|
|
|
hb_shape_plan_destroy (hb_shape_plan_t *shape_plan);
|
2010-05-21 16:12:52 +02:00
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN hb_bool_t
|
2012-11-16 03:39:46 +01:00
|
|
|
hb_shape_plan_set_user_data (hb_shape_plan_t *shape_plan,
|
|
|
|
hb_user_data_key_t *key,
|
|
|
|
void * data,
|
|
|
|
hb_destroy_func_t destroy,
|
|
|
|
hb_bool_t replace);
|
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN void *
|
2012-11-16 03:39:46 +01:00
|
|
|
hb_shape_plan_get_user_data (hb_shape_plan_t *shape_plan,
|
|
|
|
hb_user_data_key_t *key);
|
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN hb_bool_t
|
2012-11-16 03:39:46 +01:00
|
|
|
hb_shape_plan_execute (hb_shape_plan_t *shape_plan,
|
2012-07-27 07:13:53 +02:00
|
|
|
hb_font_t *font,
|
|
|
|
hb_buffer_t *buffer,
|
|
|
|
const hb_feature_t *features,
|
|
|
|
unsigned int num_features);
|
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN const char *
|
2012-11-16 22:23:37 +01:00
|
|
|
hb_shape_plan_get_shaper (hb_shape_plan_t *shape_plan);
|
2012-11-16 03:39:46 +01:00
|
|
|
|
|
|
|
|
|
|
|
HB_END_DECLS
|
2012-07-27 07:13:53 +02:00
|
|
|
|
2012-07-26 23:34:25 +02:00
|
|
|
#endif /* HB_SHAPE_PLAN_H */
|