1 /* GObject - GLib Type, Object, Parameter and Signal Library
2 * Copyright (C) 2000 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_SIGNAL_H__
20 #define __G_SIGNAL_H__
23 #include <gobject/gclosure.h>
24 #include <gobject/gvalue.h>
25 #include <gobject/gparam.h>
26 #include <gobject/gmarshal.h>
31 #endif /* __cplusplus */
34 /* --- typedefs --- */
35 typedef struct _GSignalQuery GSignalQuery;
36 typedef struct _GSignalInvocationHint GSignalInvocationHint;
37 typedef GClosureMarshal GSignalCMarshaller;
38 typedef gboolean (*GSignalEmissionHook) (GSignalInvocationHint *ihint,
40 const GValue *param_values);
41 typedef gboolean (*GSignalAccumulator) (GSignalInvocationHint *ihint,
43 const GValue *return_value);
46 /* --- run & match types --- */
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
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
70 /* --- signal information --- */
71 struct _GSignalInvocationHint
75 GSignalFlags run_type;
80 const gchar *signal_name;
82 GSignalFlags signal_flags;
85 const GType *param_types;
90 guint g_signal_new (const gchar *signal_name,
92 GSignalFlags signal_flags,
93 GClosure *class_closure,
94 GSignalAccumulator accumulator,
95 GSignalCMarshaller c_marshaller,
99 guint g_signal_newv (const gchar *signal_name,
101 GSignalFlags signal_flags,
102 GClosure *class_closure,
103 GSignalAccumulator accumulator,
104 GSignalCMarshaller c_marshaller,
108 void g_signal_emitv (const GValue *instance_and_params,
111 GValue *return_value);
112 void g_signal_emit_valist (gpointer instance,
116 void g_signal_emit (gpointer instance,
120 void g_signal_emit_by_name (gpointer instance,
121 const gchar *detailed_signal,
123 guint g_signal_lookup (const gchar *name,
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,
131 /* --- signal emissions --- */
132 void g_signal_stop_emission (gpointer instance,
135 guint g_signal_add_emission_hook_full (guint signal_id,
137 void g_signal_remove_emission_hook (guint signal_id,
141 /* --- signal handlers --- */
142 gboolean g_signal_has_handler_pending (gpointer instance,
145 gboolean may_be_blocked);
146 guint g_signal_connect_closure_by_id (gpointer instance,
151 guint g_signal_connect_closure (gpointer instance,
152 const gchar *detailed_signal,
155 guint g_signal_connect_data (gpointer instance,
156 const gchar *detailed_signal,
159 GClosureNotify destroy_data,
162 void g_signal_handler_block (gpointer instance,
164 void g_signal_handler_unblock (gpointer instance,
166 void g_signal_handler_disconnect (gpointer instance,
168 guint g_signal_handler_find (gpointer instance,
169 GSignalMatchType mask,
175 guint g_signal_handlers_block_matched (gpointer instance,
176 GSignalMatchType mask,
182 guint g_signal_handlers_unblock_matched (gpointer instance,
183 GSignalMatchType mask,
189 guint g_signal_handlers_disconnect_matched (gpointer instance,
190 GSignalMatchType mask,
199 gboolean g_signal_parse_name (const gchar *detailed_signal,
203 gboolean force_detail_quark);
204 void g_signal_handlers_destroy (gpointer instance);
205 void _g_signals_destroy (GType itype);
210 #endif /* __cplusplus */
212 #endif /* __G_SIGNAL_H__ */