orca r4671 - in branches/gnome-2-26: . src/orca
- From: wwalker svn gnome org
- To: svn-commits-list gnome org
- Subject: orca r4671 - in branches/gnome-2-26: . src/orca
- Date: Fri, 10 Apr 2009 13:15:36 +0000 (UTC)
Author: wwalker
Date: Fri Apr 10 13:15:36 2009
New Revision: 4671
URL: http://svn.gnome.org/viewvc/orca?rev=4671&view=rev
Log:
Fix for bug #576438 - Provide state change information for radio buttons that require you to press space to select them
Modified:
branches/gnome-2-26/ChangeLog
branches/gnome-2-26/src/orca/default.py
Modified: branches/gnome-2-26/src/orca/default.py
==============================================================================
--- branches/gnome-2-26/src/orca/default.py (original)
+++ branches/gnome-2-26/src/orca/default.py Fri Apr 10 13:15:36 2009
@@ -3120,6 +3120,20 @@
if not self.isSameObject(obj, orca_state.locusOfFocus):
return
+ # Radio buttons normally change their state when you arrow to them,
+ # so we handle the announcement of their state changes in the focus
+ # handling code. However, we do need to handle radio buttons where
+ # the user needs to press the space key so select them. We see this
+ # in the disk selection area of the OpenSolaris gui-install application
+ # for example.
+ #
+ if obj.getRole() == pyatspi.ROLE_RADIO_BUTTON \
+ and orca_state.lastNonModifierKeyEvent \
+ and orca_state.lastNonModifierKeyEvent.event_string == "space":
+ pass
+ else:
+ return
+
if event:
debug.println(debug.LEVEL_FINE,
"VISUAL CHANGE: '%s' '%s' (event='%s')" \
@@ -7800,6 +7814,7 @@
None)
state_change_notifiers[pyatspi.ROLE_PANEL] = ("showing", None)
state_change_notifiers[pyatspi.ROLE_LABEL] = ("showing", None)
+state_change_notifiers[pyatspi.ROLE_RADIO_BUTTON] = ("checked", None)
state_change_notifiers[pyatspi.ROLE_TOGGLE_BUTTON] = ("checked",
"pressed",
None)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]