/usr/share/pyshared/pyatspi/document.py is in python-pyatspi 2.10.0+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | #Copyright (C) 2008 Codethink Ltd
#Copyright (C) 2010 Novell, Inc.
#This library is free software; you can redistribute it and/or
#modify it under the terms of the GNU Lesser General Public
#License version 2 as published by the Free Software Foundation.
#This program 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 General Public License for more details.
#You should have received a copy of the GNU Lesser General Public License
#along with this program; if not, write to the Free Software
#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
from gi.repository import Atspi
from pyatspi.utils import *
from pyatspi.interface import *
__all__ = [
"Document",
]
#------------------------------------------------------------------------------
class Document(interface):
"""
Primarily a 'tagging' interface which indicates the start of
document content in the Accessibility hierarchy. Accessible objects
below the node implementing Document are normally assumed to
be part of the document content. Attributes of Document are those
attributes associated with the document as a whole. Objects that
implement Document are normally expected to implement Collection
as well.
"""
def getAttributeValue(self, key):
"""
Gets the value of a single attribute, if specified for the document
as a whole.
@param : attributename
a string indicating the name of a specific attribute (name-value
pair) being queried.
@return a string corresponding to the value of the specified
attribute, or an empty string if the attribute is unspecified
for the object.
"""
return Atspi.Document.get_document_attribute_value(self.obj, key)
def getAttributes(self):
"""
Gets all attributes specified for a document as a whole. For
attributes which change within the document content, see Accessibility::Text::getAttributes
instead.
@return an AttributeSet containing the attributes of the document,
as name-value pairs.
"""
ret = Atspi.Document.get_document_attributes(self.obj)
return [key + ':' + value for key, value in ret.items()]
def getLocale(self):
"""
Gets the locale associated with the document's content. e.g.
the locale for LOCALE_TYPE_MESSAGES.
@return a string compliant with the POSIX standard for locale
description.
"""
return Atspi.Document.get_locale(self.obj)
#END----------------------------------------------------------------------------
|