Mercurial > geeqie
annotate src/cellrenderericon.h @ 817:ad7f56cea841
dropped vficon_sync, use vficon_refresh everywhere
author | nadvornik |
---|---|
date | Tue, 10 Jun 2008 18:19:17 +0000 |
parents | f9bf33be53ff |
children | 8308d3606991 |
rev | line source |
---|---|
9 | 1 /* cellrenderericon.h, based on: |
2 * | |
3 * gtkcellrendererpixbuf.h | |
4 * Copyright (C) 2000 Red Hat, Inc., Jonathan Blandford <jrb@redhat.com> | |
5 * | |
6 * This library is free software; you can redistribute it and/or | |
7 * modify it under the terms of the GNU Library General Public | |
8 * License as published by the Free Software Foundation; either | |
9 * version 2 of the License, or (at your option) any later version. | |
10 * | |
11 * This library 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 GNU | |
14 * Library General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU Library General Public | |
17 * License along with this library; if not, write to the | |
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
19 * Boston, MA 02111-1307, USA. | |
20 */ | |
21 | |
22 #ifndef __GQV_CELL_RENDERER_ICON_H__ | |
23 #define __GQV_CELL_RENDERER_ICON_H__ | |
24 | |
25 #include <gtk/gtkcellrenderer.h> | |
26 | |
27 #ifdef __cplusplus | |
28 extern "C" { | |
29 #endif /* __cplusplus */ | |
30 | |
31 | |
32 #define GQV_TYPE_CELL_RENDERER_ICON (gqv_cell_renderer_icon_get_type ()) | |
33 #define GQV_CELL_RENDERER_ICON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GQV_TYPE_CELL_RENDERER_ICON, GQvCellRendererIcon)) | |
34 #define GQV_CELL_RENDERER_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GQV_TYPE_CELL_RENDERER_ICON, GQvCellRendererIconClass)) | |
35 #define GQV_IS_CELL_RENDERER_ICON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GQV_TYPE_CELL_RENDERER_ICON)) | |
36 #define GQV_IS_CELL_RENDERER_ICON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GQV_TYPE_CELL_RENDERER_ICON)) | |
37 #define GQV_CELL_RENDERER_ICON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GQV_TYPE_CELL_RENDERER_ICON, GQvCellRendererIconClass)) | |
38 | |
39 typedef struct _GQvCellRendererIcon GQvCellRendererIcon; | |
40 typedef struct _GQvCellRendererIconClass GQvCellRendererIconClass; | |
41 | |
42 struct _GQvCellRendererIcon | |
43 { | |
44 GtkCellRenderer parent; | |
45 | |
46 /*< private >*/ | |
47 GdkPixbuf *pixbuf; | |
48 gchar *text; | |
49 PangoColor foreground; | |
50 PangoColor background; | |
51 gboolean focused; | |
52 | |
53 gint fixed_width; | |
54 gint fixed_height; | |
55 | |
56 gboolean foreground_set; | |
57 gboolean background_set; | |
58 | |
59 gboolean show_text; | |
60 }; | |
61 | |
62 struct _GQvCellRendererIconClass | |
63 { | |
64 GtkCellRendererClass parent_class; | |
65 | |
66 /* Padding for future expansion */ | |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
9
diff
changeset
|
67 void (*_gtk_reserved1)(void); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
9
diff
changeset
|
68 void (*_gtk_reserved2)(void); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
9
diff
changeset
|
69 void (*_gtk_reserved3)(void); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
9
diff
changeset
|
70 void (*_gtk_reserved4)(void); |
9 | 71 }; |
72 | |
73 GType gqv_cell_renderer_icon_get_type (void); | |
74 GtkCellRenderer *gqv_cell_renderer_icon_new (void); | |
75 | |
76 #ifdef __cplusplus | |
77 } | |
78 #endif /* __cplusplus */ | |
79 | |
80 #endif /* __GQV_CELL_RENDERER_ICON_H__ */ |