2011-08-19 19:59:24 +02:00
|
|
|
/*** BEGIN file-header ***/
|
2011-08-14 15:17:16 +02:00
|
|
|
/*
|
2020-03-13 05:19:32 +01:00
|
|
|
* Copyright (C) 2011 Google, Inc.
|
2011-08-14 15:17:16 +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.
|
|
|
|
*
|
|
|
|
* Google Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2018-08-26 07:36:36 +02:00
|
|
|
#include "hb.hh"
|
2011-08-14 15:17:16 +02:00
|
|
|
|
2019-06-18 07:41:49 +02:00
|
|
|
#ifdef HAVE_GOBJECT
|
|
|
|
|
2011-08-14 15:17:16 +02:00
|
|
|
/* g++ didn't like older gtype.h gcc-only code path. */
|
|
|
|
#include <glib.h>
|
|
|
|
#if !GLIB_CHECK_VERSION(2,29,16)
|
|
|
|
#undef __GNUC__
|
|
|
|
#undef __GNUC_MINOR__
|
|
|
|
#define __GNUC__ 2
|
|
|
|
#define __GNUC_MINOR__ 6
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "hb-gobject.h"
|
|
|
|
|
2011-08-19 19:59:24 +02:00
|
|
|
/*** END file-header ***/
|
|
|
|
|
|
|
|
/*** BEGIN file-production ***/
|
2020-08-18 12:31:47 +02:00
|
|
|
/* enumerations from "@basename@" */
|
2011-08-19 19:59:24 +02:00
|
|
|
/*** END file-production ***/
|
|
|
|
|
2019-06-18 07:41:49 +02:00
|
|
|
/*** BEGIN file-tail ***/
|
|
|
|
|
|
|
|
#endif
|
|
|
|
/*** END file-tail ***/
|
|
|
|
|
2011-08-19 19:59:24 +02:00
|
|
|
/*** BEGIN value-header ***/
|
|
|
|
GType
|
2018-12-17 19:01:01 +01:00
|
|
|
@enum_name@_get_type ()
|
2011-08-19 19:59:24 +02:00
|
|
|
{
|
2013-08-27 02:56:58 +02:00
|
|
|
static gsize type_id = 0;
|
2011-08-14 15:17:16 +02:00
|
|
|
|
2013-08-27 02:56:58 +02:00
|
|
|
if (g_once_init_enter (&type_id))
|
2011-08-19 19:59:24 +02:00
|
|
|
{
|
|
|
|
static const G@Type@Value values[] = {
|
|
|
|
/*** END value-header ***/
|
2011-08-14 15:17:16 +02:00
|
|
|
|
2011-08-19 19:59:24 +02:00
|
|
|
/*** BEGIN value-production ***/
|
|
|
|
{ @VALUENAME@, "@VALUENAME@", "@valuenick@" },
|
|
|
|
/*** END value-production ***/
|
|
|
|
|
|
|
|
/*** BEGIN value-tail ***/
|
|
|
|
{ 0, NULL, NULL }
|
|
|
|
};
|
2013-08-27 02:56:58 +02:00
|
|
|
GType id =
|
2011-08-19 19:59:24 +02:00
|
|
|
g_@type@_register_static (g_intern_static_string ("@EnumName@"), values);
|
2013-08-27 02:56:58 +02:00
|
|
|
g_once_init_leave (&type_id, id);
|
2011-08-19 19:59:24 +02:00
|
|
|
}
|
|
|
|
|
2013-08-27 02:56:58 +02:00
|
|
|
return type_id;
|
2011-08-19 19:59:24 +02:00
|
|
|
}
|
2011-08-14 15:17:16 +02:00
|
|
|
|
2011-08-19 19:59:24 +02:00
|
|
|
/*** END value-tail ***/
|