comparison src/prpl.h @ 4724:b9e7ccf21f9c

[gaim-migrate @ 5037] I stayed up all night and readded tooltips. It feels great. GTK 2 provides no easy way to add a tooltip to a row of a GtkTreeView so I had to do it all by hand. In doing so, I took some liberties and did some stuff most tooltips can't do... my tooltips have Markup and Pixbufs in them =-). Tomorrow, KingAnt gets back. I'll let him readd the AIM-specific tooltip stuff. Capabilities and logged on time used to live in the buddy struct, but were removed for being too aim-centric. KingAnt will put them back, I'm sure. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Wed, 12 Mar 2003 11:37:31 +0000
parents 534eaa4ead94
children c15e0699acae
comparison
equal deleted inserted replaced
4723:39068784aa08 4724:b9e7ccf21f9c
194 /** 194 /**
195 * Gets a short string representing this buddy's status. This will be shown 195 * Gets a short string representing this buddy's status. This will be shown
196 * on the buddy list. 196 * on the buddy list.
197 */ 197 */
198 const char *(* status_text)(struct buddy *buddy); 198 const char *(* status_text)(struct buddy *buddy);
199
200 /**
201 * Gets a string to put in the buddy list tooltip.
202 */
203 char *(* tooltip_text)(struct buddy *buddy);
199 204
200 GList *(* away_states)(struct gaim_connection *gc); 205 GList *(* away_states)(struct gaim_connection *gc);
201 GList *(* actions)(struct gaim_connection *gc); 206 GList *(* actions)(struct gaim_connection *gc);
202 /* user_opts is a GList* of g_malloc'd struct proto_user_opts */ 207 /* user_opts is a GList* of g_malloc'd struct proto_user_opts */
203 GList *user_opts; 208 GList *user_opts;