X7ROOT File Manager
Current Path:
/usr/lib/python2.7/site-packages/pyatspi
usr
/
lib
/
python2.7
/
site-packages
/
pyatspi
/
📁
..
📄
Accessibility.py
(11.09 KB)
📄
Accessibility.pyc
(14.53 KB)
📄
Accessibility.pyo
(14.53 KB)
📄
__init__.py
(993 B)
📄
__init__.pyc
(467 B)
📄
__init__.pyo
(467 B)
📄
action.py
(4.85 KB)
📄
action.pyc
(4.91 KB)
📄
action.pyo
(4.91 KB)
📄
appevent.py
(3.66 KB)
📄
appevent.pyc
(3.42 KB)
📄
appevent.pyo
(3.42 KB)
📄
application.py
(2.78 KB)
📄
application.pyc
(2.63 KB)
📄
application.pyo
(2.63 KB)
📄
atspienum.py
(1.39 KB)
📄
atspienum.pyc
(1 KB)
📄
atspienum.pyo
(1 KB)
📄
collection.py
(3.96 KB)
📄
collection.pyc
(4.11 KB)
📄
collection.pyo
(4.11 KB)
📄
component.py
(6.72 KB)
📄
component.pyc
(6.72 KB)
📄
component.pyo
(6.72 KB)
📄
constants.py
(4.7 KB)
📄
constants.pyc
(3.29 KB)
📄
constants.pyo
(3.29 KB)
📄
deviceevent.py
(9.33 KB)
📄
deviceevent.pyc
(11.96 KB)
📄
deviceevent.pyo
(11.96 KB)
📄
document.py
(3.6 KB)
📄
document.pyc
(3.55 KB)
📄
document.pyo
(3.55 KB)
📄
editabletext.py
(5.02 KB)
📄
editabletext.pyc
(5.05 KB)
📄
editabletext.pyo
(5.05 KB)
📄
hypertext.py
(2.76 KB)
📄
hypertext.pyc
(2.48 KB)
📄
hypertext.pyo
(2.48 KB)
📄
image.py
(4.64 KB)
📄
image.pyc
(4.6 KB)
📄
image.pyo
(4.6 KB)
📄
interface.py
(980 B)
📄
interface.pyc
(862 B)
📄
interface.pyo
(862 B)
📄
registry.py
(17.8 KB)
📄
registry.pyc
(15.55 KB)
📄
registry.pyo
(15.55 KB)
📄
role.py
(13.09 KB)
📄
role.pyc
(10.21 KB)
📄
role.pyo
(10.21 KB)
📄
selection.py
(5.62 KB)
📄
selection.pyc
(5.8 KB)
📄
selection.pyo
(5.8 KB)
📄
state.py
(5.34 KB)
📄
state.pyc
(4.37 KB)
📄
state.pyo
(4.37 KB)
📄
table.py
(15.39 KB)
📄
table.pyc
(16.91 KB)
📄
table.pyo
(16.91 KB)
📄
tablecell.py
(3.08 KB)
📄
tablecell.pyc
(3.06 KB)
📄
tablecell.pyo
(3.06 KB)
📄
text.py
(30.98 KB)
📄
text.pyc
(31.63 KB)
📄
text.pyo
(31.63 KB)
📄
utils.py
(13.82 KB)
📄
utils.pyc
(15.21 KB)
📄
utils.pyo
(15.21 KB)
📄
value.py
(2.8 KB)
📄
value.pyc
(2.61 KB)
📄
value.pyo
(2.61 KB)
Editing: tablecell.py
#Copyright (c) 2013 SUSE LLC. #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__ = [ "TableCell", ] #------------------------------------------------------------------------------ class TableCell(interface): """ An interface used by cells in a table. """ def get_columnSpan(self): return Atspi.TableCell.get_column_span(self.obj) _columnSpanDoc = \ """ Get the number of columns occupied by this cell. """ columnSpan = property(fget=get_columnSpan, doc=_columnSpanDoc) def get_columnHeaderCells(self): return Atspi.TableCell.get_column_header_cells(self.obj) _columnHeaderCellsDoc = \ """ Get the column headers as an array of cell accessibles. """ columnHeaderCells = property(fget=get_columnHeaderCells, doc=_columnHeaderCellsDoc) def get_rowSpan(self): return Atspi.TableCell.get_row_span(self.obj) _rowSpanDoc = \ """ Get the number of rows occupied by this cell. """ rowSpan = property(fget=get_rowSpan, doc=_rowSpanDoc) def get_rowHeaderCells(self): return Atspi.TableCell.get_row_header_cells(self.obj) _rowHeaderCellsDoc = \ """ Get the row headers as an array of cell accessibles. """ rowHeaderCells = property(fget=get_rowHeaderCells, doc=_rowHeaderCellsDoc) def get_position(self): return Atspi.TableCell.get_position(self.obj) _positionDoc = \ """ Returns the tabular position of this accessible. """ position = property(fget=get_position, doc=_positionDoc) def getRowColumnSpan(self): """ determine the row and column indices and span of the given cell. """ return Atspi.TableCell.get_row_column_span(self.obj) def get_table(self): return Atspi.TableCell.get_table(self.obj) _tableDoc = \ """ Returns a reference to the accessible of the containing table. """ table = property(fget=get_table, doc=_tableDoc) #END----------------------------------------------------------------------------
Upload File
Create Folder