Mercurial > geeqie.yaz
annotate src/cellrenderericon.h @ 957:36a48d09daa8
updated ChangeLog from svn log
author | nadvornik |
---|---|
date | Wed, 30 Jul 2008 18:44:49 +0000 |
parents | 8308d3606991 |
children | c24a297efbef |
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 | |
852 | 59 gint num_marks; |
60 | |
9 | 61 gboolean show_text; |
852 | 62 gboolean show_marks; |
63 | |
64 guint marks; | |
65 | |
9 | 66 }; |
67 | |
68 struct _GQvCellRendererIconClass | |
69 { | |
70 GtkCellRendererClass parent_class; | |
71 | |
72 /* Padding for future expansion */ | |
512
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
9
diff
changeset
|
73 void (*_gtk_reserved1)(void); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
9
diff
changeset
|
74 void (*_gtk_reserved2)(void); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
9
diff
changeset
|
75 void (*_gtk_reserved3)(void); |
f9bf33be53ff
Remove whitespace between function name and first parenthesis for the sake of consistency.
zas_
parents:
9
diff
changeset
|
76 void (*_gtk_reserved4)(void); |
9 | 77 }; |
78 | |
79 GType gqv_cell_renderer_icon_get_type (void); | |
80 GtkCellRenderer *gqv_cell_renderer_icon_new (void); | |
81 | |
82 #ifdef __cplusplus | |
83 } | |
84 #endif /* __cplusplus */ | |
85 | |
86 #endif /* __GQV_CELL_RENDERER_ICON_H__ */ |