2 * Pidgin is the legal property of its developers, whose names are too numerous
3 * to list here. Please refer to the COPYRIGHT file distributed with this
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
22 #ifndef _PIDGINCELLRENDEREREXPANDER_H_
23 #define _PIDGINCELLRENDEREREXPANDER_H_
25 * SECTION:gtkcellrendererexpander
26 * @section_id: pidgin-gtkcellrendererexpander
27 * @short_description: <filename>gtkcellrendererexpander.h</filename>
28 * @title: Cell Renderer Expander
33 #define PIDGIN_TYPE_CELL_RENDERER_EXPANDER (pidgin_cell_renderer_expander_get_type())
34 #define PIDGIN_CELL_RENDERER_EXPANDER(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), PIDGIN_TYPE_CELL_RENDERER_EXPANDER, PidginCellRendererExpander))
35 #define PIDGIN_CELL_RENDERER_EXPANDER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), PURPLE_TYPE_GTK_CELL_RENDERER_EXPANDER, PidginCellRendererExpanderClass))
36 #define PIDGIN_IS_CELL_RENDERER_EXPANDER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PIDGIN_TYPE_CELL_RENDERER_EXPANDER))
37 #define PIDGIN_IS_CELL_RENDERER_EXPANDER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), PIDGIN_TYPE_CELL_RENDERER_EXPANDER))
38 #define PIDGIN_CELL_RENDERER_EXPANDER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), PIDGIN_TYPE_CELL_RENDERER_EXPANDER, PidginCellRendererExpanderClass))
40 typedef struct _PidginCellRendererExpander PidginCellRendererExpander
;
41 typedef struct _PidginCellRendererExpanderClass PidginCellRendererExpanderClass
;
43 struct _PidginCellRendererExpander
{
44 GtkCellRenderer parent
;
49 struct _PidginCellRendererExpanderClass
{
50 GtkCellRendererClass parent_class
;
55 GType
pidgin_cell_renderer_expander_get_type (void);
56 GtkCellRenderer
*pidgin_cell_renderer_expander_new (void);
60 #endif /* _PIDGINCELLRENDEREREXPANDER_H_ */