changed collect_format, collect_value() and lcopy_format, lcopy_value() in
[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 } GSignalFlags;
57 #define G_SIGNAL_FLAGS_MASK  0x7f
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 } GSignalMatchType;
67 #define G_SIGNAL_MATCH_MASK  0x3f
68 #define G_SIGNAL_TYPE_STATIC_SCOPE (G_TYPE_FLAG_RESERVED_ID_BIT)
69
70
71 /* --- signal information --- */
72 struct _GSignalInvocationHint
73 {
74   guint         signal_id;
75   GQuark        detail;
76   GSignalFlags  run_type;
77 };
78 struct _GSignalQuery
79 {
80   guint         signal_id;
81   const gchar  *signal_name;
82   GType         itype;       /* mangled with G_SIGNAL_TYPE_STATIC_SCOPE flag */
83   GSignalFlags  signal_flags;
84   GType         return_type; /* mangled with G_SIGNAL_TYPE_STATIC_SCOPE flag */
85   guint         n_params;
86   const GType  *param_types;
87 };
88
89
90 /* --- signals --- */
91 guint   g_signal_newv                         (const gchar       *signal_name,
92                                                GType              itype,
93                                                GSignalFlags       signal_flags,
94                                                GClosure          *class_closure,
95                                                GSignalAccumulator accumulator,
96                                                GSignalCMarshaller c_marshaller,
97                                                GType              return_type,
98                                                guint              n_params,
99                                                GType             *param_types);
100 guint   g_signal_new_valist                   (const gchar       *signal_name,
101                                                GType              itype,
102                                                GSignalFlags       signal_flags,
103                                                GClosure          *class_closure,
104                                                GSignalAccumulator accumulator,
105                                                GSignalCMarshaller c_marshaller,
106                                                GType              return_type,
107                                                guint              n_params,
108                                                va_list            args);
109 guint   g_signal_newc                         (const gchar       *signal_name,
110                                                GType              itype,
111                                                GSignalFlags       signal_flags,
112                                                guint              class_offset,
113                                                GSignalAccumulator accumulator,
114                                                GSignalCMarshaller c_marshaller,
115                                                GType              return_type,
116                                                guint              n_params,
117                                                ...);
118 void    g_signal_emitv                        (const GValue      *instance_and_params,
119                                                guint              signal_id,
120                                                GQuark             detail,
121                                                GValue            *return_value);
122 void    g_signal_emit_valist                  (gpointer           instance,
123                                                guint              signal_id,
124                                                GQuark             detail,
125                                                va_list            var_args);
126 void    g_signal_emit                         (gpointer           instance,
127                                                guint              signal_id,
128                                                GQuark             detail,
129                                                ...);
130 void    g_signal_emit_by_name                 (gpointer           instance,
131                                                const gchar       *detailed_signal,
132                                                ...);
133 guint   g_signal_lookup                       (const gchar       *name,
134                                                GType              itype);
135 gchar*  g_signal_name                         (guint              signal_id);
136 void    g_signal_query                        (guint              signal_id,
137                                                GSignalQuery      *query);
138 guint*  g_signal_list_ids                     (GType              itype,
139                                                guint             *n_ids);
140
141 /* --- signal emissions --- */
142 void    g_signal_stop_emission                (gpointer           instance,
143                                                guint              signal_id,
144                                                GQuark             detail);
145 guint   g_signal_add_emission_hook_full       (guint              signal_id,
146                                                GClosure          *closure);
147 void    g_signal_remove_emission_hook         (guint              signal_id,
148                                                guint              hook_id);
149
150
151 /* --- signal handlers --- */
152 gboolean g_signal_has_handler_pending         (gpointer           instance,
153                                                guint              signal_id,
154                                                GQuark             detail,
155                                                gboolean           may_be_blocked);
156 guint    g_signal_connect_closure_by_id       (gpointer           instance,
157                                                guint              signal_id,
158                                                GQuark             detail,
159                                                GClosure          *closure,
160                                                gboolean           after);
161 guint    g_signal_connect_closure             (gpointer           instance,
162                                                const gchar       *detailed_signal,
163                                                GClosure          *closure,
164                                                gboolean           after);
165 guint    g_signal_connect_data                (gpointer           instance,
166                                                const gchar       *detailed_signal,
167                                                GCallback          c_handler,
168                                                gpointer           data,
169                                                GClosureNotify     destroy_data,
170                                                gboolean           swapped,
171                                                gboolean           after);
172 void     g_signal_handler_block               (gpointer           instance,
173                                                guint              handler_id);
174 void     g_signal_handler_unblock             (gpointer           instance,
175                                                guint              handler_id);
176 void     g_signal_handler_disconnect          (gpointer           instance,
177                                                guint              handler_id);
178 guint    g_signal_handler_find                (gpointer           instance,
179                                                GSignalMatchType   mask,
180                                                guint              signal_id,
181                                                GQuark             detail,
182                                                GClosure          *closure,
183                                                gpointer           func,
184                                                gpointer           data);
185 guint    g_signal_handlers_block_matched      (gpointer           instance,
186                                                GSignalMatchType   mask,
187                                                guint              signal_id,
188                                                GQuark             detail,
189                                                GClosure          *closure,
190                                                gpointer           func,
191                                                gpointer           data);
192 guint    g_signal_handlers_unblock_matched    (gpointer           instance,
193                                                GSignalMatchType   mask,
194                                                guint              signal_id,
195                                                GQuark             detail,
196                                                GClosure          *closure,
197                                                gpointer           func,
198                                                gpointer           data);
199 guint    g_signal_handlers_disconnect_matched (gpointer           instance,
200                                                GSignalMatchType   mask,
201                                                guint              signal_id,
202                                                GQuark             detail,
203                                                GClosure          *closure,
204                                                gpointer           func,
205                                                gpointer           data);
206 gboolean g_signal_parse_name                  (const gchar       *detailed_signal,
207                                                GType              itype,
208                                                guint             *signal_id_p,
209                                                GQuark            *detail_p,
210                                                gboolean           force_detail_quark);
211
212
213 /*< private >*/
214 void     g_signal_handlers_destroy            (gpointer           instance);
215 void     _g_signals_destroy                   (GType              itype);
216
217
218 #ifdef __cplusplus
219 }
220 #endif /* __cplusplus */
221
222 #endif /* __G_SIGNAL_H__ */