comparison src/gtklist.h @ 4944:5fe846b7603f

[gaim-migrate @ 5278] Fixes by Rob "Robot101" McQueen: Buddies who sign off within 10 seconds of signing on won't get stuck "online" forever Idle times refresh every minute Show icons/text on the buddy list buttons works now URL tooltips in gtkimhtml won't linger around for no good reason. Thanks, Rob. And Rob Flynn is a spoil sport ;) committer: Tailor Script <tailor@pidgin.im>
author Sean Egan <seanegan@gmail.com>
date Tue, 01 Apr 2003 07:57:13 +0000
parents 8a20332821b6
children f82e6763e039
comparison
equal deleted inserted replaced
4943:f0c7d092948d 4944:5fe846b7603f
49 GtkWidget *vbox; /**< This is the vbox that everything gets packed into. Your plugin might 49 GtkWidget *vbox; /**< This is the vbox that everything gets packed into. Your plugin might
50 want to pack something in it itself. Go, plugins! */ 50 want to pack something in it itself. Go, plugins! */
51 51
52 GtkWidget *treeview; /**< It's a treeview... d'uh. */ 52 GtkWidget *treeview; /**< It's a treeview... d'uh. */
53 GtkTreeStore *treemodel; /**< This is the treemodel. */ 53 GtkTreeStore *treemodel; /**< This is the treemodel. */
54
55 GtkTreeViewColumn *idle_column, 54 GtkTreeViewColumn *idle_column,
56 *warning_column, 55 *warning_column,
57 *buddy_icon_column; 56 *buddy_icon_column;
58 57
59 GtkWidget *bbox; /**< A Button Box. */ 58 GtkWidget *bbox; /**< A Button Box. */
59
60 guint refresh_timer; /**< The timer for refreshing every 30 seconds */
60 61
61 guint timeout; /**< The timeout for the tooltip. */ 62 guint timeout; /**< The timeout for the tooltip. */
62 GdkRectangle rect; /**< This is the bounding rectangle of the 63 GdkRectangle rect; /**< This is the bounding rectangle of the
63 cell we're currently hovering over. This is 64 cell we're currently hovering over. This is
64 used for tooltips. */ 65 used for tooltips. */