1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 1998, 1999, 2000 Tim Janik and Red Hat, Inc.
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.
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.
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.
19 #ifndef __G_OBJECT_H__
20 #define __G_OBJECT_H__
22 #include <gobject/gtype.h>
23 #include <gobject/gvalue.h>
24 #include <gobject/gparam.h>
25 #include <gobject/gclosure.h>
30 #endif /* __cplusplus */
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))
46 #define G_NOTIFY_PRIORITY (G_PRIORITY_HIGH_IDLE + 20)
49 /* --- typedefs & structures --- */
50 typedef struct _GObject GObject;
51 typedef struct _GObjectClass GObjectClass;
52 typedef struct _GObjectConstructParam GObjectConstructParam;
53 typedef void (*GObjectGetParamFunc) (GObject *object,
57 const gchar *trailer);
58 typedef void (*GObjectSetParamFunc) (GObject *object,
62 const gchar *trailer);
63 typedef void (*GObjectFinalizeFunc) (GObject *object);
66 GTypeInstance g_type_instance;
74 GTypeClass g_type_class;
77 GParamSpec **param_specs;
79 GObject* (*constructor) (GType type, // FIXME!!!
80 guint n_construct_params,
81 GObjectConstructParam *construct_params);
82 void (*get_param) (GObject *object,
86 const gchar *trailer);
87 void (*set_param) (GObject *object,
91 const gchar *trailer);
92 void (*queue_param_changed) (GObject *object,
94 void (*dispatch_param_changed) (GObject *object,
96 void (*shutdown) (GObject *object);
97 void (*finalize) (GObject *object);
99 struct _GObjectConstructParam
107 /* --- prototypes --- */
108 void g_object_class_install_param (GObjectClass *oclass,
110 GParamSpec *pspec /* +1 ref */);
111 GParamSpec* g_object_class_find_param_spec (GObjectClass *oclass,
112 const gchar *param_name);
113 gpointer g_object_new (GType object_type,
114 const gchar *first_param_name,
116 gpointer g_object_new_valist (GType object_type,
117 const gchar *first_param_name,
119 void g_object_set (GObject *object,
120 const gchar *first_param_name,
122 void g_object_get (GObject *object,
123 const gchar *first_param_name,
125 void g_object_set_valist (GObject *object,
126 const gchar *first_param_name,
128 void g_object_get_valist (GObject *object,
129 const gchar *first_param_name,
131 void g_object_set_param (GObject *object,
132 const gchar *param_name,
133 const GValue *value);
134 void g_object_get_param (GObject *object,
135 const gchar *param_name,
137 void g_object_queue_param_changed (GObject *object,
138 const gchar *param_name);
139 GObject* g_object_ref (GObject *object);
140 void g_object_unref (GObject *object);
141 gpointer g_object_get_qdata (GObject *object,
143 void g_object_set_qdata (GObject *object,
146 void g_object_set_qdata_full (GObject *object,
149 GDestroyNotify destroy);
150 gpointer g_object_steal_qdata (GObject *object,
152 void g_object_watch_closure (GObject *object,
154 GClosure* g_cclosure_new_object (GCallback callback_func,
156 GClosure* g_cclosure_new_object_swap (GCallback callback_func,
158 GClosure* g_closure_new_object (guint sizeof_closure,
160 void g_value_set_object (GValue *value,
162 GObject* g_value_get_object (const GValue *value);
163 GObject* g_value_dup_object (const GValue *value);
166 /* --- implementation macros --- */
167 #define G_WARN_INVALID_PARAM_ID(object, param_id, pspec) \
169 GObject *_object = (GObject*) (object); \
170 GParamSpec *_pspec = (GParamSpec*) (pspec); \
171 guint _param_id = (param_id); \
172 g_warning ("%s: invalid parameter id %u for \"%s\" of type `%s' in `%s'", \
176 g_type_name (G_PARAM_SPEC_TYPE (_pspec)), \
177 BSE_OBJECT_TYPE_NAME (_object)); \
184 #endif /* __cplusplus */
186 #endif /* __G_OBJECT_H__ */