| 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. */ |