| |
1 /* |
| |
2 * System tray icon (aka docklet) plugin for Gaim |
| |
3 * |
| |
4 * Copyright (C) 2002-3 Robert McQueen <robot101@debian.org> |
| |
5 * Copyright (C) 2003 Herman Bloggs <hermanator12002@yahoo.com> |
| |
6 * Inspired by a similar plugin by: |
| |
7 * John (J5) Palmieri <johnp@martianrock.com> |
| |
8 * |
| |
9 * This program is free software; you can redistribute it and/or |
| |
10 * modify it under the terms of the GNU General Public License as |
| |
11 * published by the Free Software Foundation; either version 2 of the |
| |
12 * License, or (at your option) any later version. |
| |
13 * |
| |
14 * This program is distributed in the hope that it will be useful, but |
| |
15 * WITHOUT ANY WARRANTY; without even the implied warranty of |
| |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| |
17 * 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 |
| |
22 * 02111-1307, USA. |
| |
23 */ |
| |
24 |
| |
25 #ifndef _GTKDOCKLET_H_ |
| |
26 #define _GTKDOCKLET_H_ |
| |
27 |
| |
28 typedef enum |
| |
29 { |
| |
30 DOCKLET_STATUS_OFFLINE, |
| |
31 DOCKLET_STATUS_ONLINE, |
| |
32 DOCKLET_STATUS_ONLINE_PENDING, |
| |
33 DOCKLET_STATUS_AWAY, |
| |
34 DOCKLET_STATUS_AWAY_PENDING, |
| |
35 DOCKLET_STATUS_CONNECTING |
| |
36 } DockletStatus; |
| |
37 |
| |
38 struct docklet_ui_ops |
| |
39 { |
| |
40 void (*create)(void); |
| |
41 void (*destroy)(void); |
| |
42 void (*update_icon)(DockletStatus); |
| |
43 void (*blank_icon)(void); |
| |
44 void (*set_tooltip)(gchar *); |
| |
45 GtkMenuPositionFunc position_menu; |
| |
46 }; |
| |
47 |
| |
48 |
| |
49 /* functions in gtkdocklet.c */ |
| |
50 void gaim_gtk_docklet_clicked(int); |
| |
51 void gaim_gtk_docklet_embedded(void); |
| |
52 void gaim_gtk_docklet_remove(void); |
| |
53 void gaim_gtk_docklet_set_ui_ops(struct docklet_ui_ops *); |
| |
54 void gaim_gtk_docklet_unload(void); |
| |
55 void gaim_gtk_docklet_init(void); |
| |
56 void gaim_gtk_docklet_uninit(void); |
| |
57 void*gaim_gtk_docklet_get_handle(void); |
| |
58 |
| |
59 /* function in gtkdocklet-{x11,win32}.c */ |
| |
60 void docklet_ui_init(void); |
| |
61 |
| |
62 #endif /* _GTKDOCKLET_H_ */ |