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 350739 - better report when navigating in a list
better report when navigating in a list
Status: RESOLVED FIXED
Product: orca
Classification: Applications
Component: speech
0.2.x
Other Linux
: Normal normal
: ---
Assigned To: Orca Maintainers
Orca Maintainers
Depends on:
Blocks:
 
 
Reported: 2006-08-10 13:18 UTC by Oana Serb
Modified: 2006-08-11 17:26 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Proposed patch (7.24 KB, patch)
2006-08-10 13:21 UTC, Oana Serb
committed Details | Review
Reworked patch (7.51 KB, patch)
2006-08-11 13:36 UTC, Oana Serb
none Details | Review

Description Oana Serb 2006-08-10 13:18:42 UTC
A better report of focused list item is needed when navigating in a list.

If the object is the same with the last focused object, it should be presented only if this was not selected and has SELECTED state or if this object doesn't have SELCTED state, but SELECTABLE and was selected.
Comment 1 Oana Serb 2006-08-10 13:21:36 UTC
Created attachment 70639 [details] [review]
Proposed patch

This patch includes some code from a previous patch (http://bugzilla.gnome.org/attachment.cgi?id=70635): it adds selected/unselected string for a list label.
Comment 2 Willie Walker 2006-08-10 15:21:50 UTC
Since we're close to the GNOME 2.16 deadline, I'm a bit uneasy about changes to the core orca logic right now.  For this particular patch, can we accomplish the same objective if you:

Remove the isSameObject check from orca.py:setLocusOfFocus and keep orca.py:setLocusOfFocus the way it was.  This will let us keep track of the last "real" object we know of that really was the locusOfFocus.  For all we know, the last object (even if it was technically the "same" object) may have gone defunct.

At the beginning of default.py:locusOfFocusChanged, check for "util.isSameObject(event.source, orca_state.locusOfFocus)" and return if the value is true.  Also get rid of this little bit of code further down in default.py:locusOfFocusChanged: 

        if newParent and (oldParent == newParent):
            state = newParent.state
            if state.count(atspi.Accessibility.STATE_MANAGES_DESCENDANTS) \
                and (oldLocusOfFocus.index == newLocusOfFocus.index) \
                and (oldLocusOfFocus.name == newLocusOfFocus.name):
                    return

Moving the isSameObject decision from orca.py to default.py gives the script the power to make decision about what to do if the focus for the same exact object was updated.

BTW, since the locus of focus can be None, you'll also need to add some additional logic to isSameObject to check if either obj1 or obj2 is None.  Something like this might work:

    if (obj1 == obj2):
        return True
    elif (not obj1) or (not obj2):
        return False
    ...

Will
Comment 3 Oana Serb 2006-08-11 13:36:27 UTC
Created attachment 70715 [details] [review]
Reworked patch

Reworked patch as requested in comment #2:
  - removed the isSameObject check from orca.py:setLocusOfFocus and keeped
orca.py:setLocusOfFocus the way it was
  - added check for
"util.isSameObject(oldLocusOfFocus, newLocusOfFocus)" at the beginning of default.py:locusOfFocusChanged
  - removed the suggested code from default.py:locusOfFocusChanged
  - added additional check in isSameObject to check if obj1 or obj2 is None
Comment 4 Oana Serb 2006-08-11 14:01:13 UTC
With the latest Orca from CVS, without this patch, list items are spoken for 4 times, comboboxes, textboxes and buttons are spoken twice (in Open dialog window) when they get focus.
Comment 5 Willie Walker 2006-08-11 17:26:25 UTC
Fixed in the development version. The fix will be available in the next major release (0.2.9). Thank you for your bug report and patch!