os/ossrv/glib/gobject/gparam.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/glib/gobject/gparam.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,410 @@
     1.4 +/* GObject - GLib Type, Object, Parameter and Signal Library
     1.5 + * Copyright (C) 1997-1999, 2000-2001 Tim Janik and Red Hat, Inc.
     1.6 + * Portions copyright (c) 2006-2009 Nokia Corporation.  All rights reserved.
     1.7 + * This library is free software; you can redistribute it and/or
     1.8 + * modify it under the terms of the GNU Lesser General Public
     1.9 + * License as published by the Free Software Foundation; either
    1.10 + * version 2 of the License, or (at your option) any later version.
    1.11 + *
    1.12 + * This library is distributed in the hope that it will be useful,
    1.13 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.14 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    1.15 + * Lesser General Public License for more details.
    1.16 + *
    1.17 + * You should have received a copy of the GNU Lesser General
    1.18 + * Public License along with this library; if not, write to the
    1.19 + * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
    1.20 + * Boston, MA 02111-1307, USA.
    1.21 + *
    1.22 + * gparam.h: GParamSpec base class implementation
    1.23 + */
    1.24 +#if !defined (__GLIB_GOBJECT_H_INSIDE__) && !defined (GOBJECT_COMPILATION)
    1.25 +#error "Only <glib-object.h> can be included directly."
    1.26 +#endif
    1.27 +
    1.28 +#ifndef __G_PARAM_H__
    1.29 +#define __G_PARAM_H__
    1.30 +
    1.31 +#include	<gobject/gvalue.h>
    1.32 +
    1.33 +G_BEGIN_DECLS
    1.34 +
    1.35 +/* --- standard type macros --- */
    1.36 +/**
    1.37 + * G_TYPE_IS_PARAM:
    1.38 + * @type: a #GType ID
    1.39 + * 
    1.40 + * Checks whether @type "is a" %G_TYPE_PARAM.
    1.41 + */
    1.42 +#define G_TYPE_IS_PARAM(type)		(G_TYPE_FUNDAMENTAL (type) == G_TYPE_PARAM)
    1.43 +/**
    1.44 + * G_PARAM_SPEC:
    1.45 + * @pspec: a valid #GParamSpec
    1.46 + * 
    1.47 + * Casts a derived #GParamSpec object (e.g. of type #GParamSpecInt) into
    1.48 + * a #GParamSpec object.
    1.49 + */
    1.50 +#define G_PARAM_SPEC(pspec)		(G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM, GParamSpec))
    1.51 +/**
    1.52 + * G_IS_PARAM_SPEC:
    1.53 + * @pspec: a #GParamSpec
    1.54 + * 
    1.55 + * Checks whether @pspec "is a" valid #GParamSpec structure of type %G_TYPE_PARAM
    1.56 + * or derived.
    1.57 + */
    1.58 +#define G_IS_PARAM_SPEC(pspec)		(G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM))
    1.59 +/**
    1.60 + * G_PARAM_SPEC_CLASS:
    1.61 + * @pclass: a valid #GParamSpecClass
    1.62 + * 
    1.63 + * Casts a derived #GParamSpecClass structure into a #GParamSpecClass structure.
    1.64 + */
    1.65 +#define G_PARAM_SPEC_CLASS(pclass)      (G_TYPE_CHECK_CLASS_CAST ((pclass), G_TYPE_PARAM, GParamSpecClass))
    1.66 +/**
    1.67 + * G_IS_PARAM_SPEC_CLASS:
    1.68 + * @pclass: a #GParamSpecClass
    1.69 + * 
    1.70 + * Checks whether @pclass "is a" valid #GParamSpecClass structure of type 
    1.71 + * %G_TYPE_PARAM or derived.
    1.72 + */
    1.73 +#define G_IS_PARAM_SPEC_CLASS(pclass)   (G_TYPE_CHECK_CLASS_TYPE ((pclass), G_TYPE_PARAM))
    1.74 +/**
    1.75 + * G_PARAM_SPEC_GET_CLASS:
    1.76 + * @pspec: a valid #GParamSpec
    1.77 + * 
    1.78 + * Retrieves the #GParamSpecClass of a #GParamSpec.
    1.79 + */
    1.80 +#define G_PARAM_SPEC_GET_CLASS(pspec)	(G_TYPE_INSTANCE_GET_CLASS ((pspec), G_TYPE_PARAM, GParamSpecClass))
    1.81 +
    1.82 +
    1.83 +/* --- convenience macros --- */
    1.84 +/**
    1.85 + * G_PARAM_SPEC_TYPE:
    1.86 + * @pspec: a valid #GParamSpec
    1.87 + * 
    1.88 + * Retrieves the #GType of this @pspec.
    1.89 + */
    1.90 +#define G_PARAM_SPEC_TYPE(pspec)	(G_TYPE_FROM_INSTANCE (pspec))
    1.91 +/**
    1.92 + * G_PARAM_SPEC_TYPE_NAME:
    1.93 + * @pspec: a valid #GParamSpec
    1.94 + * 
    1.95 + * Retrieves the #GType name of this @pspec.
    1.96 + */
    1.97 +#define G_PARAM_SPEC_TYPE_NAME(pspec)	(g_type_name (G_PARAM_SPEC_TYPE (pspec)))
    1.98 +/**
    1.99 + * G_PARAM_SPEC_VALUE_TYPE:
   1.100 + * @pspec: a valid #GParamSpec
   1.101 + * 
   1.102 + * Retrieves the #GType to initialize a #GValue for this parameter.
   1.103 + */
   1.104 +#define	G_PARAM_SPEC_VALUE_TYPE(pspec)	(G_PARAM_SPEC (pspec)->value_type)
   1.105 +/**
   1.106 + * G_VALUE_HOLDS_PARAM:
   1.107 + * @value: a valid #GValue structure
   1.108 + * 
   1.109 + * Checks whether the given #GValue can hold values derived from type %G_TYPE_PARAM.
   1.110 + * 
   1.111 + * Returns: %TRUE on success.
   1.112 + */
   1.113 +#define G_VALUE_HOLDS_PARAM(value)	(G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_PARAM))
   1.114 +       
   1.115 +
   1.116 +/* --- flags --- */
   1.117 +/**
   1.118 + * GParamFlags:
   1.119 + * @G_PARAM_READABLE: the parameter is readable
   1.120 + * @G_PARAM_WRITABLE: the parameter is writable
   1.121 + * @G_PARAM_CONSTRUCT: the parameter will be set upon object construction
   1.122 + * @G_PARAM_CONSTRUCT_ONLY: the parameter will only be set upon object construction
   1.123 + * @G_PARAM_LAX_VALIDATION: upon parameter conversion (see g_param_value_convert())
   1.124 + *  strict validation is not required
   1.125 + * @G_PARAM_STATIC_NAME: the string used as name when constructing the 
   1.126 + *  parameter is guaranteed to remain valid and
   1.127 + *  unmodified for the lifetime of the parameter. 
   1.128 + *  Since 2.8
   1.129 + * @G_PARAM_STATIC_NICK: the string used as nick when constructing the
   1.130 + *  parameter is guaranteed to remain valid and
   1.131 + *  unmmodified for the lifetime of the parameter.
   1.132 + *  Since 2.8
   1.133 + * @G_PARAM_STATIC_BLURB: the string used as blurb when constructing the 
   1.134 + *  parameter is guaranteed to remain valid and 
   1.135 + *  unmodified for the lifetime of the parameter. 
   1.136 + *  Since 2.8
   1.137 + * @G_PARAM_PRIVATE: internal
   1.138 + * 
   1.139 + * Through the #GParamFlags flag values, certain aspects of parameters
   1.140 + * can be configured.
   1.141 + */
   1.142 +typedef enum
   1.143 +{
   1.144 +  G_PARAM_READABLE            = 1 << 0,
   1.145 +  G_PARAM_WRITABLE            = 1 << 1,
   1.146 +  G_PARAM_CONSTRUCT	      = 1 << 2,
   1.147 +  G_PARAM_CONSTRUCT_ONLY      = 1 << 3,
   1.148 +  G_PARAM_LAX_VALIDATION      = 1 << 4,
   1.149 +  G_PARAM_STATIC_NAME	      = 1 << 5,
   1.150 +#ifndef G_DISABLE_DEPRECATED
   1.151 +  G_PARAM_PRIVATE	      = G_PARAM_STATIC_NAME,
   1.152 +#endif
   1.153 +  G_PARAM_STATIC_NICK	      = 1 << 6,
   1.154 +  G_PARAM_STATIC_BLURB	      = 1 << 7
   1.155 +} GParamFlags;
   1.156 +/**
   1.157 + * G_PARAM_READWRITE:
   1.158 + * 
   1.159 + * #GParamFlags value alias for %G_PARAM_READABLE | %G_PARAM_WRITABLE.
   1.160 + */
   1.161 +#define	G_PARAM_READWRITE	(G_PARAM_READABLE | G_PARAM_WRITABLE)
   1.162 +/**
   1.163 + * G_PARAM_STATIC_STRINGS:
   1.164 + * 
   1.165 + * #GParamFlags value alias for %G_PARAM_STATIC_NAME | %G_PARAM_STATIC_NICK | %G_PARAM_STATIC_BLURB.
   1.166 + * 
   1.167 + * Since 2.13.0
   1.168 + */
   1.169 +#define	G_PARAM_STATIC_STRINGS (G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB)
   1.170 +/* bits in the range 0xffffff00 are reserved for 3rd party usage */
   1.171 +/**
   1.172 + * G_PARAM_MASK:
   1.173 + * 
   1.174 + * Mask containing the bits of #GParamSpec.flags which are reserved for GLib.
   1.175 + */
   1.176 +#define	G_PARAM_MASK		(0x000000ff)
   1.177 +/**
   1.178 + * G_PARAM_USER_SHIFT:
   1.179 + * 
   1.180 + * Minimum shift count to be used for user defined flags, to be stored in
   1.181 + * #GParamSpec.flags.
   1.182 + */
   1.183 +#define	G_PARAM_USER_SHIFT	(8)
   1.184 +
   1.185 +
   1.186 +/* --- typedefs & structures --- */
   1.187 +typedef struct _GParamSpec      GParamSpec;
   1.188 +typedef struct _GParamSpecClass GParamSpecClass;
   1.189 +typedef struct _GParameter	GParameter;
   1.190 +typedef struct _GParamSpecPool  GParamSpecPool;
   1.191 +/**
   1.192 + * GParamSpec:
   1.193 + * @g_type_instance: private #GTypeInstance portion
   1.194 + * @name: name of this parameter
   1.195 + * @flags: #GParamFlags flags for this parameter
   1.196 + * @value_type: the #GValue type for this parameter
   1.197 + * @owner_type: #GType type that uses (introduces) this paremeter
   1.198 + * 
   1.199 + * All other fields of the <structname>GParamSpec</structname> struct are private and
   1.200 + * should not be used directly.
   1.201 + */
   1.202 +struct _GParamSpec
   1.203 +{
   1.204 +  GTypeInstance  g_type_instance;
   1.205 +
   1.206 +  gchar         *name;
   1.207 +  GParamFlags    flags;
   1.208 +  GType		 value_type;
   1.209 +  GType		 owner_type;	/* class or interface using this property */
   1.210 +
   1.211 +  /*< private >*/
   1.212 +  gchar         *_nick;
   1.213 +  gchar         *_blurb;
   1.214 +  GData		*qdata;
   1.215 +  guint          ref_count;
   1.216 +  guint		 param_id;	/* sort-criteria */
   1.217 +};
   1.218 +/**
   1.219 + * GParamSpecClass:
   1.220 + * @g_type_class: the parent class
   1.221 + * @value_type: the #GValue type for this parameter
   1.222 + * @finalize: The instance finalization function (optional), should chain 
   1.223 + *  up to the finalize method of the parent class.
   1.224 + * @value_set_default: Resets a @value to the default value for this type
   1.225 + *  (recommended, the default is g_value_reset()), see 
   1.226 + *  g_param_value_set_default().
   1.227 + * @value_validate: Ensures that the contents of @value comply with the 
   1.228 + *  specifications set out by this type (optional), see 
   1.229 + *  g_param_value_set_validate().
   1.230 + * @values_cmp: Compares @value1 with @value2 according to this type
   1.231 + *  (recommended, the default is memcmp()), see g_param_values_cmp().
   1.232 + * 
   1.233 + * The class structure for the <structname>GParamSpec</structname> type.
   1.234 + * Normally, <structname>GParamSpec</structname> classes are filled by
   1.235 + * g_param_type_register_static().
   1.236 + */
   1.237 +struct _GParamSpecClass
   1.238 +{
   1.239 +  GTypeClass      g_type_class;
   1.240 +
   1.241 +  GType		  value_type;
   1.242 +
   1.243 +  void	        (*finalize)		(GParamSpec   *pspec);
   1.244 +
   1.245 +  /* GParam methods */
   1.246 +  void          (*value_set_default)    (GParamSpec   *pspec,
   1.247 +					 GValue       *value);
   1.248 +  gboolean      (*value_validate)       (GParamSpec   *pspec,
   1.249 +					 GValue       *value);
   1.250 +  gint          (*values_cmp)           (GParamSpec   *pspec,
   1.251 +					 const GValue *value1,
   1.252 +					 const GValue *value2);
   1.253 +  /*< private >*/
   1.254 +  gpointer	  dummy[4];
   1.255 +};
   1.256 +/**
   1.257 + * GParameter:
   1.258 + * @name: the parameter name
   1.259 + * @value: the parameter value
   1.260 + * 
   1.261 + * The <structname>GParameter</structname> struct is an auxiliary structure used
   1.262 + * to hand parameter name/value pairs to g_object_newv().
   1.263 + */
   1.264 +struct _GParameter /* auxillary structure for _setv() variants */
   1.265 +{
   1.266 +  const gchar *name;
   1.267 +  GValue       value;
   1.268 +};
   1.269 +
   1.270 +
   1.271 +/* --- prototypes --- */
   1.272 +IMPORT_C GParamSpec*	g_param_spec_ref		(GParamSpec    *pspec);
   1.273 +IMPORT_C void		g_param_spec_unref		(GParamSpec    *pspec);
   1.274 +IMPORT_C void		g_param_spec_sink		(GParamSpec    *pspec);
   1.275 +IMPORT_C GParamSpec*	g_param_spec_ref_sink   	(GParamSpec    *pspec);
   1.276 +IMPORT_C gpointer        g_param_spec_get_qdata		(GParamSpec    *pspec,
   1.277 +						 GQuark         quark);
   1.278 +IMPORT_C void            g_param_spec_set_qdata		(GParamSpec    *pspec,
   1.279 +						 GQuark         quark,
   1.280 +						 gpointer       data);
   1.281 +IMPORT_C void            g_param_spec_set_qdata_full	(GParamSpec    *pspec,
   1.282 +						 GQuark         quark,
   1.283 +						 gpointer       data,
   1.284 +						 GDestroyNotify destroy);
   1.285 +IMPORT_C gpointer        g_param_spec_steal_qdata	(GParamSpec    *pspec,
   1.286 +						 GQuark         quark);
   1.287 +IMPORT_C GParamSpec*     g_param_spec_get_redirect_target (GParamSpec   *pspec);
   1.288 +
   1.289 +IMPORT_C void		g_param_value_set_default	(GParamSpec    *pspec,
   1.290 +						 GValue	       *value);
   1.291 +IMPORT_C gboolean	g_param_value_defaults		(GParamSpec    *pspec,
   1.292 +						 GValue	       *value);
   1.293 +IMPORT_C gboolean	g_param_value_validate		(GParamSpec    *pspec,
   1.294 +						 GValue	       *value);
   1.295 +IMPORT_C gboolean	g_param_value_convert		(GParamSpec    *pspec,
   1.296 +						 const GValue  *src_value,
   1.297 +						 GValue	       *dest_value,
   1.298 +						 gboolean	strict_validation);
   1.299 +IMPORT_C gint		g_param_values_cmp		(GParamSpec    *pspec,
   1.300 +						 const GValue  *value1,
   1.301 +						 const GValue  *value2);
   1.302 +IMPORT_C G_CONST_RETURN gchar*	g_param_spec_get_name	(GParamSpec    *pspec);
   1.303 +IMPORT_C G_CONST_RETURN gchar*	g_param_spec_get_nick	(GParamSpec    *pspec);
   1.304 +IMPORT_C G_CONST_RETURN gchar*	g_param_spec_get_blurb	(GParamSpec    *pspec);
   1.305 +IMPORT_C void            g_value_set_param               (GValue	       *value,
   1.306 +						 GParamSpec    *param);
   1.307 +IMPORT_C GParamSpec*     g_value_get_param               (const GValue  *value);
   1.308 +IMPORT_C GParamSpec*     g_value_dup_param               (const GValue  *value);
   1.309 +
   1.310 +
   1.311 +IMPORT_C void           g_value_take_param               (GValue        *value,
   1.312 +					         GParamSpec    *param);
   1.313 +#ifndef G_DISABLE_DEPRECATED
   1.314 +IMPORT_C void           g_value_set_param_take_ownership (GValue        *value,
   1.315 +					         GParamSpec    *param);
   1.316 +#endif
   1.317 +
   1.318 +/* --- convenience functions --- */
   1.319 +typedef struct _GParamSpecTypeInfo GParamSpecTypeInfo;
   1.320 +/**
   1.321 + * GParamSpecTypeInfo:
   1.322 + * @instance_size: Size of the instance (object) structure.
   1.323 + * @n_preallocs: Prior to GLib 2.10, it specified the number of pre-allocated (cached) instances to reserve memory for (0 indicates no caching). Since GLib 2.10, it is ignored, since instances are allocated with the <link linkend="glib-Memory-Slices">slice allocator</link> now.
   1.324 + * @instance_init: Location of the instance initialization function (optional).
   1.325 + * @value_type: The #GType of values conforming to this #GParamSpec
   1.326 + * @finalize: The instance finalization function (optional).
   1.327 + * @value_set_default: Resets a @value to the default value for @pspec 
   1.328 + *  (recommended, the default is g_value_reset()), see 
   1.329 + *  g_param_value_set_default().
   1.330 + * @value_validate: Ensures that the contents of @value comply with the 
   1.331 + *  specifications set out by @pspec (optional), see 
   1.332 + *  g_param_value_set_validate().
   1.333 + * @values_cmp: Compares @value1 with @value2 according to @pspec 
   1.334 + *  (recommended, the default is memcmp()), see g_param_values_cmp().
   1.335 + * 
   1.336 + * This structure is used to provide the type system with the information
   1.337 + * required to initialize and destruct (finalize) a parameter's class and
   1.338 + * instances thereof.
   1.339 + * The initialized structure is passed to the g_param_type_register_static() 
   1.340 + * The type system will perform a deep copy of this structure, so its memory 
   1.341 + * does not need to be persistent across invocation of 
   1.342 + * g_param_type_register_static().
   1.343 + */
   1.344 +struct _GParamSpecTypeInfo
   1.345 +{
   1.346 +  /* type system portion */
   1.347 +  guint16         instance_size;                               /* obligatory */
   1.348 +  guint16         n_preallocs;                                 /* optional */
   1.349 +  void		(*instance_init)	(GParamSpec   *pspec); /* optional */
   1.350 +
   1.351 +  /* class portion */
   1.352 +  GType           value_type;				       /* obligatory */
   1.353 +  void          (*finalize)             (GParamSpec   *pspec); /* optional */
   1.354 +  void          (*value_set_default)    (GParamSpec   *pspec,  /* recommended */
   1.355 +					 GValue       *value);
   1.356 +  gboolean      (*value_validate)       (GParamSpec   *pspec,  /* optional */
   1.357 +					 GValue       *value);
   1.358 +  gint          (*values_cmp)           (GParamSpec   *pspec,  /* recommended */
   1.359 +					 const GValue *value1,
   1.360 +					 const GValue *value2);
   1.361 +};
   1.362 +IMPORT_C GType	g_param_type_register_static	(const gchar		  *name,
   1.363 +					 const GParamSpecTypeInfo *pspec_info);
   1.364 +
   1.365 +/* For registering builting types */
   1.366 +GType  _g_param_type_register_static_constant (const gchar              *name,
   1.367 +					       const GParamSpecTypeInfo *pspec_info,
   1.368 +					       GType                     opt_type);
   1.369 +
   1.370 +
   1.371 +/* --- protected --- */
   1.372 +IMPORT_C gpointer	g_param_spec_internal		(GType	        param_type,
   1.373 +						 const gchar   *name,
   1.374 +						 const gchar   *nick,
   1.375 +						 const gchar   *blurb,
   1.376 +						 GParamFlags    flags);
   1.377 +IMPORT_C GParamSpecPool* g_param_spec_pool_new		(gboolean	type_prefixing);
   1.378 +IMPORT_C void		g_param_spec_pool_insert	(GParamSpecPool	*pool,
   1.379 +						 GParamSpec	*pspec,
   1.380 +						 GType		 owner_type);
   1.381 +IMPORT_C void		g_param_spec_pool_remove	(GParamSpecPool	*pool,
   1.382 +						 GParamSpec	*pspec);
   1.383 +IMPORT_C GParamSpec*	g_param_spec_pool_lookup	(GParamSpecPool	*pool,
   1.384 +						 const gchar	*param_name,
   1.385 +						 GType		 owner_type,
   1.386 +						 gboolean	 walk_ancestors);
   1.387 +IMPORT_C GList*		g_param_spec_pool_list_owned	(GParamSpecPool	*pool,
   1.388 +						 GType		 owner_type);
   1.389 +IMPORT_C GParamSpec**	g_param_spec_pool_list		(GParamSpecPool	*pool,
   1.390 +						 GType		 owner_type,
   1.391 +						 guint		*n_pspecs_p);
   1.392 +
   1.393 +
   1.394 +
   1.395 +/* contracts:
   1.396 + *
   1.397 + * gboolean value_validate (GParamSpec *pspec,
   1.398 + *                          GValue     *value):
   1.399 + *	modify value contents in the least destructive way, so
   1.400 + *	that it complies with pspec's requirements (i.e.
   1.401 + *	according to minimum/maximum ranges etc...). return
   1.402 + *	whether modification was necessary.
   1.403 + *
   1.404 + * gint values_cmp (GParamSpec   *pspec,
   1.405 + *                  const GValue *value1,
   1.406 + *                  const GValue *value2):
   1.407 + *	return value1 - value2, i.e. (-1) if value1 < value2,
   1.408 + *	(+1) if value1 > value2, and (0) otherwise (equality)
   1.409 + */
   1.410 +
   1.411 +G_END_DECLS
   1.412 +
   1.413 +#endif /* __G_PARAM_H__ */