1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123 | /* CTK+ - accessibility implementations
* Copyright 2001 Sun Microsystems Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <ctk/ctk.h>
#include "ctkimagecellaccessible.h"
struct _CtkImageCellAccessiblePrivate
{
gchar *image_description;
};
static void atk_image_interface_init (AtkImageIface *iface);
G_DEFINE_TYPE_WITH_CODE (CtkImageCellAccessible, ctk_image_cell_accessible, CTK_TYPE_RENDERER_CELL_ACCESSIBLE,<--- There is an unknown macro here somewhere. Configuration is required. If G_DEFINE_TYPE_WITH_CODE is a macro then please configure it.
G_ADD_PRIVATE (CtkImageCellAccessible)
G_IMPLEMENT_INTERFACE (ATK_TYPE_IMAGE, atk_image_interface_init))
static void
ctk_image_cell_accessible_finalize (GObject *object)
{
CtkImageCellAccessible *image_cell = CTK_IMAGE_CELL_ACCESSIBLE (object);
g_free (image_cell->priv->image_description);
G_OBJECT_CLASS (ctk_image_cell_accessible_parent_class)->finalize (object);
}
static void
ctk_image_cell_accessible_class_init (CtkImageCellAccessibleClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
gobject_class->finalize = ctk_image_cell_accessible_finalize;
}
static void
ctk_image_cell_accessible_init (CtkImageCellAccessible *image_cell)
{
image_cell->priv = ctk_image_cell_accessible_get_instance_private (image_cell);
}
static const gchar *
ctk_image_cell_accessible_get_image_description (AtkImage *image)
{
CtkImageCellAccessible *image_cell = CTK_IMAGE_CELL_ACCESSIBLE (image);
return image_cell->priv->image_description;
}
static gboolean
ctk_image_cell_accessible_set_image_description (AtkImage *image,
const gchar *description)
{
CtkImageCellAccessible *image_cell = CTK_IMAGE_CELL_ACCESSIBLE (image);
g_free (image_cell->priv->image_description);
image_cell->priv->image_description = g_strdup (description);
if (image_cell->priv->image_description)
return TRUE;
else
return FALSE;
}
static void
ctk_image_cell_accessible_get_image_position (AtkImage *image,
gint *x,
gint *y,
AtkCoordType coord_type)
{
atk_component_get_extents (ATK_COMPONENT (image), x, y, NULL, NULL,
coord_type);
}
static void
ctk_image_cell_accessible_get_image_size (AtkImage *image,
gint *width,
gint *height)
{
CtkImageCellAccessible *cell = CTK_IMAGE_CELL_ACCESSIBLE (image);
CtkCellRenderer *cell_renderer;
GdkPixbuf *pixbuf = NULL;
*width = 0;
*height = 0;
g_object_get (cell, "renderer", &cell_renderer, NULL);
g_object_get (cell_renderer,
"pixbuf", &pixbuf,
NULL);
g_object_unref (cell_renderer);
if (pixbuf)
{
*width = gdk_pixbuf_get_width (pixbuf);
*height = gdk_pixbuf_get_height (pixbuf);
g_object_unref (pixbuf);
}
}
static void
atk_image_interface_init (AtkImageIface *iface)
{
iface->get_image_description = ctk_image_cell_accessible_get_image_description;
iface->set_image_description = ctk_image_cell_accessible_set_image_description;
iface->get_image_position = ctk_image_cell_accessible_get_image_position;
iface->get_image_size = ctk_image_cell_accessible_get_image_size;
}
|