2 * System tray icon (aka docklet) plugin for Purple
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>
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.
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.
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., 51 Franklin Street, Fifth Floor, Boston, MA
25 #ifndef _GTKDOCKLET_H_
26 #define _GTKDOCKLET_H_
29 * @section_id: pidgin-gtkdocklet
30 * @short_description: <filename>gtkdocklet.h</filename>
33 * This file provides the System tray icon (aka docklet) implementation.
40 PIDGIN_DOCKLET_CONNECTING
= 0x1,
41 PIDGIN_DOCKLET_CONV_PENDING
= 0x2,
42 PIDGIN_DOCKLET_EMAIL_PENDING
= 0x4
46 * pidgin_docklet_get_status_icon:
48 * Returns: (transfer none): The #GtkStatusIcon used for the docklet.
50 GtkStatusIcon
*pidgin_docklet_get_status_icon(void);
52 void pidgin_docklet_init(void);
53 void pidgin_docklet_uninit(void);
54 void*pidgin_docklet_get_handle(void);
58 #endif /* _GTKDOCKLET_H_ */