Merged pidgin/main into default
[pidgin-git.git] / pidgin / gtkstatus-icon-theme.h
blobd244620e4bdd3c1bd37059ce2de699e2eebb5ebd
1 /* pidgin
3 * Pidgin is the legal property of its developers, whose names are too numerous
4 * to list here. Please refer to the COPYRIGHT file distributed with this
5 * source distribution.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
22 #ifndef PIDGIN_STATUS_ICON_THEME_H
23 #define PIDGIN_STATUS_ICON_THEME_H
24 /**
25 * SECTION:gtkstatus-icon-theme
26 * @section_id: pidgin-gtkstatus-icon-theme
27 * @short_description: <filename>gtkstatus-icon-theme.h</filename>
28 * @title: Pidgin Icon Theme Class
31 #include <glib-object.h>
32 #include "gtkicon-theme.h"
34 typedef struct _PidginStatusIconTheme PidginStatusIconTheme;
35 typedef struct _PidginStatusIconThemeClass PidginStatusIconThemeClass;
37 #define PIDGIN_TYPE_STATUS_ICON_THEME (pidgin_status_icon_theme_get_type ())
38 #define PIDGIN_STATUS_ICON_THEME(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PIDGIN_TYPE_STATUS_ICON_THEME, PidginStatusIconTheme))
39 #define PIDGIN_STATUS_ICON_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PIDGIN_TYPE_STATUS_ICON_THEME, PidginStatusIconThemeClass))
40 #define PIDGIN_IS_STATUS_ICON_THEME(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PIDGIN_TYPE_STATUS_ICON_THEME))
41 #define PIDGIN_IS_STATUS_ICON_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PIDGIN_TYPE_STATUS_ICON_THEME))
42 #define PIDGIN_STATUS_ICON_THEME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PIDGIN_TYPE_STATUS_ICON_THEME, PidginStatusIconThemeClass))
44 /**
45 * PidginStatusIconTheme:
47 * extends PidginIconTheme (gtkicon-theme.h)
48 * A pidgin status icon theme.
49 * This object represents a Pidgin status icon theme.
51 * PidginStatusIconTheme is a PidginIconTheme Object.
53 struct _PidginStatusIconTheme
55 PidginIconTheme parent;
58 struct _PidginStatusIconThemeClass
60 PidginIconThemeClass parent_class;
63 /**************************************************************************/
64 /* Pidgin Status Icon Theme API */
65 /**************************************************************************/
66 G_BEGIN_DECLS
68 /**
69 * pidgin_status_icon_theme_get_type:
71 * Returns: The #GType for a status icon theme.
73 GType pidgin_status_icon_theme_get_type(void);
75 G_END_DECLS
77 #endif /* PIDGIN_STATUS_ICON_THEME_H */