Mercurial > pidgin
annotate src/event.h @ 5993:7baf424d78ea
[gaim-migrate @ 6441]
oops, i forgot that i was supposed to add this patch as well as commit the initial translation
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 02 Jul 2003 15:24:12 +0000 |
parents | 158196b2db19 |
children | 3b6f48766acb |
rev | line source |
---|---|
5205 | 1 /** |
2 * @file event.h Event API | |
3 * @ingroup core | |
4 * | |
5 * gaim | |
6 * | |
7 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org> | |
8 * | |
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. | |
13 * | |
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. | |
18 * | |
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 | |
22 */ | |
23 #ifndef _GAIM_EVENT_H_ | |
24 #define _GAIM_EVENT_H_ | |
25 | |
26 #include <glib.h> | |
27 | |
28 /** | |
29 * Event types | |
30 */ | |
31 typedef enum gaim_event | |
32 { | |
33 event_signon = 0, | |
34 event_signoff, | |
35 event_away, | |
36 event_back, | |
37 event_im_recv, | |
38 event_im_send, | |
39 event_buddy_signon, | |
40 event_buddy_signoff, | |
41 event_buddy_away, | |
42 event_buddy_back, | |
43 event_buddy_idle, | |
44 event_buddy_unidle, | |
45 event_blist_update, | |
46 event_chat_invited, | |
47 event_chat_join, | |
48 event_chat_leave, | |
49 event_chat_buddy_join, | |
50 event_chat_buddy_leave, | |
51 event_chat_recv, | |
52 event_chat_send, | |
53 event_warned, | |
54 event_error, | |
55 event_quit, | |
56 event_new_conversation, | |
57 event_set_info, | |
58 event_draw_menu, | |
59 event_im_displayed_sent, | |
60 event_im_displayed_rcvd, | |
61 event_chat_send_invite, | |
62 event_got_typing, | |
63 event_del_conversation, | |
64 event_connecting, | |
65 /* any others? it's easy to add... */ | |
66 | |
67 } GaimEvent; | |
68 | |
69 typedef int (*GaimSignalBroadcastFunc)(GaimEvent event, void *data, | |
70 va_list args); | |
71 | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
72 |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
73 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
74 extern "C" { |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
75 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
76 |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
77 /**************************************************************************/ |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
78 /** @name Signal API */ |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
79 /**************************************************************************/ |
5205 | 80 /** |
81 * Connects a signal handler to a gaim event. | |
82 * | |
83 * @param module The optional module handle. | |
84 * @param event The event to connect to. | |
85 * @param func The callback function. | |
86 * @param data The data to pass to the callback function. | |
87 * | |
88 * @see gaim_signal_disconnect() | |
89 */ | |
90 void gaim_signal_connect(void *module, GaimEvent event, | |
91 void *func, void *data); | |
92 | |
93 /** | |
94 * Disconnects a signal handler from a gaim event. | |
95 * | |
96 * @param module The optional module handle. | |
97 * @param event The event to disconnect from. | |
98 * @param func The registered function to disconnect. | |
99 * | |
100 * @see gaim_signal_connect() | |
101 */ | |
102 void gaim_signal_disconnect(void *module, GaimEvent event, | |
103 void *func); | |
104 | |
105 /** | |
106 * Removes all callbacks associated with a handle. | |
107 * | |
108 * @param handle The handle. | |
109 */ | |
110 void gaim_signals_disconnect_by_handle(void *handle); | |
111 | |
112 /** | |
113 * Registers a function that re-broadcasts events. | |
114 * | |
115 * @param func The function. | |
116 * @param data Data to be passed to the callback. | |
117 */ | |
118 void gaim_signals_register_broadcast_func(GaimSignalBroadcastFunc func, | |
119 void *data); | |
120 | |
121 /** | |
122 * Unregisters a function that re-broadcasts events. | |
123 * | |
124 * @param func The function. | |
125 */ | |
126 void gaim_signals_unregister_broadcast_func(GaimSignalBroadcastFunc func); | |
127 | |
128 /** | |
5230
779ffffb584a
[gaim-migrate @ 5600]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
129 * Returns a list of all signal callbacks. |
779ffffb584a
[gaim-migrate @ 5600]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
130 * |
779ffffb584a
[gaim-migrate @ 5600]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
131 * @return A list of all signal callbacks. |
779ffffb584a
[gaim-migrate @ 5600]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
132 */ |
779ffffb584a
[gaim-migrate @ 5600]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
133 GList *gaim_signals_get_callbacks(void); |
779ffffb584a
[gaim-migrate @ 5600]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
134 |
779ffffb584a
[gaim-migrate @ 5600]
Christian Hammond <chipx86@chipx86.com>
parents:
5205
diff
changeset
|
135 /** |
5205 | 136 * Broadcasts an event to all registered signal handlers. |
137 * | |
138 * @param event The event to broadcast | |
139 * | |
140 * @see gaim_signal_connect() | |
141 * @see gaim_signal_disconnect() | |
142 */ | |
143 int gaim_event_broadcast(GaimEvent event, ...); | |
144 | |
145 /** | |
146 * Returns a human-readable representation of an event name. | |
147 * | |
148 * @param event The event. | |
149 * | |
150 * @return A human-readable string of the name. | |
151 */ | |
152 const char *gaim_event_get_name(GaimEvent event); | |
153 | |
5944
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
154 /*@}*/ |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
155 |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
156 #ifdef __cplusplus |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
157 } |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
158 #endif |
158196b2db19
[gaim-migrate @ 6385]
Christian Hammond <chipx86@chipx86.com>
parents:
5230
diff
changeset
|
159 |
5205 | 160 #endif /* _GAIM_EVENT_H_ */ |