Translation updated by Ivar Smolin.
[atk.git] / atk / atkimage.c
blobd37332de0bac32474ff3793433d88f9cba5a2aa5
1 /* ATK - Accessibility Toolkit
2 * Copyright 2001 Sun Microsystems Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser 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 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser 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.
20 #include "atkimage.h"
22 GType
23 atk_image_get_type (void)
25 static GType type = 0;
27 if (!type) {
28 static const GTypeInfo tinfo =
30 sizeof (AtkImageIface),
31 (GBaseInitFunc) NULL,
32 (GBaseFinalizeFunc) NULL
35 type = g_type_register_static (G_TYPE_INTERFACE, "AtkImage", &tinfo, 0);
38 return type;
41 /**
42 * atk_image_get_image_description:
43 * @image: a #GObject instance that implements AtkImageIface
45 * Get a textual description of this image.
47 * Returns: a string representing the image description
48 **/
49 G_CONST_RETURN gchar*
50 atk_image_get_image_description (AtkImage *image)
52 AtkImageIface *iface;
54 g_return_val_if_fail (ATK_IS_IMAGE (image), NULL);
56 iface = ATK_IMAGE_GET_IFACE (image);
58 if (iface->get_image_description)
60 return (iface->get_image_description) (image);
62 else
64 return NULL;
68 /**
69 * atk_image_get_image_size:
70 * @image: a #GObject instance that implements AtkImageIface
71 * @width: filled with the image width
72 * @height: filled with the image height
74 * Get the width and height in pixels for the specified image.
75 * The values of @width and @height are returned as -1 if the
76 * values cannot be obtained.
77 **/
78 void
79 atk_image_get_image_size (AtkImage *image,
80 int *width,
81 int *height)
83 AtkImageIface *iface;
84 gint local_width, local_height;
85 gint *real_width, *real_height;
87 g_return_if_fail (ATK_IS_IMAGE (image));
89 if (width)
90 real_width = width;
91 else
92 real_width = &local_width;
93 if (height)
94 real_height = height;
95 else
96 real_height = &local_height;
98 iface = ATK_IMAGE_GET_IFACE (image);
100 if (iface->get_image_size)
102 iface->get_image_size (image, real_width, real_height);
104 else
106 *width = -1;
107 *height = -1;
112 * atk_image_set_image_description:
113 * @image: a #GObject instance that implements AtkImageIface
114 * @description: a string description to set for @image
116 * Sets the textual description for this image.
118 * Returns: boolean TRUE, or FALSE if operation could
119 * not be completed.
121 gboolean
122 atk_image_set_image_description (AtkImage *image,
123 const gchar *description)
125 AtkImageIface *iface;
127 g_return_val_if_fail (ATK_IS_IMAGE (image), FALSE);
129 iface = ATK_IMAGE_GET_IFACE (image);
131 if (iface->set_image_description)
133 return (iface->set_image_description) (image, description);
135 else
137 return FALSE;
142 * atk_image_get_image_position:
143 * @image: a #GObject instance that implements AtkImageIface
144 * @x: address of #gint to put x coordinate position; otherwise, -1 if value cannot be obtained.
145 * @y: address of #gint to put y coordinate position; otherwise, -1 if value cannot be obtained.
146 * @coord_type: specifies whether the coordinates are relative to the screen
147 * or to the components top level window
149 * Gets the position of the image in the form of a point specifying the
150 * images top-left corner.
152 void
153 atk_image_get_image_position (AtkImage *image,
154 gint *x,
155 gint *y,
156 AtkCoordType coord_type)
158 AtkImageIface *iface;
159 gint local_x, local_y;
160 gint *real_x, *real_y;
162 g_return_if_fail (ATK_IS_IMAGE (image));
164 if (x)
165 real_x = x;
166 else
167 real_x = &local_x;
168 if (y)
169 real_y = y;
170 else
171 real_y = &local_y;
173 iface = ATK_IMAGE_GET_IFACE (image);
175 g_return_if_fail (ATK_IS_IMAGE (image));
177 iface = ATK_IMAGE_GET_IFACE (image);
179 if (iface->get_image_position)
181 (iface->get_image_position) (image, real_x, real_y, coord_type);
183 else
185 *x = -1;
186 *y = -1;
190 /**
191 * Returns a string corresponding to the POSIX LC_MESSAGES locale used by the image description, or NULL if the image does not specify a locale.
192 * @Since ATK 1.12
194 G_CONST_RETURN gchar*
195 atk_image_get_image_locale (AtkImage *image)
198 AtkImageIface *iface;
200 g_return_val_if_fail (ATK_IS_IMAGE (image), NULL);
202 iface = ATK_IMAGE_GET_IFACE (image);
204 if (iface->get_image_locale)
206 return (iface->get_image_locale) (image);
208 else
210 return NULL;