| Server IP : 93.86.61.54 / Your IP : 216.73.216.156 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib/python3/dist-packages/orca/scripts/apps/Thunderbird/ |
Upload File : |
# Orca
#
# Copyright 2014 Igalia, S.L.
#
# Author: Joanmarie Diggs <jdiggs@igalia.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 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
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser 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.
"""Customized support for spellcheck in Thunderbird."""
__id__ = "$Id$"
__version__ = "$Revision$"
__date__ = "$Date$"
__copyright__ = "Copyright (c) 2014 Igalia, S.L."
__license__ = "LGPL"
import pyatspi
import orca.orca_state as orca_state
import orca.spellcheck as spellcheck
class SpellCheck(spellcheck.SpellCheck):
def __init__(self, script):
super(SpellCheck, self).__init__(script)
def isAutoFocusEvent(self, event):
if event.source != self._changeToEntry:
return False
locusOfFocus = orca_state.locusOfFocus
if not locusOfFocus:
return False
role = locusOfFocus.getRole()
if not role == pyatspi.ROLE_PUSH_BUTTON:
return False
lastKey, mods = self._script.utilities.lastKeyAndModifiers()
keys = self._script.utilities.mnemonicShortcutAccelerator(locusOfFocus)
for key in keys:
if key.endswith(lastKey.upper()):
return True
return False
def _isCandidateWindow(self, window):
if not (window and window.getRole() == pyatspi.ROLE_DIALOG):
return False
roles = [pyatspi.ROLE_PAGE_TAB_LIST, pyatspi.ROLE_SPLIT_PANE]
isNonSpellCheckChild = lambda x: x and x.getRole() in roles
if pyatspi.findDescendant(window, isNonSpellCheckChild):
return False
return True
def _findChangeToEntry(self, root):
isEntry = lambda x: x and x.getRole() == pyatspi.ROLE_ENTRY \
and x.getState().contains(pyatspi.STATE_SINGLE_LINE)
return pyatspi.findDescendant(root, isEntry)
def _findErrorWidget(self, root):
isError = lambda x: x and x.getRole() == pyatspi.ROLE_LABEL \
and not ":" in x.name and not x.getRelationSet()
return pyatspi.findDescendant(root, isError)
def _findSuggestionsList(self, root):
isList = lambda x: x and x.getRole() in [pyatspi.ROLE_LIST, pyatspi.ROLE_LIST_BOX] \
and 'Selection' in x.get_interfaces()
return pyatspi.findDescendant(root, isList)
def _getSuggestionIndexAndPosition(self, suggestion):
attrs = self._script.utilities.objectAttributes(suggestion)
index = attrs.get("posinset")
total = attrs.get("setsize")
if index is None or total is None:
return super()._getSuggestionIndexAndPosition(suggestion)
return int(index), int(total)