Thu, 10 Jul 2008 06:49:45 +0000
start of blist themes (themes have no effect on display)
/** * @file gtkblist-theme.h GTK+ Buddy List Theme API */ /* pidgin * * Pidgin is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */ #ifndef _PIDGIN_BUDDY_LIST_THEME_H_ #define _PIDGIN_BUDDY_LIST_THEME_H_ #include <glib.h> #include <glib-object.h> #include "theme.h" #include "sound.h" /** * extends PurpleTheme (theme.h) * A pidgin buddy list theme. * This is an object for Purple to represent a sound theme. * * PidginBuddyListTheme is a PurpleTheme Object. */ typedef struct _PidginBuddyListTheme PidginBuddyListTheme; typedef struct _PidginBuddyListThemeClass PidginBuddyListThemeClass; #define PIDGIN_TYPE_BUDDY_LIST_THEME (pidgin_buddy_list_theme_get_type ()) #define PIDGIN_BUDDY_LIST_THEME(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), PIDGIN_TYPE_BUDDY_LIST_THEME, PidginBuddyListTheme)) #define PIDGIN_BUDDY_LIST_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PIDGIN_TYPE_BUDDY_LIST_THEME, PidginBuddyListThemeClass)) #define PIDGIN_IS_BUDDY_LIST_THEME(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PIDGIN_TYPE_BUDDY_LIST_THEME)) #define PIDGIN_IS_BUDDY_LIST_THEME_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PIDGIN_TYPE_BUDDY_LIST_THEME)) #define PIDGIN_BUDDY_LIST_THEME_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PIDGIN_TYPE_BUDDY_LIST_THEME, PidginBuddyListThemeClass)) struct _PidginBuddyListTheme { PurpleTheme parent; gpointer priv; }; struct _PidginBuddyListThemeClass { PurpleThemeClass parent_class; }; /**************************************************************************/ /** @name Purple Sound Theme API */ /**************************************************************************/ G_BEGIN_DECLS /** * GObject foo. * @internal. */ GType pidgin_buddy_list_theme_get_type(void); G_END_DECLS #endif /* _PIDGIN_BUDDY_LIST_THEME_H_ */