comparison plugins/SIGNALS @ 1038:daad2440a642

[gaim-migrate @ 1048] i have homework i need to be doing. it's due in less than 7 hours, and i haven't started and i need to sleep. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 31 Oct 2000 10:49:53 +0000
parents 91b7377e7b45
children 4927ce25d8cc
comparison
equal deleted inserted replaced
1037:1c663beef29d 1038:daad2440a642
9 event_buddy_signoff, 9 event_buddy_signoff,
10 event_buddy_away, 10 event_buddy_away,
11 event_buddy_back, 11 event_buddy_back,
12 event_buddy_idle, 12 event_buddy_idle,
13 event_buddy_unidle, 13 event_buddy_unidle,
14 event_blist_update,
15 event_chat_invited, 14 event_chat_invited,
16 event_chat_join, 15 event_chat_join,
17 event_chat_leave, 16 event_chat_leave,
18 event_chat_buddy_join, 17 event_chat_buddy_join,
19 event_chat_buddy_leave, 18 event_chat_buddy_leave,
99 98
100 Note that you can modify outgoing text. (You are _not_ encouraged to 99 Note that you can modify outgoing text. (You are _not_ encouraged to
101 do so ;-) .) 100 do so ;-) .)
102 101
103 event_buddy_signon: 102 event_buddy_signon:
104 char *who 103 struct gaim_connection *gc, char *who
105 104
106 'who' is who signed on. (There is currently no way to see which connection 105 'who' is who signed on. (There is currently no way to see which connection
107 reported that the buddy came online. Hopefully this will happen soon.) 106 reported that the buddy came online. Hopefully this will happen soon.)
108 107
109 event_buddy_signoff: 108 event_buddy_signoff:
110 char *who 109 struct gaim_connection *gc, char *who
111 110
112 'who' is who signed off. 111 'who' is who signed off.
113 112
114 event_buddy_away: 113 event_buddy_away:
115 char *who 114 struct gaim_connection *gc, char *who
116 115
117 'who' is who went away. 116 'who' is who went away.
118 117
119 event_buddy_back: 118 event_buddy_back:
120 char *who 119 struct gaim_connection *gc, char *who
121 120
122 'who' is who is no longer away. 121 'who' is who is no longer away.
123 122
124 event_buddy_idle: 123 event_buddy_idle:
125 char *who 124 struct gaim_connection *gc, char *who
126 125
127 'who' is who went idle. 126 'who' is who went idle.
128 127
129 event_buddy_unidle: 128 event_buddy_unidle:
130 char *who 129 struct gaim_connection *gc, char *who
131 130
132 'who' is who is no longer idle. 131 'who' is who is no longer idle.
133
134 event_blist_update:
135 (none)
136
137 This event is called when the buddylist is updated (automatically every
138 20 seconds for every connection, though the updates are usually syncopated)
139 132
140 event_chat_invited: 133 event_chat_invited:
141 struct gaim_connection *gc, char *who, char *room, char *message 134 struct gaim_connection *gc, char *who, char *room, char *message
142 135
143 'gc' is the connection that received the invitation. 136 'gc' is the connection that received the invitation.