Add deleted HTTP digest functions to ChangeLog.API.
[pidgin-git.git] / pidgin / gtkstatus-icon-theme.c
blobf617ed8f0e020508c29a3a9ced0bcc2611ef0d7d
1 /*
2 * Status Icon Themes for Pidgin
4 * Pidgin is the legal property of its developers, whose names are too numerous
5 * to list here. Please refer to the COPYRIGHT file distributed with this
6 * source distribution.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
23 #include "gtkstatus-icon-theme.h"
25 /**
26 * PidginStatusIconTheme:
28 * extends PidginIconTheme (gtkicon-theme.h)
29 * A pidgin status icon theme.
30 * This object represents a Pidgin status icon theme.
32 * PidginStatusIconTheme is a PidginIconTheme Object.
34 struct _PidginStatusIconTheme
36 PidginIconTheme parent;
39 /******************************************************************************
40 * Globals
41 *****************************************************************************/
43 static GObjectClass *parent_class = NULL;
45 /******************************************************************************
46 * GObject Stuff
47 *****************************************************************************/
49 static void
50 pidgin_status_icon_theme_finalize(GObject *obj)
52 parent_class->finalize(obj);
55 static void
56 pidgin_status_icon_theme_class_init(PidginStatusIconThemeClass *klass)
58 GObjectClass *obj_class = G_OBJECT_CLASS(klass);
60 parent_class = g_type_class_peek_parent(klass);
62 obj_class->finalize = pidgin_status_icon_theme_finalize;
65 GType
66 pidgin_status_icon_theme_get_type(void)
68 static GType type = 0;
69 if (type == 0) {
70 static const GTypeInfo info = {
71 sizeof (PidginStatusIconThemeClass),
72 NULL, /* base_init */
73 NULL, /* base_finalize */
74 (GClassInitFunc)pidgin_status_icon_theme_class_init, /* class_init */
75 NULL, /* class_finalize */
76 NULL, /* class_data */
77 sizeof (PidginStatusIconTheme),
78 0, /* n_preallocs */
79 NULL,
80 NULL, /* value table */
82 type = g_type_register_static(PIDGIN_TYPE_ICON_THEME,
83 "PidginStatusIconTheme", &info, 0);
85 return type;