After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 740597 - Implement get and set extents
Implement get and set extents
Status: RESOLVED FIXED
Product: java-atk-wrapper
Classification: Applications
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: java-atk-wrapper maintainer(s)
java-atk-wrapper maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2014-11-23 20:22 UTC by Magdalen Berns (irc magpie)
Modified: 2015-02-27 21:23 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch to address problem (9.32 KB, patch)
2014-11-23 20:27 UTC, Magdalen Berns (irc magpie)
committed Details | Review
Patch to address problem (7.80 KB, patch)
2015-02-27 21:23 UTC, Magdalen Berns (irc magpie)
committed Details | Review

Description Magdalen Berns (irc magpie) 2014-11-23 20:22:34 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).
Comment 1 Magdalen Berns (irc magpie) 2014-11-23 20:27:31 UTC
Created attachment 291326 [details] [review]
Patch to address problem
Comment 2 André Klapper 2015-02-27 16:59:19 UTC
[Moving at-spi/java-atk-wrapper bugs to separate product. See bug 740075]
Comment 3 Magdalen Berns (irc magpie) 2015-02-27 21:19:34 UTC
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.
Comment 4 Magdalen Berns (irc magpie) 2015-02-27 21:23:01 UTC
Created attachment 298137 [details] [review]
Patch to address problem