add an instance member value_type so the default value of the pspec class
[platform/upstream/glib.git] / gobject / gsignal.h
1 /* GObject - GLib Type, Object, Parameter and Signal Library
2  * Copyright (C) 2000 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_SIGNAL_H__
20 #define __G_SIGNAL_H__
21
22
23 #include        <gobject/gclosure.h>
24 #include        <gobject/gvalue.h>
25 #include        <gobject/gparam.h>
26 #include        <gobject/gmarshal.h>
27
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif /* __cplusplus */
32
33
34 /* --- typedefs --- */
35 typedef struct _GSignalQuery             GSignalQuery;
36 typedef struct _GSignalInvocationHint    GSignalInvocationHint;
37 typedef GClosureMarshal                  GSignalCMarshaller;
38 typedef gboolean (*GSignalEmissionHook) (GSignalInvocationHint *ihint,
39                                          guint                  n_param_values,
40                                          const GValue          *param_values);
41 typedef gboolean (*GSignalAccumulator)  (GSignalInvocationHint *ihint,
42                                          GValue                *return_accu,
43                                          const GValue          *return_value);
44
45
46 /* --- run & match types --- */
47 typedef enum
48 {
49   G_SIGNAL_RUN_FIRST    = 1 << 0,
50   G_SIGNAL_RUN_LAST     = 1 << 1,
51   G_SIGNAL_RUN_CLEANUP  = 1 << 2,
52   G_SIGNAL_NO_RECURSE   = 1 << 3,
53   G_SIGNAL_DETAILED     = 1 << 4,
54   G_SIGNAL_ACTION       = 1 << 5,
55   G_SIGNAL_NO_HOOKS     = 1 << 6
56 #define G_SIGNAL_FLAGS_MASK  0x7f
57 } GSignalFlags;
58 typedef enum
59 {
60   G_SIGNAL_MATCH_ID        = 1 << 0,
61   G_SIGNAL_MATCH_DETAIL    = 1 << 1,
62   G_SIGNAL_MATCH_CLOSURE   = 1 << 2,
63   G_SIGNAL_MATCH_FUNC      = 1 << 3,
64   G_SIGNAL_MATCH_DATA      = 1 << 4,
65   G_SIGNAL_MATCH_UNBLOCKED = 1 << 5
66 #define G_SIGNAL_MATCH_MASK  0x3f
67 } GSignalMatchType;
68
69
70 /* --- signal information --- */
71 struct _GSignalInvocationHint
72 {
73   guint         signal_id;
74   GQuark        detail;
75   GSignalFlags  run_type;
76 };
77 struct _GSignalQuery
78 {
79   guint         signal_id;
80   const gchar  *signal_name;
81   GType         itype;
82   GSignalFlags  signal_flags;
83   GType         return_type;
84   guint         n_params;
85   const GType  *param_types;
86 };
87
88
89 /* --- signals --- */
90 guint   g_signal_new                          (const gchar       *signal_name,
91                                                GType              itype,
92                                                GSignalFlags       signal_flags,
93                                                GClosure          *class_closure,
94                                                GSignalAccumulator accumulator,
95                                                GSignalCMarshaller c_marshaller,
96                                                GType              return_type,
97                                                guint              n_params,
98                                                ...);
99 guint   g_signal_newv                         (const gchar       *signal_name,
100                                                GType              itype,
101                                                GSignalFlags       signal_flags,
102                                                GClosure          *class_closure,
103                                                GSignalAccumulator accumulator,
104                                                GSignalCMarshaller c_marshaller,
105                                                GType              return_type,
106                                                guint              n_params,
107                                                GType             *param_types);
108 void    g_signal_emitv                        (const GValue      *instance_and_params,
109                                                guint              signal_id,
110                                                GQuark             detail,
111                                                GValue            *return_value);
112 void    g_signal_emit_valist                  (gpointer           instance,
113                                                guint              signal_id,
114                                                GQuark             detail,
115                                                va_list            var_args);
116 void    g_signal_emit                         (gpointer           instance,
117                                                guint              signal_id,
118                                                GQuark             detail,
119                                                ...);
120 void    g_signal_emit_by_name                 (gpointer           instance,
121                                                const gchar       *detailed_signal,
122                                                ...);
123 guint   g_signal_lookup                       (const gchar       *name,
124                                                GType              itype);
125 gchar*  g_signal_name                         (guint              signal_id);
126 void    g_signal_query                        (guint              signal_id,
127                                                GSignalQuery      *query);
128 guint*  g_signal_list_ids                     (GType              itype,
129                                                guint             *n_ids);
130
131 /* --- signal emissions --- */
132 void    g_signal_stop_emission                (gpointer           instance,
133                                                guint              signal_id,
134                                                GQuark             detail);
135 guint   g_signal_add_emission_hook_full       (guint              signal_id,
136                                                GClosure          *closure);
137 void    g_signal_remove_emission_hook         (guint              signal_id,
138                                                guint              hook_id);
139
140
141 /* --- signal handlers --- */
142 gboolean g_signal_has_handler_pending         (gpointer           instance,
143                                                guint              signal_id,
144                                                GQuark             detail,
145                                                gboolean           may_be_blocked);
146 guint    g_signal_connect_closure_by_id       (gpointer           instance,
147                                                guint              signal_id,
148                                                GQuark             detail,
149                                                GClosure          *closure,
150                                                gboolean           after);
151 guint    g_signal_connect_closure             (gpointer           instance,
152                                                const gchar       *detailed_signal,
153                                                GClosure          *closure,
154                                                gboolean           after);
155 guint    g_signal_connect_data                (gpointer           instance,
156                                                const gchar       *detailed_signal,
157                                                GCallback          c_handler,
158                                                gpointer           data,
159                                                GClosureNotify     destroy_data,
160                                                gboolean           swapped,
161                                                gboolean           after);
162 void     g_signal_handler_block               (gpointer           instance,
163                                                guint              handler_id);
164 void     g_signal_handler_unblock             (gpointer           instance,
165                                                guint              handler_id);
166 void     g_signal_handler_disconnect          (gpointer           instance,
167                                                guint              handler_id);
168 guint    g_signal_handler_find                (gpointer           instance,
169                                                GSignalMatchType   mask,
170                                                guint              signal_id,
171                                                GQuark             detail,
172                                                GClosure          *closure,
173                                                gpointer           func,
174                                                gpointer           data);
175 guint    g_signal_handlers_block_matched      (gpointer           instance,
176                                                GSignalMatchType   mask,
177                                                guint              signal_id,
178                                                GQuark             detail,
179                                                GClosure          *closure,
180                                                gpointer           func,
181                                                gpointer           data);
182 guint    g_signal_handlers_unblock_matched    (gpointer           instance,
183                                                GSignalMatchType   mask,
184                                                guint              signal_id,
185                                                GQuark             detail,
186                                                GClosure          *closure,
187                                                gpointer           func,
188                                                gpointer           data);
189 guint    g_signal_handlers_disconnect_matched (gpointer           instance,
190                                                GSignalMatchType   mask,
191                                                guint              signal_id,
192                                                GQuark             detail,
193                                                GClosure          *closure,
194                                                gpointer           func,
195                                                gpointer           data);
196 gboolean g_signal_parse_name                  (const gchar       *detailed_signal,
197                                                GType              itype,
198                                                guint             *signal_id_p,
199                                                GQuark            *detail_p,
200                                                gboolean           force_detail_quark);
201
202
203 /*< private >*/
204 void     g_signal_handlers_destroy            (gpointer           instance);
205 void     _g_signals_destroy                   (GType              itype);
206
207
208 #ifdef __cplusplus
209 }
210 #endif /* __cplusplus */
211
212 #endif /* __G_SIGNAL_H__ */