2009-08-11 05:35:05 +02:00
|
|
|
/*
|
2011-04-21 23:14:28 +02:00
|
|
|
* Copyright © 2009 Red Hat, Inc.
|
|
|
|
* Copyright © 2011 Google, Inc.
|
2009-08-11 05:35:05 +02:00
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2009-08-11 05:35:05 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
2011-04-21 23:14:28 +02:00
|
|
|
* Google Author(s): Behdad Esfahbod
|
2009-08-11 05:35:05 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HB_GLIB_H
|
|
|
|
#define HB_GLIB_H
|
|
|
|
|
2009-08-11 05:40:28 +02:00
|
|
|
#include "hb.h"
|
2012-04-12 19:17:44 +02:00
|
|
|
|
2011-04-20 08:44:29 +02:00
|
|
|
#include <glib.h>
|
2009-08-11 05:35:05 +02:00
|
|
|
|
|
|
|
HB_BEGIN_DECLS
|
|
|
|
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN hb_script_t
|
2011-04-20 08:44:29 +02:00
|
|
|
hb_glib_script_to_script (GUnicodeScript script);
|
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN GUnicodeScript
|
2011-04-20 08:44:29 +02:00
|
|
|
hb_glib_script_from_script (hb_script_t script);
|
|
|
|
|
|
|
|
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN hb_unicode_funcs_t *
|
2009-08-11 05:40:28 +02:00
|
|
|
hb_glib_get_unicode_funcs (void);
|
2009-08-11 05:35:05 +02:00
|
|
|
|
Support building with older glib versions
It is desirable to be able to build against older versions of glib.
fd7a245 changed the configure check to require glib > 2.38 for
G_TEST_DIST. Before that, version 2.16 was required, but in fact,
since aafe395, G_PASTE is being used, which was introduced in 2.19.1.
And since 0ef179e2, hb-glib uses GBytes, which were introduced in
2.31.10.
2.19.1 is rather old, but 2.38 is rather new. For Firefox, building
against 2.22 is still supported, although we could probably get away
with bumping that to 2.28. Either way, GBytes is not available.
Arguably, if you build against a glib that doesn't support GBytes,
you're not going to use the hb_glib_blob_create function, so we hide
the function when building against such a glib.
As for G_TEST_DIST, when building against versions of glib that don't
support it, we can fallback to the previous behavior, which, AIUI, was
just making the test not work when building in a separate directory.
2016-09-30 11:15:37 +02:00
|
|
|
#if GLIB_CHECK_VERSION(2,31,10)
|
2015-11-19 11:34:12 +01:00
|
|
|
HB_EXTERN hb_blob_t *
|
2015-01-07 01:58:33 +01:00
|
|
|
hb_glib_blob_create (GBytes *gbytes);
|
Support building with older glib versions
It is desirable to be able to build against older versions of glib.
fd7a245 changed the configure check to require glib > 2.38 for
G_TEST_DIST. Before that, version 2.16 was required, but in fact,
since aafe395, G_PASTE is being used, which was introduced in 2.19.1.
And since 0ef179e2, hb-glib uses GBytes, which were introduced in
2.31.10.
2.19.1 is rather old, but 2.38 is rather new. For Firefox, building
against 2.22 is still supported, although we could probably get away
with bumping that to 2.28. Either way, GBytes is not available.
Arguably, if you build against a glib that doesn't support GBytes,
you're not going to use the hb_glib_blob_create function, so we hide
the function when building against such a glib.
As for G_TEST_DIST, when building against versions of glib that don't
support it, we can fallback to the previous behavior, which, AIUI, was
just making the test not work when building in a separate directory.
2016-09-30 11:15:37 +02:00
|
|
|
#endif
|
2010-07-23 21:11:18 +02:00
|
|
|
|
2009-08-11 05:35:05 +02:00
|
|
|
HB_END_DECLS
|
|
|
|
|
|
|
|
#endif /* HB_GLIB_H */
|