CopperSpice API
1.9.2
|
The QAccessibleTableInterface class implements support for the IAccessibleTable2 interface. More...
Inherited by QAccessibleTable
Public Methods | |
virtual | ~QAccessibleTableInterface () |
virtual QAccessibleInterface * | caption () const = 0 |
virtual QAccessibleInterface * | cellAt (int row, int column) const = 0 |
virtual int | columnCount () const = 0 |
virtual QString | columnDescription (int column) const = 0 |
virtual bool | isColumnSelected (int column) const = 0 |
virtual bool | isRowSelected (int row) const = 0 |
virtual void | modelChange (QAccessibleTableModelChangeEvent *event) = 0 |
virtual int | rowCount () const = 0 |
virtual QString | rowDescription (int row) const = 0 |
virtual bool | selectColumn (int column) = 0 |
virtual int | selectedCellCount () const = 0 |
virtual QList< QAccessibleInterface * > | selectedCells () const = 0 |
virtual int | selectedColumnCount () const = 0 |
virtual QList< int > | selectedColumns () const = 0 |
virtual int | selectedRowCount () const = 0 |
virtual QList< int > | selectedRows () const = 0 |
virtual bool | selectRow (int row) = 0 |
virtual QAccessibleInterface * | summary () const = 0 |
virtual bool | unselectColumn (int column) = 0 |
virtual bool | unselectRow (int row) = 0 |
Friends | |
class | QAbstractItemView |
The QAccessibleTableInterface class implements support for the IAccessibleTable2 interface.
|
virtual |
Destroys the QAccessibleTableInterface.
|
pure virtual |
Returns the caption for the table.
|
pure virtual |
Returns the cell at the specified row and column in the table.
|
pure virtual |
Returns the total number of columns in table.
|
pure virtual |
Returns the description text of the column in the table.
|
pure virtual |
Returns a boolean value indicating whether the column is completely selected.
|
pure virtual |
Returns a boolean value indicating whether the row is completely selected.
|
pure virtual |
Informs about a change in the model's layout. The event contains the details.
|
pure virtual |
Returns the total number of rows in table.
|
pure virtual |
Returns the description text of the specified row in the table.
|
pure virtual |
Selects column. This function might unselect all previously selected columns. Returns true if the selection was successful.
|
pure virtual |
Returns the total number of selected cells.
|
pure virtual |
Returns the list of selected cell (by their index as QAccessibleInterface::child() accepts).
|
pure virtual |
Returns the total number of selected columns.
|
pure virtual |
Returns the list of currently selected columns.
|
pure virtual |
Returns the total number of selected rows.
|
pure virtual |
Returns the list of currently selected columns.
|
pure virtual |
Selects row. This function might unselect all previously selected rows. Returns true if the selection was successful.
|
pure virtual |
Returns a QAccessibleInterface that represents a summary of the table. This function may return 0 if no such interface exists.
|
pure virtual |
Unselects column, leaving other selected columns selected (if any). Returns true if the selection was successful.
|
pure virtual |
Unselects row leaving other selected rows selected (if any). Returns true if the selection was successful.