GNOME Bugzilla – Bug 740597
Implement get and set extents
Last modified: 2015-02-27 21:23:16 UTC
getters and setters for extents still need to be implemented. At the moment the getter is not doing it's job properly (it calls jaw_component_get_position and jaw_component_get_size but not actually returning anything, the setter doesn't exist and neither are wrapped to the java AtkComponent class. The functions jaw_component_get_extents and jaw_component_set_extents need to make use of the java AccessibleComponent methods getBounds and setBounds which set and get extents in a Rectangle object (height, width, x and y).
Created attachment 291326 [details] [review] Patch to address problem
[Moving at-spi/java-atk-wrapper bugs to separate product. See bug 740075]
I am going to reopen this because I found the implementation get_extents was not totally complete in leaning on the get_size and get_position.
Created attachment 298137 [details] [review] Patch to address problem