2019-10-13 11:01:53 +02:00
|
|
|
/*
|
2020-01-10 18:14:15 +01:00
|
|
|
* Copyright © 2019-2020 Ebrahim Byagowi
|
2019-10-13 11:01:53 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "hb.hh"
|
|
|
|
|
2020-01-28 10:04:47 +01:00
|
|
|
#ifndef HB_NO_DRAW
|
2019-10-13 11:01:53 +02:00
|
|
|
|
2020-01-28 10:04:47 +01:00
|
|
|
#include "hb-draw.hh"
|
2019-10-13 11:01:53 +02:00
|
|
|
#include "hb-ot.h"
|
|
|
|
#include "hb-ot-glyf-table.hh"
|
2019-10-20 14:54:14 +02:00
|
|
|
#include "hb-ot-cff1-table.hh"
|
2019-10-21 11:36:12 +02:00
|
|
|
#include "hb-ot-cff2-table.hh"
|
2019-10-13 11:01:53 +02:00
|
|
|
|
2020-01-13 17:01:18 +01:00
|
|
|
/**
|
2020-01-28 10:04:47 +01:00
|
|
|
* hb_draw_funcs_set_move_to_func:
|
2020-01-13 17:01:18 +01:00
|
|
|
* @funcs: decompose functions object
|
|
|
|
* @move_to: move-to callback
|
|
|
|
*
|
|
|
|
* Sets move-to callback to the decompose functions object.
|
|
|
|
*
|
|
|
|
* Since: REPLACEME
|
|
|
|
**/
|
|
|
|
void
|
2020-01-28 10:04:47 +01:00
|
|
|
hb_draw_funcs_set_move_to_func (hb_draw_funcs_t *funcs,
|
|
|
|
hb_draw_move_to_func_t move_to)
|
2020-01-13 17:01:18 +01:00
|
|
|
{
|
2020-01-27 21:08:39 +01:00
|
|
|
if (unlikely (hb_object_is_immutable (funcs))) return;
|
2020-01-13 17:01:18 +01:00
|
|
|
funcs->move_to = move_to;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-28 10:04:47 +01:00
|
|
|
* hb_draw_funcs_set_line_to_func:
|
2020-01-13 17:01:18 +01:00
|
|
|
* @funcs: decompose functions object
|
|
|
|
* @line_to: line-to callback
|
|
|
|
*
|
|
|
|
* Sets line-to callback to the decompose functions object.
|
|
|
|
*
|
|
|
|
* Since: REPLACEME
|
|
|
|
**/
|
|
|
|
void
|
2020-01-28 10:04:47 +01:00
|
|
|
hb_draw_funcs_set_line_to_func (hb_draw_funcs_t *funcs,
|
|
|
|
hb_draw_line_to_func_t line_to)
|
2020-01-13 17:01:18 +01:00
|
|
|
{
|
2020-01-27 21:08:39 +01:00
|
|
|
if (unlikely (hb_object_is_immutable (funcs))) return;
|
2020-01-13 17:01:18 +01:00
|
|
|
funcs->line_to = line_to;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-28 11:15:22 +01:00
|
|
|
* hb_draw_funcs_set_quadratic_to_func:
|
2020-01-13 17:01:18 +01:00
|
|
|
* @funcs: decompose functions object
|
2020-01-28 10:04:47 +01:00
|
|
|
* @move_to: quadratic-to callback
|
2020-01-13 17:01:18 +01:00
|
|
|
*
|
2020-01-28 10:04:47 +01:00
|
|
|
* Sets quadratic-to callback to the decompose functions object.
|
2020-01-13 17:01:18 +01:00
|
|
|
*
|
|
|
|
* Since: REPLACEME
|
|
|
|
**/
|
|
|
|
void
|
2020-01-28 11:15:22 +01:00
|
|
|
hb_draw_funcs_set_quadratic_to_func (hb_draw_funcs_t *funcs,
|
|
|
|
hb_draw_quadratic_to_func_t quadratic_to)
|
2020-01-13 17:01:18 +01:00
|
|
|
{
|
2020-01-27 21:08:39 +01:00
|
|
|
if (unlikely (hb_object_is_immutable (funcs))) return;
|
2020-01-28 11:15:22 +01:00
|
|
|
funcs->quadratic_to = quadratic_to;
|
2020-01-13 17:01:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-28 10:04:47 +01:00
|
|
|
* hb_draw_funcs_set_cubic_to_func:
|
2020-01-13 17:01:18 +01:00
|
|
|
* @funcs: decompose functions
|
|
|
|
* @cubic_to: cubic-to callback
|
|
|
|
*
|
|
|
|
* Sets cubic-to callback to the decompose functions object.
|
|
|
|
*
|
|
|
|
* Since: REPLACEME
|
|
|
|
**/
|
|
|
|
void
|
2020-01-28 10:04:47 +01:00
|
|
|
hb_draw_funcs_set_cubic_to_func (hb_draw_funcs_t *funcs,
|
|
|
|
hb_draw_cubic_to_func_t cubic_to)
|
2020-01-13 17:01:18 +01:00
|
|
|
{
|
2020-01-27 21:08:39 +01:00
|
|
|
if (unlikely (hb_object_is_immutable (funcs))) return;
|
2020-01-13 17:01:18 +01:00
|
|
|
funcs->cubic_to = cubic_to;
|
|
|
|
}
|
|
|
|
|
2020-01-14 14:53:30 +01:00
|
|
|
/**
|
2020-01-28 10:04:47 +01:00
|
|
|
* hb_draw_funcs_set_close_path_func:
|
2020-01-14 14:53:30 +01:00
|
|
|
* @funcs: decompose functions object
|
|
|
|
* @close_path: close-path callback
|
|
|
|
*
|
|
|
|
* Sets close-path callback to the decompose functions object.
|
|
|
|
*
|
|
|
|
* Since: REPLACEME
|
|
|
|
**/
|
|
|
|
void
|
2020-01-28 10:04:47 +01:00
|
|
|
hb_draw_funcs_set_close_path_func (hb_draw_funcs_t *funcs,
|
|
|
|
hb_draw_close_path_func_t close_path)
|
2020-01-14 14:53:30 +01:00
|
|
|
{
|
2020-01-27 21:08:39 +01:00
|
|
|
if (unlikely (hb_object_is_immutable (funcs))) return;
|
2020-01-14 14:53:30 +01:00
|
|
|
funcs->close_path = close_path;
|
|
|
|
}
|
|
|
|
|
2020-01-13 17:01:18 +01:00
|
|
|
static void
|
2020-01-23 12:42:12 +01:00
|
|
|
_move_to_nil (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED) {}
|
|
|
|
|
|
|
|
static void
|
|
|
|
_line_to_nil (hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED, void *user_data HB_UNUSED) {}
|
2020-01-13 17:01:18 +01:00
|
|
|
|
|
|
|
static void
|
2020-01-23 12:18:59 +01:00
|
|
|
_cubic_to_nil (hb_position_t control1_x HB_UNUSED, hb_position_t control1_y HB_UNUSED,
|
2020-01-28 10:04:47 +01:00
|
|
|
hb_position_t control2_x HB_UNUSED, hb_position_t control2_y HB_UNUSED,
|
|
|
|
hb_position_t to_x HB_UNUSED, hb_position_t to_y HB_UNUSED,
|
|
|
|
void *user_data HB_UNUSED) {}
|
2020-01-13 17:01:18 +01:00
|
|
|
|
2020-01-14 14:53:30 +01:00
|
|
|
static void
|
2020-01-23 12:42:12 +01:00
|
|
|
_close_path_nil (void *user_data HB_UNUSED) {}
|
2020-01-14 14:53:30 +01:00
|
|
|
|
2020-01-13 17:01:18 +01:00
|
|
|
/**
|
2020-01-28 10:04:47 +01:00
|
|
|
* hb_draw_funcs_create:
|
2020-01-13 17:01:18 +01:00
|
|
|
*
|
|
|
|
* Creates a new decompose callbacks object.
|
|
|
|
*
|
|
|
|
* Since: REPLACEME
|
|
|
|
**/
|
2020-01-28 10:04:47 +01:00
|
|
|
hb_draw_funcs_t *
|
|
|
|
hb_draw_funcs_create ()
|
2020-01-13 17:01:18 +01:00
|
|
|
{
|
2020-01-28 10:04:47 +01:00
|
|
|
hb_draw_funcs_t *funcs;
|
|
|
|
if (unlikely (!(funcs = hb_object_create<hb_draw_funcs_t> ())))
|
|
|
|
return const_cast<hb_draw_funcs_t *> (&Null (hb_draw_funcs_t));
|
|
|
|
|
|
|
|
funcs->move_to = (hb_draw_move_to_func_t) _move_to_nil;
|
|
|
|
funcs->line_to = (hb_draw_line_to_func_t) _line_to_nil;
|
2020-01-28 12:56:13 +01:00
|
|
|
funcs->quadratic_to = nullptr;
|
2020-01-28 10:04:47 +01:00
|
|
|
funcs->cubic_to = (hb_draw_cubic_to_func_t) _cubic_to_nil;
|
|
|
|
funcs->close_path = (hb_draw_close_path_func_t) _close_path_nil;
|
2020-01-13 17:01:18 +01:00
|
|
|
return funcs;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-28 10:04:47 +01:00
|
|
|
* hb_draw_funcs_reference:
|
2020-01-13 17:01:18 +01:00
|
|
|
* @funcs: decompose functions
|
|
|
|
*
|
|
|
|
* Add to callbacks object refcount.
|
|
|
|
*
|
|
|
|
* Returns: The same object.
|
|
|
|
* Since: REPLACEME
|
|
|
|
**/
|
2020-01-28 10:04:47 +01:00
|
|
|
hb_draw_funcs_t *
|
|
|
|
hb_draw_funcs_reference (hb_draw_funcs_t *funcs)
|
2020-01-13 17:01:18 +01:00
|
|
|
{
|
|
|
|
return hb_object_reference (funcs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-28 10:04:47 +01:00
|
|
|
* hb_draw_funcs_destroy:
|
2020-01-13 17:01:18 +01:00
|
|
|
* @funcs: decompose functions
|
|
|
|
*
|
|
|
|
* Decreases refcount of callbacks object and deletes the object if it reaches
|
|
|
|
* to zero.
|
|
|
|
*
|
|
|
|
* Since: REPLACEME
|
|
|
|
**/
|
|
|
|
void
|
2020-01-28 10:04:47 +01:00
|
|
|
hb_draw_funcs_destroy (hb_draw_funcs_t *funcs)
|
2020-01-13 17:01:18 +01:00
|
|
|
{
|
|
|
|
if (!hb_object_destroy (funcs)) return;
|
|
|
|
|
|
|
|
free (funcs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-28 10:04:47 +01:00
|
|
|
* hb_draw:
|
2020-01-13 17:01:18 +01:00
|
|
|
* @font: a font object
|
|
|
|
* @glyph: a glyph id
|
|
|
|
* @funcs: decompose callbacks object
|
|
|
|
* @user_data: parameter you like be passed to the callbacks when are called
|
|
|
|
*
|
|
|
|
* Decomposes a glyph.
|
|
|
|
*
|
|
|
|
* Returns: Whether the font had the glyph and the operation completed successfully.
|
|
|
|
* Since: REPLACEME
|
|
|
|
**/
|
2020-01-10 18:14:15 +01:00
|
|
|
hb_bool_t
|
2020-01-28 10:04:47 +01:00
|
|
|
hb_font_draw_glyph (hb_font_t *font, hb_codepoint_t glyph,
|
|
|
|
const hb_draw_funcs_t *funcs,
|
2020-01-25 19:01:36 +01:00
|
|
|
void *user_data)
|
2019-10-20 14:53:27 +02:00
|
|
|
{
|
2020-01-28 10:04:47 +01:00
|
|
|
if (unlikely (funcs == &Null (hb_draw_funcs_t) ||
|
2020-01-13 17:01:18 +01:00
|
|
|
glyph >= font->face->get_num_glyphs ()))
|
|
|
|
return false;
|
2019-10-20 14:53:27 +02:00
|
|
|
|
2020-01-10 18:38:21 +01:00
|
|
|
if (font->face->table.glyf->get_path (font, glyph, funcs, user_data)) return true;
|
2020-01-10 19:44:46 +01:00
|
|
|
#ifndef HB_NO_CFF
|
|
|
|
if (font->face->table.cff1->get_path (font, glyph, funcs, user_data)) return true;
|
|
|
|
if (font->face->table.cff2->get_path (font, glyph, funcs, user_data)) return true;
|
2020-01-10 18:38:21 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return false;
|
2019-10-13 11:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|