# Orca
#
# Copyright (C) 2013-2014 Igalia, S.L.
#
# Author: Joanmarie Diggs <[email protected]>
#
# 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.
__id__ = "$Id$"
__version__ = "$Revision$"
__date__ = "$Date$"
__copyright__ = "Copyright (c) 2013-2014 Igalia, S.L."
__license__ = "LGPL"
from orca import script_utilities
from orca.ax_object import AXObject
from orca.ax_utilities import AXUtilities
class Utilities(script_utilities.Utilities):
def __init__(self, script):
super().__init__(script)
self._isComboBoxWithToggleDescendant = {}
self._isToggleDescendantOfComboBox = {}
def clearCachedObjects(self):
self._isComboBoxWithToggleDescendant = {}
self._isToggleDescendantOfComboBox = {}
def infoBar(self, root):
return AXObject.find_descendant(root, AXUtilities.is_info_bar)
def isComboBoxWithToggleDescendant(self, obj):
if not AXUtilities.is_combo_box(obj):
return False
rv = self._isComboBoxWithToggleDescendant.get(hash(obj))
if rv is not None:
return rv
for child in AXObject.iter_children(obj):
if not AXUtilities.is_filler(child):
continue
toggle = AXObject.find_descendant(child, AXUtilities.is_toggle_button)
rv = toggle is not None
if toggle:
self._isToggleDescendantOfComboBox[hash(toggle)] = True
break
self._isComboBoxWithToggleDescendant[hash(obj)] = rv
return rv
def isToggleDescendantOfComboBox(self, obj):
if not AXUtilities.is_toggle_button(obj):
return False
rv = self._isToggleDescendantOfComboBox.get(hash(obj))
if rv is not None:
return rv
comboBox = AXObject.find_ancestor(obj, AXUtilities.is_combo_box)
if comboBox:
self._isComboBoxWithToggleDescendant[hash(comboBox)] = True
rv = comboBox is not None
self._isToggleDescendantOfComboBox[hash(obj)] = rv
return rv
def isEntryCompletionPopupItem(self, obj):
return AXUtilities.is_table_cell(obj) \
and AXObject.find_ancestor(obj, AXUtilities.is_window) is not None