Tue, 02 Sep 2003 03:41:10 +0000
[gaim-migrate @ 7221]
This is contact support. Really.
It has a few bugs left in it, like sorting not working, and stuff like that,
but it's pretty solid for the most part.
I'm not in the mood to do a whole lot of typing, so just use and enjoy.
| 5228 | 1 | /** |
|
5248
f4f944f4dbe0
[gaim-migrate @ 5620]
Mark Doliner <markdoliner@pidgin.im>
parents:
5234
diff
changeset
|
2 | * @file gtkblist.h GTK+ Buddy List API |
| 5228 | 3 | * @ingroup gtkui |
| 4 | * | |
| 5 | * gaim | |
| 6 | * | |
| 7 | * Copyright (C) 2002-2003, Sean Egan <sean.egan@binghamton.edu> | |
| 5906 | 8 | * |
| 5228 | 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 | ||
|
5872
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
27 | #include "blist.h" |
|
754c63f29b77
[gaim-migrate @ 6304]
Christian Hammond <chipx86@chipx86.com>
parents:
5631
diff
changeset
|
28 | |
| 5228 | 29 | enum { |
| 30 | STATUS_ICON_COLUMN, | |
| 31 | STATUS_ICON_VISIBLE_COLUMN, | |
| 32 | NAME_COLUMN, | |
| 33 | WARNING_COLUMN, | |
| 34 | IDLE_COLUMN, | |
| 35 | BUDDY_ICON_COLUMN, | |
| 36 | NODE_COLUMN, | |
| 37 | BLIST_COLUMNS | |
| 38 | }; | |
| 39 | ||
| 40 | typedef enum { | |
| 41 | GAIM_STATUS_ICON_LARGE, | |
| 42 | GAIM_STATUS_ICON_SMALL | |
| 43 | } GaimStatusIconSize; | |
| 44 | /************************************************************************** | |
| 45 | * @name Structures | |
| 46 | **************************************************************************/ | |
| 47 | /** | |
| 48 | * Like, everything you need to know about the gtk buddy list | |
| 49 | */ | |
| 50 | struct gaim_gtk_buddy_list { | |
| 51 | GtkWidget *window; | |
| 52 | GtkWidget *vbox; /**< This is the vbox that everything gets packed into. Your plugin might | |
| 53 | want to pack something in it itself. Go, plugins! */ | |
| 54 | ||
| 55 | GtkWidget *treeview; /**< It's a treeview... d'uh. */ | |
| 56 | GtkTreeStore *treemodel; /**< This is the treemodel. */ | |
| 6695 | 57 | GtkTreeViewColumn *idle_column, |
| 58 | *warning_column, | |
| 5228 | 59 | *buddy_icon_column; |
| 60 | ||
|
5427
a45fa07ef20d
[gaim-migrate @ 5806]
Mark Doliner <markdoliner@pidgin.im>
parents:
5422
diff
changeset
|
61 | GtkItemFactory *ift; |
| 5228 | 62 | GtkWidget *bpmenu; /**< The buddy pounce menu. */ |
| 63 | ||
| 64 | GtkWidget *bbox; /**< A Button Box. */ | |
| 65 | GtkTooltips *tooltips; /**< Tooltips for the buttons. */ | |
| 66 | ||
| 67 | guint refresh_timer; /**< The timer for refreshing every 30 seconds */ | |
| 68 | ||
| 69 | guint timeout; /**< The timeout for the tooltip. */ | |
| 70 | GdkRectangle rect; /**< This is the bounding rectangle of the | |
| 6695 | 71 | cell we're currently hovering over. This is |
| 5228 | 72 | used for tooltips. */ |
| 73 | GtkWidget *tipwindow; /**< The window used by the tooltip */ | |
| 74 | ||
| 75 | GaimBlistNode *selected_node; /**< The currently selected node */ | |
| 76 | }; | |
| 77 | ||
| 78 | #define GAIM_GTK_BLIST(list) ((struct gaim_gtk_buddy_list *)(list)->ui_data) | |
| 79 | #define GAIM_IS_GTK_BLIST(list) \ | |
| 80 | ((list)->ui_ops == gaim_get_gtk_blist_ui_ops()) | |
| 81 | ||
| 82 | /************************************************************************** | |
| 5422 | 83 | * @name GTK+ Buddy List API |
| 5228 | 84 | **************************************************************************/ |
| 5906 | 85 | |
| 86 | /** | |
| 87 | * Initializes the GTK+ blist system. | |
| 88 | */ | |
| 89 | void gaim_gtk_blist_init(void); | |
| 90 | ||
| 5228 | 91 | /** |
| 92 | * Returns the UI operations structure for the buddy list. | |
| 93 | * | |
| 94 | * @return The GTK list operations structure. | |
| 95 | */ | |
| 96 | struct gaim_blist_ui_ops *gaim_get_gtk_blist_ui_ops(void); | |
| 97 | ||
| 98 | /** | |
| 99 | * Returns the base image to represent the account, based on the currently selected theme | |
| 100 | * | |
| 101 | * @param account The account. | |
| 6695 | 102 | * |
| 5228 | 103 | * @return The icon |
| 104 | */ | |
|
5563
d5a7852aa0cb
[gaim-migrate @ 5965]
Christian Hammond <chipx86@chipx86.com>
parents:
5427
diff
changeset
|
105 | GdkPixbuf *create_prpl_icon(GaimAccount *account); |
| 5228 | 106 | |
| 107 | /** | |
| 108 | * Refreshes all the nodes of the buddy list. | |
| 109 | * This should only be called when something changes to affect most of the nodes (such as a ui preference changing) | |
| 110 | * | |
| 111 | * @param list This is the core list that gets updated from | |
| 112 | */ | |
| 113 | void gaim_gtk_blist_refresh(struct gaim_buddy_list *list); | |
| 114 | ||
| 115 | /** | |
| 116 | * Tells the buddy list to update its toolbar based on the preferences | |
| 117 | * | |
| 118 | */ | |
| 119 | void gaim_gtk_blist_update_toolbar(); | |
| 120 | ||
| 121 | /** | |
| 122 | * Useful for the docklet plugin and also for the win32 tray icon | |
| 6695 | 123 | * This is called when one of those is clicked--it will show/hide the |
| 124 | * buddy list/login window--depending on which is active | |
| 5228 | 125 | */ |
| 126 | void gaim_gtk_blist_docklet_toggle(); | |
| 127 | void gaim_gtk_blist_docklet_add(); | |
| 128 | void gaim_gtk_blist_docklet_remove(); | |
| 129 | void gaim_gtk_blist_update_columns(); | |
|
5411
b3683d2acbb4
[gaim-migrate @ 5787]
Mark Doliner <markdoliner@pidgin.im>
parents:
5248
diff
changeset
|
130 | void gaim_gtk_blist_update_refresh_timeout(); |
| 5228 | 131 | |
| 132 | /** | |
| 133 | * Useful for the buddy ticker | |
| 134 | */ | |
| 5234 | 135 | GdkPixbuf *gaim_gtk_blist_get_status_icon(GaimBlistNode *node, |
| 5228 | 136 | GaimStatusIconSize size); |
| 137 | ||
| 5422 | 138 | /************************************************************************** |
| 139 | * @name GTK+ Buddy List sorting functions | |
| 140 | **************************************************************************/ | |
| 141 | ||
| 142 | typedef GtkTreeIter (*gaim_gtk_blist_sort_function)(GaimBlistNode *new, struct gaim_buddy_list *blist, GtkTreeIter group, GtkTreeIter *cur); | |
| 143 | ||
| 144 | extern GSList *gaim_gtk_blist_sort_methods; | |
| 145 | ||
| 146 | struct gaim_gtk_blist_sort_method { | |
| 5631 | 147 | char *id; |
| 5422 | 148 | char *name; |
| 149 | gaim_gtk_blist_sort_function func; | |
| 150 | }; | |
| 151 | ||
| 152 | /** | |
| 153 | * Registers a buddy list sorting method. | |
| 154 | * | |
| 5631 | 155 | * @param id The unique ID of the sorting method |
| 5422 | 156 | * @param name The method's name. |
| 157 | * @param func A pointer to the function. | |
| 158 | * | |
| 159 | */ | |
| 5631 | 160 | void gaim_gtk_blist_sort_method_reg(const char *id, const char *name, gaim_gtk_blist_sort_function func); |
| 5422 | 161 | |
| 162 | /** | |
| 163 | * Unregisters a buddy list sorting method. | |
| 164 | * | |
| 5631 | 165 | * @param id The method's id |
| 5422 | 166 | */ |
| 5631 | 167 | void gaim_gtk_blist_sort_method_unreg(const char *id); |
| 5422 | 168 | |
| 169 | /** | |
| 170 | * Sets a buddy list sorting method. | |
| 171 | * | |
| 5631 | 172 | * @param id The method's id. |
| 5422 | 173 | */ |
| 5631 | 174 | void gaim_gtk_blist_sort_method_set(const char *id); |
| 5422 | 175 | |
| 176 | /** | |
| 177 | * Sets up the programs default sort methods | |
| 178 | */ | |
| 179 | void gaim_gtk_blist_setup_sort_methods(); | |
| 180 | ||
|
5936
4bac764cc792
[gaim-migrate @ 6376]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
181 | /** |
|
4bac764cc792
[gaim-migrate @ 6376]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
182 | * Updates the protocol actions menu on the GTK+ buddy list window. |
|
4bac764cc792
[gaim-migrate @ 6376]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
183 | */ |
|
4bac764cc792
[gaim-migrate @ 6376]
Christian Hammond <chipx86@chipx86.com>
parents:
5906
diff
changeset
|
184 | void gaim_gtk_blist_update_protocol_actions(); |
| 5422 | 185 | |
| 186 | ||
| 5228 | 187 | #endif /* _GAIM_GTK_LIST_H_ */ |