[pyatspi2] Fix several table functions
- From: Mike Gorse <mgorse src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pyatspi2] Fix several table functions
- Date: Tue, 17 May 2011 22:08:33 +0000 (UTC)
commit b5515e09dac15034b0df090d92935a63c53bc5a0
Author: Mike Gorse <mgorse novell com>
Date: Tue May 17 17:08:22 2011 -0500
Fix several table functions
pyatspi/Accessibility.py | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
---
diff --git a/pyatspi/Accessibility.py b/pyatspi/Accessibility.py
index dd2ccb9..e5f25b4 100644
--- a/pyatspi/Accessibility.py
+++ b/pyatspi/Accessibility.py
@@ -281,6 +281,7 @@ Table = Atspi.Table
Atspi.Accessible.queryTable = lambda x: getInterface(Atspi.Accessible.get_table, x)
Atspi.Table.addColumnSelection = lambda *args: exwrap(Atspi.Table.add_column_selection, *args)
Atspi.Table.addRowSelection = lambda *args: exwrap(Atspi.Table.add_row_selection, *args)
+Atspi.Table.caption = property(fget=lambda x: exwrap(Atspi.Table.get_caption, x))
Atspi.Table.getAccessibleAt = lambda *args: exwrap(Atspi.Table.get_accessible_at, *args)
Atspi.Table.getColumnAtIndex = lambda *args: exwrap(Atspi.Table.get_column_at_index, *args)
Atspi.Table.getColumnDescription = lambda *args: exwrap(Atspi.Table.get_column_description, *args)
@@ -288,7 +289,7 @@ Atspi.Table.getColumnExtentAt = lambda *args: exwrap(Atspi.Table.get_column_exte
Atspi.Table.getColumnHeader = lambda *args: exwrap(Atspi.Table.get_column_header, *args)
Atspi.Table.getIndexAt = lambda *args: exwrap(Atspi.Table.get_index_at, *args)
Atspi.Table.getRowAtIndex = lambda *args: exwrap(Atspi.Table.get_row_at_index, *args)
-Atspi.Table.getRowColumnExtents = lambda *args: exwrap(Atspi.Table.get_row_column_extents_at_index, *args)
+Atspi.Table.getRowColumnExtentsAtIndex = lambda *args: exwrap(Atspi.Table.get_row_column_extents_at_index, *args)
Atspi.Table.getRowDescription = lambda *args: exwrap(Atspi.Table.get_row_description, *args)
Atspi.Table.getRowExtentAt = lambda *args: exwrap(Atspi.Table.get_row_extent_at, *args)
Atspi.Table.getRowHeader = lambda *args: exwrap(Atspi.Table.get_row_header, *args)
@@ -303,6 +304,7 @@ Atspi.Table.nColumns = property(fget=lambda x: exwrap(Atspi.Table.get_n_columns,
Atspi.Table.nRows = property(fget=lambda x: exwrap(Atspi.Table.get_n_rows, x))
Atspi.Table.get_nSelectedColumns = lambda *args: exwrap(Atspi.Table.get_n_selected_columns, *args)
Atspi.Table.get_nSelectedRows = lambda *args: exwrap(Atspi.Table.get_n_selected_rows, *args)
+Atspi.Table.summary = property(fget=lambda x: exwrap(Atspi.Table.get_summary, x))
### text ###
Atspi.Accessible.queryText = lambda x: Text(getInterface(Atspi.Accessible.get_text, x))
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]