comparison src/gtklist.h @ 5032:cb700c07ee07

[gaim-migrate @ 5375] Rewrote the buddy pounce code. It's now core/UI split, and may allow for more advanced stuff later. Pounce actions are now a UI thing, and the backend logic for registering, unregistering, and activating pouncs is now in core. Also, the buddy pounce dialog was redesigned. Oh, and there are new pounce types. You can now choose from: * Sign on * Sign off * Away * Return from away * Idle * Return from idle * Buddy starts typing * Buddy stops typing Should work. I've been using it for some time. If you find a bug, though, let me know. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 05 Apr 2003 10:14:21 +0000
parents f82e6763e039
children 4691c5936c01
comparison
equal deleted inserted replaced
5031:bc494c4a3991 5032:cb700c07ee07
53 GtkTreeStore *treemodel; /**< This is the treemodel. */ 53 GtkTreeStore *treemodel; /**< This is the treemodel. */
54 GtkTreeViewColumn *idle_column, 54 GtkTreeViewColumn *idle_column,
55 *warning_column, 55 *warning_column,
56 *buddy_icon_column; 56 *buddy_icon_column;
57 57
58 GtkWidget *bpmenu; /**< The buddy pounce menu. */
59
58 GtkWidget *bbox; /**< A Button Box. */ 60 GtkWidget *bbox; /**< A Button Box. */
59 GtkTooltips *tooltips; /**< Tooltips for the buttons. */ 61 GtkTooltips *tooltips; /**< Tooltips for the buttons. */
60 62
61 guint refresh_timer; /**< The timer for refreshing every 30 seconds */ 63 guint refresh_timer; /**< The timer for refreshing every 30 seconds */
62 64
77 unsigned int timer; /**< The timer handle. */ 79 unsigned int timer; /**< The timer handle. */
78 }; 80 };
79 81
80 #define GAIM_GTK_BLIST_NODE(node) ((struct gaim_gtk_blist_node *)(node)->ui_data) 82 #define GAIM_GTK_BLIST_NODE(node) ((struct gaim_gtk_blist_node *)(node)->ui_data)
81 #define GAIM_GTK_BLIST(list) ((struct gaim_gtk_buddy_list *)(list)->ui_data) 83 #define GAIM_GTK_BLIST(list) ((struct gaim_gtk_buddy_list *)(list)->ui_data)
84 #define GAIM_IS_GTK_BLIST(list) \
85 ((list)->ui_ops == gaim_get_gtk_blist_ui_ops())
82 86
83 /************************************************************************** 87 /**************************************************************************
84 * @name GTK+ Conversation API 88 * @name GTK+ Conversation API
85 **************************************************************************/ 89 **************************************************************************/
86 /** 90 /**