return whether a value got removed.
[platform/upstream/glib.git] / gobject / gobject.h
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2  * Copyright (C) 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 #ifndef __G_OBJECT_H__
20 #define __G_OBJECT_H__
21
22 #include        <gobject/gtype.h>
23 #include        <gobject/gvalue.h>
24 #include        <gobject/gparam.h>
25 #include        <gobject/gclosure.h>
26
27
28 #ifdef __cplusplus
29 extern "C" {
30 #endif /* __cplusplus */
31
32
33 /* --- type macros --- */
34 #define G_TYPE_IS_OBJECT(type)     (G_TYPE_FUNDAMENTAL (type) == G_TYPE_OBJECT)
35 #define G_OBJECT(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), G_TYPE_OBJECT, GObject))
36 #define G_OBJECT_CLASS(class)      (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_OBJECT, GObjectClass))
37 #define G_IS_OBJECT(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), G_TYPE_OBJECT))
38 #define G_IS_OBJECT_CLASS(class)   (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_OBJECT))
39 #define G_OBJECT_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS ((object), G_TYPE_OBJECT, GObjectClass))
40 #define G_OBJECT_TYPE(object)      (G_TYPE_FROM_INSTANCE (object))
41 #define G_OBJECT_TYPE_NAME(object) (g_type_name (G_OBJECT_TYPE (object)))
42 #define G_OBJECT_CLASS_TYPE(class) (G_TYPE_FROM_CLASS (class))
43 #define G_OBJECT_CLASS_NAME(class) (g_type_name (G_OBJECT_CLASS_TYPE (class)))
44 #define G_IS_VALUE_OBJECT(value)   (G_TYPE_CHECK_VALUE_TYPE ((value), G_TYPE_OBJECT))
45
46
47 /* --- typedefs & structures --- */
48 typedef struct _GObject                  GObject;
49 typedef struct _GObjectClass             GObjectClass;
50 typedef struct _GObjectConstructParam    GObjectConstructParam;
51 typedef void (*GObjectGetPropertyFunc)  (GObject      *object,
52                                          guint         property_id,
53                                          GValue       *value,
54                                          GParamSpec   *pspec,
55                                          const gchar  *trailer);
56 typedef void (*GObjectSetPropertyFunc)  (GObject      *object,
57                                          guint         property_id,
58                                          const GValue *value,
59                                          GParamSpec   *pspec,
60                                          const gchar  *trailer);
61 typedef void (*GObjectFinalizeFunc)     (GObject      *object);
62 struct  _GObject
63 {
64   GTypeInstance g_type_instance;
65   
66   /*< private >*/
67   guint         ref_count;
68   GData        *qdata;
69 };
70 struct  _GObjectClass
71 {
72   GTypeClass   g_type_class;
73
74   /* private, these fields might vanish */
75   guint        n_property_specs;
76   GParamSpec **property_specs;
77   GSList      *construct_properties;
78
79   /* public overridable methods */
80   GObject*   (*constructor)     (GType                  type,
81                                  guint                  n_construct_properties,
82                                  GObjectConstructParam *construct_properties);
83   void       (*get_property)            (GObject        *object,
84                                          guint           property_id,
85                                          GValue         *value,
86                                          GParamSpec     *pspec,
87                                          const gchar    *trailer);
88   void       (*set_property)            (GObject        *object,
89                                          guint           property_id,
90                                          const GValue   *value,
91                                          GParamSpec     *pspec,
92                                          const gchar    *trailer);
93   void       (*shutdown)                (GObject        *object);
94   void       (*finalize)                (GObject        *object);
95
96   /*< private >*/
97   void       (*dispatch_properties_changed) (GObject      *object,
98                                              guint         n_pspecs,
99                                              GParamSpec  **pspecs);
100
101   /* signals */
102   void       (*properties_changed)      (GObject        *object,
103                                          guint           n_pspecs,
104                                          GParamSpec    **pspecs);
105   void       (*notify)                  (GObject        *object,
106                                          GParamSpec     *pspec);
107 };
108 struct _GObjectConstructParam
109 {
110   GParamSpec  *pspec;
111   GValue      *value;
112   const gchar *trailer;
113 };
114
115
116 /* --- prototypes --- */
117 void        g_object_class_install_property   (GObjectClass   *oclass,
118                                                guint           property_id,
119                                                GParamSpec     *pspec);
120 GParamSpec* g_object_class_find_property      (GObjectClass   *oclass,
121                                                const gchar    *property_name);
122 gpointer    g_object_new                      (GType           object_type,
123                                                const gchar    *first_property_name,
124                                                ...);
125 gpointer    g_object_new_valist               (GType           object_type,
126                                                const gchar    *first_property_name,
127                                                va_list         var_args);
128 void        g_object_set                      (gpointer        object,
129                                                const gchar    *first_property_name,
130                                                ...);
131 void        g_object_get                      (gpointer        object,
132                                                const gchar    *first_property_name,
133                                                ...);
134 void        g_object_set_valist               (GObject        *object,
135                                                const gchar    *first_property_name,
136                                                va_list         var_args);
137 void        g_object_get_valist               (GObject        *object,
138                                                const gchar    *first_property_name,
139                                                va_list         var_args);
140 void        g_object_set_property             (GObject        *object,
141                                                const gchar    *property_name,
142                                                const GValue   *value);
143 void        g_object_get_property             (GObject        *object,
144                                                const gchar    *property_name,
145                                                GValue         *value);
146 void        g_object_freeze_notify            (GObject        *object);
147 void        g_object_notify                   (GObject        *object,
148                                                const gchar    *property_name);
149 void        g_object_thaw_notify              (GObject        *object);
150 gpointer    g_object_ref                      (gpointer        object);
151 void        g_object_unref                    (gpointer        object);
152 gpointer    g_object_get_qdata                (GObject        *object,
153                                                GQuark          quark);
154 void        g_object_set_qdata                (GObject        *object,
155                                                GQuark          quark,
156                                                gpointer        data);
157 void        g_object_set_qdata_full           (GObject        *object,
158                                                GQuark          quark,
159                                                gpointer        data,
160                                                GDestroyNotify  destroy);
161 gpointer    g_object_steal_qdata              (GObject        *object,
162                                                GQuark          quark);
163 gpointer    g_object_get_data                 (GObject        *object,
164                                                const gchar    *key);
165 void        g_object_set_data                 (GObject        *object,
166                                                const gchar    *key,
167                                                gpointer        data);
168 void        g_object_set_data_full            (GObject        *object,
169                                                const gchar    *key,
170                                                gpointer        data,
171                                                GDestroyNotify  destroy);
172 gpointer    g_object_steal_data               (GObject        *object,
173                                                const gchar    *key);
174 void        g_object_watch_closure            (GObject        *object,
175                                                GClosure       *closure);
176 GClosure*   g_cclosure_new_object             (GCallback       callback_func,
177                                                gpointer        object);
178 GClosure*   g_cclosure_new_object_swap        (GCallback       callback_func,
179                                                gpointer        object);
180 GClosure*   g_closure_new_object              (guint           sizeof_closure,
181                                                GObject        *object);
182 void        g_value_set_object                (GValue         *value,
183                                                GObject        *v_object);
184 GObject*    g_value_get_object                (const GValue   *value);
185 GObject*    g_value_dup_object                (const GValue   *value);
186 guint       g_signal_connect_object           (gpointer        instance,
187                                                const gchar    *detailed_signal,
188                                                GCallback       c_handler,
189                                                gpointer        gobject,
190                                                gboolean        swapped,
191                                                gboolean        after);
192
193
194 /* --- implementation macros --- */
195 #define G_OBJECT_WARN_INVALID_PROPERTY_ID(object, property_id, pspec) \
196 G_STMT_START { \
197   GObject *_object = (GObject*) (object); \
198   GParamSpec *_pspec = (GParamSpec*) (pspec); \
199   guint _property_id = (property_id); \
200   g_warning ("%s: invalid property id %u for \"%s\" of type `%s' in `%s'", \
201              G_STRLOC, \
202              _property_id, \
203              _pspec->name, \
204              g_type_name (G_PARAM_SPEC_TYPE (_pspec)), \
205              G_OBJECT_TYPE_NAME (_object)); \
206 } G_STMT_END
207
208
209
210 #ifdef __cplusplus
211 }
212 #endif /* __cplusplus */
213
214 #endif /* __G_OBJECT_H__ */