2 * @file event.h Event API
7 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #ifndef _GAIM_EVENT_H_
24 #define _GAIM_EVENT_H_
31 typedef enum gaim_event
49 event_chat_buddy_join
,
50 event_chat_buddy_leave
,
56 event_new_conversation
,
59 event_im_displayed_sent
,
60 event_im_displayed_rcvd
,
61 event_chat_send_invite
,
63 event_del_conversation
,
65 /* any others? it's easy to add... */
69 typedef int (*GaimSignalBroadcastFunc
)(GaimEvent event
, void *data
,
73 * Connects a signal handler to a gaim event.
75 * @param module The optional module handle.
76 * @param event The event to connect to.
77 * @param func The callback function.
78 * @param data The data to pass to the callback function.
80 * @see gaim_signal_disconnect()
82 void gaim_signal_connect(void *module
, GaimEvent event
,
83 void *func
, void *data
);
86 * Disconnects a signal handler from a gaim event.
88 * @param module The optional module handle.
89 * @param event The event to disconnect from.
90 * @param func The registered function to disconnect.
92 * @see gaim_signal_connect()
94 void gaim_signal_disconnect(void *module
, GaimEvent event
,
98 * Removes all callbacks associated with a handle.
100 * @param handle The handle.
102 void gaim_signals_disconnect_by_handle(void *handle
);
105 * Registers a function that re-broadcasts events.
107 * @param func The function.
108 * @param data Data to be passed to the callback.
110 void gaim_signals_register_broadcast_func(GaimSignalBroadcastFunc func
,
114 * Unregisters a function that re-broadcasts events.
116 * @param func The function.
118 void gaim_signals_unregister_broadcast_func(GaimSignalBroadcastFunc func
);
121 * Returns a list of all signal callbacks.
123 * @return A list of all signal callbacks.
125 GList
*gaim_signals_get_callbacks(void);
128 * Broadcasts an event to all registered signal handlers.
130 * @param event The event to broadcast
132 * @see gaim_signal_connect()
133 * @see gaim_signal_disconnect()
135 int gaim_event_broadcast(GaimEvent event
, ...);
138 * Returns a human-readable representation of an event name.
140 * @param event The event.
142 * @return A human-readable string of the name.
144 const char *gaim_event_get_name(GaimEvent event
);
146 #endif /* _GAIM_EVENT_H_ */