comparison src/prpl.h @ 4687:283fb289c510

[gaim-migrate @ 4998] This is a new buddy list. Lots of things about it just Don't Work. I probably already know about those things, and you'd just be wasting my time in submitting a bug report about it. I decided that instead of getting it to all work perfectly before committing, that I'd get it in cvs, and slowly fix it with regular commits. That way, it's easier to keep track of things, and other developers can help. Plus, I'm getting pissed off at the buddy list and want it to die. It's kinda boring, and doing nothing but the buddy list for such a long time has just gotten me very bitter. After 0.60 is released later this week, Gaim will resume being fun. This week is going to be very stressful, though, I'm sure. Things you ought to know about this buddy list: - It crashes - It leaks - There's no way to edit the buddy list, or access offline buddies - Most of the menus and buttons and whatnot just plain ol' don't work. - Status icons are only implemented for AIM. That's mostly just because I'm lazy. As such, you may want to be wary of updating this. If you do decide to update this, you may want to learn "cvs update -D yesterday" as well :) All the art there is just placeholder art. You probably won't really have as many problems as it sounds like you will from reading this. This message is extra-negative to stress that I don't want to be bothered with complaints about something not working about it :). I'll repeat: If something doesn't work, I probably already know about it. If you want to actually help with something, I'd be delighted to have it. IM me. -s. committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Mon, 10 Mar 2003 05:30:31 +0000
parents 6e7196dcfd37
children 534eaa4ead94
comparison
equal deleted inserted replaced
4686:a1de8a9c99ba 4687:283fb289c510
177 GaimProtocol protocol; /**< The protocol type. */ 177 GaimProtocol protocol; /**< The protocol type. */
178 GaimProtocolOptions options; /**< Protocol options. */ 178 GaimProtocolOptions options; /**< Protocol options. */
179 struct gaim_plugin *plug; /**< The base plugin structure. */ 179 struct gaim_plugin *plug; /**< The base plugin structure. */
180 char *name; 180 char *name;
181 181
182 /** Returns the XPM associated with the given user class. */ 182 /**
183 char **(* list_icon)(int); 183 * Returns the base icon name for the given buddy and account.
184 * If buddy is NULL, it will return the name to use for the account's icon
185 */
186 const char *(* list_icon)(struct gaim_account *account, struct buddy *buddy);
187
188 /**
189 * Fills the four char**'s with string identifiers for "emblems" that the UI will
190 * interpret and display as relevant
191 */
192 void (* list_emblems)(struct buddy *buddy, char **se, char **sw, char **nw, char **ne);
193
184 GList *(* away_states)(struct gaim_connection *gc); 194 GList *(* away_states)(struct gaim_connection *gc);
185 GList *(* actions)(struct gaim_connection *gc); 195 GList *(* actions)(struct gaim_connection *gc);
186 /* user_opts is a GList* of g_malloc'd struct proto_user_opts */ 196 /* user_opts is a GList* of g_malloc'd struct proto_user_opts */
187 GList *user_opts; 197 GList *user_opts;
188 GList *(* buddy_menu)(struct gaim_connection *, char *); 198 GList *(* buddy_menu)(struct gaim_connection *, char *);