got rid of outdated dmalloc support. provide g_try_malloc() and
[platform/upstream/glib.git] / gobject / gparam.h
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2  * Copyright (C) 1997, 1998, 1999, 2000 Tim Janik and Red Hat, Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General
15  * Public License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17  * Boston, MA 02111-1307, USA.
18  *
19  * gparam.h: GParamSpec base class implementation
20  */
21 #ifndef __G_PARAM_H__
22 #define __G_PARAM_H__
23
24
25 #include        <gobject/gvalue.h>
26
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
31
32
33 /* --- type macros --- */
34 #define G_TYPE_IS_PARAM(type)           (G_TYPE_FUNDAMENTAL (type) == G_TYPE_PARAM)
35 #define G_PARAM_SPEC_TYPE(pspec)        (G_TYPE_FROM_INSTANCE (pspec))
36 #define G_PARAM_SPEC_TYPE_NAME(pspec)   (g_type_name (G_PARAM_SPEC_TYPE (pspec)))
37 #define G_PARAM_SPEC(pspec)             (G_TYPE_CHECK_INSTANCE_CAST ((pspec), G_TYPE_PARAM, GParamSpec))
38 #define G_IS_PARAM_SPEC(pspec)          (G_TYPE_CHECK_INSTANCE_TYPE ((pspec), G_TYPE_PARAM))
39 #define G_PARAM_SPEC_GET_CLASS(pspec)   (G_TYPE_INSTANCE_GET_CLASS ((pspec), G_TYPE_PARAM, GParamSpecClass))
40 #define G_PARAM_SPEC_VALUE_TYPE(pspec)  (G_PARAM_SPEC (pspec)->value_type)
41 #define G_IS_VALUE_PARAM(value)         (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_PARAM))
42        
43
44 /* --- flags --- */
45 typedef enum
46 {
47   G_PARAM_READABLE            = 1 << 0,
48   G_PARAM_WRITABLE            = 1 << 1,
49   G_PARAM_CONSTRUCT           = 1 << 2,
50   G_PARAM_CONSTRUCT_ONLY      = 1 << 3,
51   G_PARAM_PRIVATE             = 1 << 4,
52 #define G_PARAM_MASK            (0x000000ff)
53   /* bits in the range 0xffffff00 are reserved for 3rd party usage */
54 #define G_PARAM_USER_MASK       (0xffffff00)
55 } GParamFlags;
56 #define G_PARAM_READWRITE       (G_PARAM_READABLE | G_PARAM_WRITABLE)
57
58
59 /* --- typedefs & structures --- */
60 typedef struct _GParamSpec      GParamSpec;
61 typedef struct _GParamSpecClass GParamSpecClass;
62 typedef struct _GParamSpecPool  GParamSpecPool;
63 struct _GParamSpec
64 {
65   GTypeInstance  g_type_instance;
66
67   gchar         *name;
68   gchar         *nick;
69   gchar         *blurb;
70   GParamFlags    flags;
71   GType          value_type;
72
73   /*< private >*/
74   GType          owner_type;
75   GData         *qdata;
76   guint          ref_count;
77 };
78 struct _GParamSpecClass
79 {
80   GTypeClass      g_type_class;
81
82   GType           value_type;
83
84   void          (*finalize)             (GParamSpec   *pspec);
85
86   /* GParam methods */
87   void          (*value_set_default)    (GParamSpec   *pspec,
88                                          GValue       *value);
89   gboolean      (*value_validate)       (GParamSpec   *pspec,
90                                          GValue       *value);
91   gint          (*values_cmp)           (GParamSpec   *pspec,
92                                          const GValue *value1,
93                                          const GValue *value2);
94 };
95
96
97 /* --- prototypes --- */
98 GParamSpec*     g_param_spec_ref                (GParamSpec    *pspec);
99 void            g_param_spec_unref              (GParamSpec    *pspec);
100 void            g_param_spec_sink               (GParamSpec    *pspec);
101 gpointer        g_param_spec_get_qdata          (GParamSpec    *pspec,
102                                                  GQuark         quark);
103 void            g_param_spec_set_qdata          (GParamSpec    *pspec,
104                                                  GQuark         quark,
105                                                  gpointer       data);
106 void            g_param_spec_set_qdata_full     (GParamSpec    *pspec,
107                                                  GQuark         quark,
108                                                  gpointer       data,
109                                                  GDestroyNotify destroy);
110 gpointer        g_param_spec_steal_qdata        (GParamSpec    *pspec,
111                                                  GQuark         quark);
112 void            g_param_value_set_default       (GParamSpec    *pspec,
113                                                  GValue        *value);
114 gboolean        g_param_value_defaults          (GParamSpec    *pspec,
115                                                  GValue        *value);
116 gboolean        g_param_value_validate          (GParamSpec    *pspec,
117                                                  GValue        *value);
118 gint            g_param_values_cmp              (GParamSpec    *pspec,
119                                                  const GValue  *value1,
120                                                  const GValue  *value2);
121 void            g_value_set_param               (GValue        *value,
122                                                  GParamSpec    *param);
123 GParamSpec*     g_value_get_param               (const GValue  *value);
124 GParamSpec*     g_value_dup_param               (const GValue  *value);
125
126
127 /* --- convenience functions --- */
128 typedef struct _GParamSpecTypeInfo GParamSpecTypeInfo;
129 struct _GParamSpecTypeInfo
130 {
131   /* type system portion */
132   guint16         instance_size;                               /* obligatory */
133   guint16         n_preallocs;                                 /* optional */
134   void          (*instance_init)        (GParamSpec   *pspec); /* optional */
135
136   /* class portion */
137   GType           value_type;                                  /* obligatory */
138   void          (*finalize)             (GParamSpec   *pspec); /* optional */
139   void          (*value_set_default)    (GParamSpec   *pspec,  /* recommended */
140                                          GValue       *value);
141   gboolean      (*value_validate)       (GParamSpec   *pspec,  /* optional */
142                                          GValue       *value);
143   gint          (*values_cmp)           (GParamSpec   *pspec,  /* recommended */
144                                          const GValue *value1,
145                                          const GValue *value2);
146 };
147 GType   g_param_type_register_static    (const gchar              *name,
148                                          const GParamSpecTypeInfo *pspec_info);
149
150
151 /* --- protected --- */
152 gpointer        g_param_spec_internal           (GType          param_type,
153                                                  const gchar   *name,
154                                                  const gchar   *nick,
155                                                  const gchar   *blurb,
156                                                  GParamFlags    flags);
157 GParamSpecPool* g_param_spec_pool_new           (gboolean       type_prefixing);
158 void            g_param_spec_pool_insert        (GParamSpecPool *pool,
159                                                  GParamSpec     *pspec,
160                                                  GType           owner_type);
161 void            g_param_spec_pool_remove        (GParamSpecPool *pool,
162                                                  GParamSpec     *pspec);
163 GParamSpec*     g_param_spec_pool_lookup        (GParamSpecPool *pool,
164                                                  const gchar    *param_name,
165                                                  GType           owner_type,
166                                                  gboolean        walk_ancestors,
167                                                  const gchar   **trailer_p);
168
169
170 /* contracts:
171  *
172  * gboolean value_validate (GParamSpec *pspec,
173  *                          GValue     *value):
174  *      modify value contents in the least destructive way, so
175  *      that it complies with pspec's requirements (i.e.
176  *      according to minimum/maximum ranges etc...). return
177  *      whether modification was necessary.
178  *
179  * gint values_cmp (GParamSpec   *pspec,
180  *                  const GValue *value1,
181  *                  const GValue *value2):
182  *      return value1 - value2, i.e. <0 if value1 < value2,
183  *      >0 if value1 > value2, and 0 otherwise (they are equal)
184  */
185
186 #ifdef __cplusplus
187 }
188 #endif /* __cplusplus */
189
190 #endif /* __G_PARAM_H__ */