Mercurial > pidgin
annotate src/gtklist.h @ 5084:a96653493416
[gaim-migrate @ 5439]
Fixed warnings (win32)
committer: Tailor Script <tailor@pidgin.im>
author | Herman Bloggs <hermanator12002@yahoo.com> |
---|---|
date | Tue, 08 Apr 2003 18:36:50 +0000 |
parents | b37d7d09ec83 |
children | 0f31d00d2501 |
rev | line source |
---|---|
4687 | 1 /** |
2 * @file gtklist.h GTK+ Buddy List API | |
5034
4691c5936c01
[gaim-migrate @ 5377]
Christian Hammond <chipx86@chipx86.com>
parents:
5032
diff
changeset
|
3 * @ingroup gtkui |
4687 | 4 * |
5 * gaim | |
6 * | |
7 * Copyright (C) 2002-2003, Sean Egan <sean.egan@binghamton.edu> | |
8 * | |
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. | |
13 * | |
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. | |
18 * | |
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 | |
22 */ | |
23 | |
24 #ifndef _GAIM_GTK_LIST_H_ | |
25 #define _GAIM_GTK_LIST_H_ | |
26 | |
27 enum { | |
28 STATUS_ICON_COLUMN, | |
5062 | 29 STATUS_ICON_VISIBLE_COLUMN, |
4687 | 30 NAME_COLUMN, |
31 WARNING_COLUMN, | |
32 IDLE_COLUMN, | |
33 BUDDY_ICON_COLUMN, | |
34 NODE_COLUMN, | |
35 BLIST_COLUMNS | |
36 }; | |
37 | |
4724 | 38 typedef enum { |
39 GAIM_STATUS_ICON_LARGE, | |
40 GAIM_STATUS_ICON_SMALL | |
41 } GaimStatusIconSize; | |
4687 | 42 /************************************************************************** |
43 * @name Structures | |
44 **************************************************************************/ | |
45 /** | |
46 * Like, everything you need to know about the gtk buddy list | |
47 */ | |
48 struct gaim_gtk_buddy_list { | |
49 GtkWidget *window; | |
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! */ | |
52 | |
53 GtkWidget *treeview; /**< It's a treeview... d'uh. */ | |
54 GtkTreeStore *treemodel; /**< This is the treemodel. */ | |
4725 | 55 GtkTreeViewColumn *idle_column, |
56 *warning_column, | |
57 *buddy_icon_column; | |
4944 | 58 |
5032
cb700c07ee07
[gaim-migrate @ 5375]
Christian Hammond <chipx86@chipx86.com>
parents:
5018
diff
changeset
|
59 GtkWidget *bpmenu; /**< The buddy pounce menu. */ |
cb700c07ee07
[gaim-migrate @ 5375]
Christian Hammond <chipx86@chipx86.com>
parents:
5018
diff
changeset
|
60 |
4687 | 61 GtkWidget *bbox; /**< A Button Box. */ |
5018 | 62 GtkTooltips *tooltips; /**< Tooltips for the buttons. */ |
4724 | 63 |
4944 | 64 guint refresh_timer; /**< The timer for refreshing every 30 seconds */ |
65 | |
4724 | 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 | |
69 used for tooltips. */ | |
70 GtkWidget *tipwindow; /**< The window used by the tooltip */ | |
4810 | 71 |
72 GaimBlistNode *selected_node; /**< The currently selected node */ | |
4687 | 73 }; |
74 | |
4695
4bdd9a5fd026
[gaim-migrate @ 5006]
Christian Hammond <chipx86@chipx86.com>
parents:
4687
diff
changeset
|
75 #define GAIM_GTK_BLIST(list) ((struct gaim_gtk_buddy_list *)(list)->ui_data) |
5032
cb700c07ee07
[gaim-migrate @ 5375]
Christian Hammond <chipx86@chipx86.com>
parents:
5018
diff
changeset
|
76 #define GAIM_IS_GTK_BLIST(list) \ |
cb700c07ee07
[gaim-migrate @ 5375]
Christian Hammond <chipx86@chipx86.com>
parents:
5018
diff
changeset
|
77 ((list)->ui_ops == gaim_get_gtk_blist_ui_ops()) |
4687 | 78 |
79 /************************************************************************** | |
80 * @name GTK+ Conversation API | |
81 **************************************************************************/ | |
82 /** | |
83 * Returns the UI operations structure for the buddy list. | |
84 * | |
85 * @return The GTK list operations structure. | |
86 */ | |
87 struct gaim_blist_ui_ops *gaim_get_gtk_blist_ui_ops(void); | |
88 | |
89 /** | |
90 * Returns the base image to represent the account, based on the currently selected theme | |
91 * | |
92 * @param account The account. | |
93 * | |
94 * @return The icon | |
95 */ | |
96 GdkPixbuf *create_prpl_icon(struct gaim_account *account); | |
97 | |
4697 | 98 /** |
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) | |
101 * | |
102 * @param list This is the core list that gets updated from | |
103 */ | |
4687 | 104 void gaim_gtk_blist_refresh(struct gaim_buddy_list *list); |
105 | |
4697 | 106 /** |
107 * Tells the buddy list to update its toolbar based on the preferences | |
108 * | |
109 */ | |
110 void gaim_gtk_blist_update_toolbar(); | |
111 | |
4698 | 112 /** |
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 | |
116 */ | |
117 void gaim_gtk_blist_docklet_toggle(); | |
118 void gaim_gtk_blist_docklet_add(); | |
119 void gaim_gtk_blist_docklet_remove(); | |
4729 | 120 void gaim_gtk_blist_update_columns(); |
4725 | 121 |
4687 | 122 #endif /* _GAIM_GTK_LIST_H_ */ |