]> Pileus Git - ~andy/gtk/blob - gtk/gtkcellrenderertextpixbuf.h
DND updates
[~andy/gtk] / gtk / gtkcellrenderertextpixbuf.h
1 /* gtkcellrenderertextpixbuf.h
2  * Copyright (C) 2000  Red Hat, Inc.,  Jonathan Blandford <jrb@redhat.com>
3  *
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.
8  *
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.
13  *
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., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 #ifndef __GTK_CELL_RENDERER_TEXT_PIXBUF_H__
21 #define __GTK_CELL_RENDERER_TEXT_PIXBUF_H__
22
23 #include <gtk/gtkcellrenderertext.h>
24 #include <gtk/gtkcellrendererpixbuf.h>
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif /* __cplusplus */
29
30 #define GTK_TYPE_CELL_RENDERER_TEXT_PIXBUF              (gtk_cell_renderer_text_pixbuf_get_type ())
31 #define GTK_CELL_RENDERER_TEXT_PIXBUF(obj)              (GTK_CHECK_CAST ((obj), GTK_TYPE_CELL_RENDERER_TEXT_PIXBUF, GtkCellRendererTextPixbuf))
32 #define GTK_CELL_RENDERER_TEXT_PIXBUF_CLASS(klass)      (GTK_CHECK_CLASS_CAST ((klass), GTK_TYPE_CELL_RENDERER_TEXT_PIXBUF, GtkCellRendererTextPixbufClass))
33 #define GTK_IS_CELL_RENDERER_TEXT_PIXBUF(obj)           (GTK_CHECK_TYPE ((obj), GTK_TYPE_CELL_RENDERER_TEXT_PIXBUF))
34 #define GTK_IS_CELL_RENDERER_TEXT_PIXBUF_CLASS(klass)   (GTK_CHECK_CLASS_TYPE ((obj), GTK_TYPE_CELL_RENDERER_TEXT_PIXBUF))
35
36 typedef struct _GtkCellRendererTextPixbuf GtkCellRendererTextPixbuf;
37 typedef struct _GtkCellRendererTextPixbufClass GtkCellRendererTextPixbufClass;
38
39 struct _GtkCellRendererTextPixbuf
40 {
41   GtkCellRendererText parent;
42
43   /*< private >*/
44   GtkCellRendererPixbuf *pixbuf;
45   GtkPositionType pixbuf_pos;
46 };
47
48 struct _GtkCellRendererTextPixbufClass
49 {
50   GtkCellRendererTextClass parent_class;
51 };
52
53 GtkType          gtk_cell_renderer_text_pixbuf_get_type (void);
54 GtkCellRenderer *gtk_cell_renderer_text_pixbuf_new      (void);
55
56 #ifdef __cplusplus
57 }
58 #endif /* __cplusplus */
59
60
61 #endif /* __GTK_CELL_RENDERER_TEXT_PIXBUF_H__ */