2 * Copyright (C) 2003 Kristian Rietveld <kris@gtk.org>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02111-1301, USA.
20 #ifndef __GTK_CELL_LAYOUT_H__
21 #define __GTK_CELL_LAYOUT_H__
23 #include <glib-object.h>
25 #include <gtk/gtkcellrenderer.h>
26 #include <gtk/gtktreeviewcolumn.h>
30 #define GTK_TYPE_CELL_LAYOUT (gtk_cell_layout_get_type ())
31 #define GTK_CELL_LAYOUT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GTK_TYPE_CELL_LAYOUT, GtkCellLayout))
32 #define GTK_IS_CELL_LAYOUT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GTK_TYPE_CELL_LAYOUT))
33 #define GTK_CELL_LAYOUT_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), GTK_TYPE_CELL_LAYOUT, GtkCellLayoutIface))
35 typedef struct _GtkCellLayout GtkCellLayout
; /* dummy typedef */
36 typedef struct _GtkCellLayoutIface GtkCellLayoutIface
;
38 /* keep in sync with GtkTreeCellDataFunc */
39 typedef void (* GtkCellLayoutDataFunc
) (GtkCellLayout
*cell_layout
,
40 GtkCellRenderer
*cell
,
41 GtkTreeModel
*tree_model
,
45 struct _GtkCellLayoutIface
47 GTypeInterface g_iface
;
50 void (* pack_start
) (GtkCellLayout
*cell_layout
,
51 GtkCellRenderer
*cell
,
53 void (* pack_end
) (GtkCellLayout
*cell_layout
,
54 GtkCellRenderer
*cell
,
56 void (* clear
) (GtkCellLayout
*cell_layout
);
57 void (* add_attribute
) (GtkCellLayout
*cell_layout
,
58 GtkCellRenderer
*cell
,
59 const gchar
*attribute
,
61 void (* set_cell_data_func
) (GtkCellLayout
*cell_layout
,
62 GtkCellRenderer
*cell
,
63 GtkCellLayoutDataFunc func
,
65 GDestroyNotify destroy
);
66 void (* clear_attributes
) (GtkCellLayout
*cell_layout
,
67 GtkCellRenderer
*cell
);
68 void (* reorder
) (GtkCellLayout
*cell_layout
,
69 GtkCellRenderer
*cell
,
73 GType
gtk_cell_layout_get_type (void);
74 void gtk_cell_layout_pack_start (GtkCellLayout
*cell_layout
,
75 GtkCellRenderer
*cell
,
77 void gtk_cell_layout_pack_end (GtkCellLayout
*cell_layout
,
78 GtkCellRenderer
*cell
,
80 void gtk_cell_layout_clear (GtkCellLayout
*cell_layout
);
81 void gtk_cell_layout_set_attributes (GtkCellLayout
*cell_layout
,
82 GtkCellRenderer
*cell
,
84 void gtk_cell_layout_add_attribute (GtkCellLayout
*cell_layout
,
85 GtkCellRenderer
*cell
,
86 const gchar
*attribute
,
88 void gtk_cell_layout_set_cell_data_func (GtkCellLayout
*cell_layout
,
89 GtkCellRenderer
*cell
,
90 GtkCellLayoutDataFunc func
,
92 GDestroyNotify destroy
);
93 void gtk_cell_layout_clear_attributes (GtkCellLayout
*cell_layout
,
94 GtkCellRenderer
*cell
);
95 void gtk_cell_layout_reorder (GtkCellLayout
*cell_layout
,
96 GtkCellRenderer
*cell
,
102 #endif /* __GTK_CELL_LAYOUT_H__ */