Revert "Revert "Merge remote-tracking branch 'origin/sandbox/mniesluchow/upstream_2_1...
[platform/upstream/atk.git] / atk / atkimage.h
index 132c34c..4905cd1 100755 (executable)
  * Boston, MA 02111-1307, USA.
  */
 
+#if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
+#error "Only <atk/atk.h> can be included directly."
+#endif
+
 #ifndef __ATK_IMAGE_H__
 #define __ATK_IMAGE_H__
 
 #include <atk/atkobject.h>
 #include <atk/atkutil.h>
 
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
+G_BEGIN_DECLS
 
 /*
  * The AtkImage interface should be supported by any object that has an 
@@ -47,34 +49,42 @@ typedef struct _AtkImageIface AtkImageIface;
 struct _AtkImageIface
 {
   GTypeInterface parent;
-  void                 ( *get_position)          (AtkImage              *image,
+  void                 ( *get_image_position)    (AtkImage              *image,
                                                    gint                  *x,
                                                   gint                  *y,
                                                   AtkCoordType          coord_type);
-  G_CONST_RETURN gchar* ( *get_image_description) (AtkImage              *image);
+  const gchar*          ( *get_image_description) (AtkImage              *image);
   void                  ( *get_image_size)        (AtkImage              *image,
-                                                   gint                  *height,
-                                                   gint                  *width);
+                                                   gint                  *width,
+                                                   gint                  *height);
   gboolean              ( *set_image_description) (AtkImage              *image,
                                                    const gchar           *description);
+  const gchar*          ( *get_image_locale)      (AtkImage              *image);
 };
 
+ATK_AVAILABLE_IN_ALL
 GType  atk_image_get_type             (void);
 
-G_CONST_RETURN gchar* atk_image_get_image_description (AtkImage   *image);
+ATK_AVAILABLE_IN_ALL
+const gchar* atk_image_get_image_description (AtkImage   *image);
 
+ATK_AVAILABLE_IN_ALL
 void     atk_image_get_image_size        (AtkImage           *image,
-                                          gint               *height,
-                                          gint               *width);
+                                          gint               *width,
+                                          gint               *height);
 
+ATK_AVAILABLE_IN_ALL
 gboolean atk_image_set_image_description (AtkImage           *image,
                                           const gchar       *description);
-void     atk_image_get_position          (AtkImage          *image,
+ATK_AVAILABLE_IN_ALL
+void     atk_image_get_image_position    (AtkImage          *image,
                                           gint               *x,
                                          gint               *y,
                                          AtkCoordType       coord_type);
 
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
+ATK_AVAILABLE_IN_ALL
+const gchar* atk_image_get_image_locale (AtkImage   *image);
+
+G_END_DECLS
+
 #endif /* __ATK_IMAGE_H__ */