os/ossrv/glib/gobject/gboxed.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* GObject - GLib Type, Object, Parameter and Signal Library
sl@0
     2
 * Copyright (C) 2000-2001 Red Hat, Inc.
sl@0
     3
 * Portions copyright (c) 2006-2009 Nokia Corporation.  All rights reserved.
sl@0
     4
 * This library is free software; you can redistribute it and/or
sl@0
     5
 * modify it under the terms of the GNU Lesser General Public
sl@0
     6
 * License as published by the Free Software Foundation; either
sl@0
     7
 * version 2 of the License, or (at your option) any later version.
sl@0
     8
 *
sl@0
     9
 * This library is distributed in the hope that it will be useful,
sl@0
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
sl@0
    12
 * Lesser General Public License for more details.
sl@0
    13
 *
sl@0
    14
 * You should have received a copy of the GNU Lesser General
sl@0
    15
 * Public License along with this library; if not, write to the
sl@0
    16
 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
sl@0
    17
 * Boston, MA 02111-1307, USA.
sl@0
    18
 */
sl@0
    19
#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
sl@0
    20
#error "Only <glib-object.h> can be included directly."
sl@0
    21
#endif
sl@0
    22
sl@0
    23
#ifndef __G_BOXED_H__
sl@0
    24
#define __G_BOXED_H__
sl@0
    25
sl@0
    26
#include        <gobject/gtype.h>
sl@0
    27
sl@0
    28
G_BEGIN_DECLS
sl@0
    29
sl@0
    30
/* --- type macros --- */
sl@0
    31
#define G_TYPE_IS_BOXED(type)	   (G_TYPE_FUNDAMENTAL (type) == G_TYPE_BOXED)
sl@0
    32
/**
sl@0
    33
 * G_VALUE_HOLDS_BOXED:
sl@0
    34
 * @value: a valid #GValue structure
sl@0
    35
 * 
sl@0
    36
 * Checks whether the given #GValue can hold values derived from type %G_TYPE_BOXED.
sl@0
    37
 * 
sl@0
    38
 * Returns: %TRUE on success.
sl@0
    39
 */
sl@0
    40
#define G_VALUE_HOLDS_BOXED(value) (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_BOXED))
sl@0
    41
sl@0
    42
sl@0
    43
/* --- typedefs --- */
sl@0
    44
/**
sl@0
    45
 * GBoxedCopyFunc:
sl@0
    46
 * @boxed: The boxed structure to be copied.
sl@0
    47
 * 
sl@0
    48
 * This function is provided by the user and should produce a copy of the passed
sl@0
    49
 * in boxed structure.
sl@0
    50
 * 
sl@0
    51
 * Returns: The newly created copy of the boxed structure.
sl@0
    52
 */
sl@0
    53
typedef gpointer (*GBoxedCopyFunc) (gpointer boxed);
sl@0
    54
sl@0
    55
/**
sl@0
    56
 * GBoxedFreeFunc:
sl@0
    57
 * @boxed: The boxed structure to be freed.
sl@0
    58
 * 
sl@0
    59
 * This function is provided by the user and should free the boxed
sl@0
    60
 * structure passed.
sl@0
    61
 */
sl@0
    62
typedef void (*GBoxedFreeFunc) (gpointer boxed);
sl@0
    63
sl@0
    64
sl@0
    65
/* --- prototypes --- */
sl@0
    66
IMPORT_C gpointer	g_boxed_copy			(GType		 boxed_type,
sl@0
    67
						 gconstpointer	 src_boxed);
sl@0
    68
IMPORT_C void		g_boxed_free			(GType		 boxed_type,
sl@0
    69
						 gpointer	 boxed);
sl@0
    70
IMPORT_C void		g_value_set_boxed		(GValue		*value,
sl@0
    71
						 gconstpointer	 v_boxed);
sl@0
    72
IMPORT_C void		g_value_set_static_boxed	(GValue		*value,
sl@0
    73
						 gconstpointer	 v_boxed);
sl@0
    74
IMPORT_C gpointer	g_value_get_boxed		(const GValue	*value);
sl@0
    75
IMPORT_C gpointer	g_value_dup_boxed		(const GValue	*value);
sl@0
    76
sl@0
    77
sl@0
    78
/* --- convenience --- */
sl@0
    79
IMPORT_C GType	g_boxed_type_register_static		(const gchar	*name,
sl@0
    80
						 GBoxedCopyFunc	 boxed_copy,
sl@0
    81
						 GBoxedFreeFunc	 boxed_free);
sl@0
    82
sl@0
    83
sl@0
    84
/* --- GLib boxed types --- */
sl@0
    85
/**
sl@0
    86
 * G_TYPE_CLOSURE:
sl@0
    87
 * 
sl@0
    88
 * The #GType for #GClosure.
sl@0
    89
 */
sl@0
    90
#define	G_TYPE_CLOSURE		(g_closure_get_type ())
sl@0
    91
/**
sl@0
    92
 * G_TYPE_VALUE:
sl@0
    93
 * 
sl@0
    94
 * The type ID of the "GValue" type which is a boxed type,
sl@0
    95
 * used to pass around pointers to GValues.
sl@0
    96
 */
sl@0
    97
#define	G_TYPE_VALUE		(g_value_get_type ())
sl@0
    98
/**
sl@0
    99
 * G_TYPE_VALUE_ARRAY:
sl@0
   100
 * 
sl@0
   101
 * The type ID of the "GValueArray" type which is a boxed type,
sl@0
   102
 * used to pass around pointers to GValueArrays.
sl@0
   103
 */
sl@0
   104
#define	G_TYPE_VALUE_ARRAY	(g_value_array_get_type ())
sl@0
   105
/**
sl@0
   106
 * G_TYPE_DATE:
sl@0
   107
 * 
sl@0
   108
 * The #GType for #GDate.
sl@0
   109
 */
sl@0
   110
#define	G_TYPE_DATE	        (g_date_get_type ())
sl@0
   111
/**
sl@0
   112
 * G_TYPE_STRV:
sl@0
   113
 * 
sl@0
   114
 * The #GType for a boxed type holding a %NULL-terminated array of strings.
sl@0
   115
 * 
sl@0
   116
 * The code fragments in the following example show the use of a property of
sl@0
   117
 * type #G_TYPE_STRV with g_object_class_install_property(), g_object_set()
sl@0
   118
 * and g_object_get().
sl@0
   119
 * 
sl@0
   120
 * |[
sl@0
   121
 * g_object_class_install_property (object_class,
sl@0
   122
 *                                  PROP_AUTHORS,
sl@0
   123
 *                                  g_param_spec_boxed ("authors",
sl@0
   124
 *                                                      _("Authors"),
sl@0
   125
 *                                                      _("List of authors"),
sl@0
   126
 *                                                      G_TYPE_STRV,
sl@0
   127
 *                                                      G_PARAM_READWRITE));
sl@0
   128
 * 
sl@0
   129
 * 
sl@0
   130
 * gchar *authors[] = { "Owen", "Tim", NULL };
sl@0
   131
 * g_object_set (obj, "authors", authors, NULL);
sl@0
   132
 * 
sl@0
   133
 * 
sl@0
   134
 * gchar *writers[];
sl@0
   135
 * g_object_get (obj, "authors", &writers, NULL);
sl@0
   136
 * // do something with writers
sl@0
   137
 * g_strfreev (writers);
sl@0
   138
 * ]|
sl@0
   139
 * 
sl@0
   140
 * Since: 2.4
sl@0
   141
 */
sl@0
   142
#define	G_TYPE_STRV	        (g_strv_get_type ())
sl@0
   143
/**
sl@0
   144
 * G_TYPE_GSTRING:
sl@0
   145
 * 
sl@0
   146
 * The #GType for #GString.
sl@0
   147
 */
sl@0
   148
#define	G_TYPE_GSTRING		(g_gstring_get_type ())
sl@0
   149
/**
sl@0
   150
 * G_TYPE_HASH_TABLE:
sl@0
   151
 * 
sl@0
   152
 * The #GType for a boxed type holding a #GHashTable reference.
sl@0
   153
 * 
sl@0
   154
 * Since: 2.10
sl@0
   155
 */
sl@0
   156
#define	G_TYPE_HASH_TABLE (g_hash_table_get_type ())
sl@0
   157
/**
sl@0
   158
 * G_TYPE_REGEX:
sl@0
   159
 * 
sl@0
   160
 * The #GType for a boxed type holding a #GRegex reference.
sl@0
   161
 * 
sl@0
   162
 * Since: 2.14
sl@0
   163
 */
sl@0
   164
#define	G_TYPE_REGEX (g_regex_get_type ())
sl@0
   165
sl@0
   166
sl@0
   167
IMPORT_C void    g_value_take_boxed      (GValue		*value,
sl@0
   168
				 gconstpointer	 v_boxed);
sl@0
   169
#ifndef G_DISABLE_DEPRECATED
sl@0
   170
IMPORT_C void	g_value_set_boxed_take_ownership	(GValue		*value,
sl@0
   171
						 gconstpointer	 v_boxed);
sl@0
   172
#endif
sl@0
   173
IMPORT_C GType	g_closure_get_type	(void)	G_GNUC_CONST;
sl@0
   174
IMPORT_C GType	g_value_get_type	(void)	G_GNUC_CONST;
sl@0
   175
IMPORT_C GType	g_value_array_get_type	(void)	G_GNUC_CONST;
sl@0
   176
IMPORT_C GType	g_date_get_type	        (void)	G_GNUC_CONST;
sl@0
   177
IMPORT_C GType	g_strv_get_type	        (void)	G_GNUC_CONST;
sl@0
   178
IMPORT_C GType	g_gstring_get_type      (void)	G_GNUC_CONST;
sl@0
   179
IMPORT_C GType   g_hash_table_get_type   (void)  G_GNUC_CONST;
sl@0
   180
IMPORT_C GType   g_regex_get_type        (void)  G_GNUC_CONST;
sl@0
   181
sl@0
   182
/**
sl@0
   183
 * GStrv:
sl@0
   184
 * 
sl@0
   185
 * A C representable type name for #G_TYPE_STRV.
sl@0
   186
 */
sl@0
   187
typedef gchar** GStrv;
sl@0
   188
     
sl@0
   189
G_END_DECLS
sl@0
   190
sl@0
   191
#endif	/* __G_BOXED_H__ */