2 * @file gtklist.h GTK+ Buddy List API
7 * Copyright (C) 2002-2003, Sean Egan <sean.egan@binghamton.edu>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #ifndef _GAIM_GTK_LIST_H_
25 #define _GAIM_GTK_LIST_H_
29 STATUS_ICON_VISIBLE_COLUMN
,
39 GAIM_STATUS_ICON_LARGE
,
40 GAIM_STATUS_ICON_SMALL
42 /**************************************************************************
44 **************************************************************************/
46 * Like, everything you need to know about the gtk buddy list
48 struct gaim_gtk_buddy_list
{
50 GtkWidget
*vbox
; /**< This is the vbox that everything gets packed into. Your plugin might
51 want to pack something in it itself. Go, plugins! */
53 GtkWidget
*treeview
; /**< It's a treeview... d'uh. */
54 GtkTreeStore
*treemodel
; /**< This is the treemodel. */
55 GtkTreeViewColumn
*idle_column
,
59 GtkWidget
*bpmenu
; /**< The buddy pounce menu. */
61 GtkWidget
*bbox
; /**< A Button Box. */
62 GtkTooltips
*tooltips
; /**< Tooltips for the buttons. */
64 guint refresh_timer
; /**< The timer for refreshing every 30 seconds */
66 guint timeout
; /**< The timeout for the tooltip. */
67 GdkRectangle rect
; /**< This is the bounding rectangle of the
68 cell we're currently hovering over. This is
70 GtkWidget
*tipwindow
; /**< The window used by the tooltip */
72 GaimBlistNode
*selected_node
; /**< The currently selected node */
75 #define GAIM_GTK_BLIST(list) ((struct gaim_gtk_buddy_list *)(list)->ui_data)
76 #define GAIM_IS_GTK_BLIST(list) \
77 ((list)->ui_ops == gaim_get_gtk_blist_ui_ops())
79 /**************************************************************************
80 * @name GTK+ Conversation API
81 **************************************************************************/
83 * Returns the UI operations structure for the buddy list.
85 * @return The GTK list operations structure.
87 struct gaim_blist_ui_ops
*gaim_get_gtk_blist_ui_ops(void);
90 * Returns the base image to represent the account, based on the currently selected theme
92 * @param account The account.
96 GdkPixbuf
*create_prpl_icon(struct gaim_account
*account
);
99 * Refreshes all the nodes of the buddy list.
100 * This should only be called when something changes to affect most of the nodes (such as a ui preference changing)
102 * @param list This is the core list that gets updated from
104 void gaim_gtk_blist_refresh(struct gaim_buddy_list
*list
);
107 * Tells the buddy list to update its toolbar based on the preferences
110 void gaim_gtk_blist_update_toolbar();
113 * Useful for the docklet plugin and also for the win32 tray icon
114 * This is called when one of those is clicked--it will show/hide the
115 * buddy list/login window--depending on which is active
117 void gaim_gtk_blist_docklet_toggle();
118 void gaim_gtk_blist_docklet_add();
119 void gaim_gtk_blist_docklet_remove();
120 void gaim_gtk_blist_update_columns();
122 #endif /* _GAIM_GTK_LIST_H_ */