comparison src/gaim.h @ 4469:d76095396a0e

[gaim-migrate @ 4744] Phase 2 of the conversation rewrite! Did you think I was done? Okay everybody, the prefs page was slightly redesigned. Not much, though. It needs an overhaul, and still, not everything works.. What we have now is: Conversations | |- IMs |- Chats `- Tabs But that's not the good part of this patch. Oh no, not close. You see, in Conversations, we now have a "Placement" drop-down box. Though this prefs page is ugly and will eventually be redesigned, this gives you the opportunity to set one of a number of different types of conversation placement options. The defaults are: - Last created window: Adds the new conversation to the last created window, like how things have been lately. - New window: Adds the new conversation to a brand new window, every time. Tabs are still there, so you can drag them between windows if you want to manually group them. - By group: This is my new favorite. This will put the new conversation in whatever window it finds first that has another member from that same group on your buddy list. If it doesn't find one, it creates a new window. If the person you IM'd or the person who IM'd you is not on your list, it gets put in a window with other people not on your list. These are the only ones implemented, but don't think you're limited to that. You see, we have new API functions for registering these Conversation Placement functions. All a plugin would need to do is to write a function, take into account OPT_CONVO_COMBINE (oh yeah, "Show IMs and chats in same tabbed window" works again), make sure the conversation is added _somewhere_, and then just register that function. If the plugin is loaded, the user can select it from the existing drop-down box. Cool, huh? Make sure to unregister the function when the plugin is unloaded. Have fun. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Thu, 30 Jan 2003 09:22:15 +0000
parents a46c57f2d58b
children 3196d9044a45
comparison
equal deleted inserted replaced
4468:a046ff4793ca 4469:d76095396a0e
277 #define OPT_CHAT_SIDE_TAB 0x00000020 277 #define OPT_CHAT_SIDE_TAB 0x00000020
278 #define OPT_CHAT_BR_TAB 0x00000040 278 #define OPT_CHAT_BR_TAB 0x00000040
279 #define OPT_CHAT_TAB_COMPLETE 0x00000080 279 #define OPT_CHAT_TAB_COMPLETE 0x00000080
280 #define OPT_CHAT_OLD_STYLE_TAB 0x00000100 280 #define OPT_CHAT_OLD_STYLE_TAB 0x00000100
281 #define OPT_CHAT_COLORIZE 0x00000200 281 #define OPT_CHAT_COLORIZE 0x00000200
282
283 extern guint conv_placement_option;
282 284
283 extern guint font_options; 285 extern guint font_options;
284 #define OPT_FONT_BOLD 0x00000001 286 #define OPT_FONT_BOLD 0x00000001
285 #define OPT_FONT_ITALIC 0x00000002 287 #define OPT_FONT_ITALIC 0x00000002
286 #define OPT_FONT_UNDERLINE 0x00000008 288 #define OPT_FONT_UNDERLINE 0x00000008