orca r4001 - in branches/gnome-2-22: . src/orca/scripts
- From: richb svn gnome org
- To: svn-commits-list gnome org
- Subject: orca r4001 - in branches/gnome-2-22: . src/orca/scripts
- Date: Wed, 25 Jun 2008 14:41:14 +0000 (UTC)
Author: richb
Date: Wed Jun 25 14:41:14 2008
New Revision: 4001
URL: http://svn.gnome.org/viewvc/orca?rev=4001&view=rev
Log:
* src/orca/scripts/gnome-screensaver-dialog.py: (new)
src/orca/scripts/Makefile.am:
Fixed bug #529655 - After inputting an incorrect password on
the screensaver, Orca can't speak the whole dialog.
Added:
branches/gnome-2-22/src/orca/scripts/gnome-screensaver-dialog.py
Modified:
branches/gnome-2-22/ChangeLog
branches/gnome-2-22/src/orca/scripts/Makefile.am
Modified: branches/gnome-2-22/src/orca/scripts/Makefile.am
==============================================================================
--- branches/gnome-2-22/src/orca/scripts/Makefile.am (original)
+++ branches/gnome-2-22/src/orca/scripts/Makefile.am Wed Jun 25 14:41:14 2008
@@ -12,6 +12,7 @@
gnome-keyring-ask.py \
gnome-mud.py \
gnome-panel.py \
+ gnome-screensaver-dialog.py \
gnome-search-tool.py \
gnome-system-monitor.py \
gnome-terminal.py \
Added: branches/gnome-2-22/src/orca/scripts/gnome-screensaver-dialog.py
==============================================================================
--- (empty file)
+++ branches/gnome-2-22/src/orca/scripts/gnome-screensaver-dialog.py Wed Jun 25 14:41:14 2008
@@ -0,0 +1,55 @@
+# Orca
+#
+# Copyright 2008 Sun Microsystems Inc.
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Library General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Library General Public License for more details.
+#
+# You should have received a copy of the GNU Library General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., Franklin Street, Fifth Floor,
+# Boston MA 02110-1301 USA.
+
+"""Custom script for gnome-screensaver-dialog."""
+
+__id__ = "$Id:$"
+__version__ = "$Revision:$"
+__date__ = "$Date:$"
+__copyright__ = "Copyright (c) 2008 Sun Microsystems Inc."
+__license__ = "LGPL"
+
+import pyatspi
+
+import orca.default as default
+import orca.speech as speech
+
+class Script(default.Script):
+
+ def onStateChanged(self, event):
+ """Called whenever an object's state changes.
+
+ Arguments:
+ - event: the Event
+ """
+
+ # If we are focused in a password text area, we need to check if
+ # there are any useful messages displayed in a couple of labels that
+ # are visually below that password area. If there are, then speak
+ # them for the user. See bug #529655 for more details.
+ #
+ if event.type.startswith("object:state-changed:focused") and \
+ event.source.getRole() == pyatspi.ROLE_PASSWORD_TEXT:
+ obj = event.source.parent.parent.parent
+ for child in obj:
+ if child.getRole() == pyatspi.ROLE_LABEL:
+ if child.name:
+ speech.speak(child.name)
+ else:
+ default.Script.onStateChanged(self, event)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]