[][src]Struct qt_gui::QAccessibleTableInterface

#[repr(C)]
pub struct QAccessibleTableInterface { /* fields omitted */ }

The QAccessibleTableInterface class implements support for the IAccessibleTable2 interface.

C++ class: QAccessibleTableInterface.

C++ documentation:

The QAccessibleTableInterface class implements support for the IAccessibleTable2 interface.

IAccessible2 Specification

Methods

impl QAccessibleTableInterface[src]

pub unsafe fn caption(&self) -> MutPtr<QAccessibleInterface>[src]

Returns the caption for the table.

Calls C++ function: pure virtual QAccessibleInterface* QAccessibleTableInterface::caption() const.

C++ documentation:

Returns the caption for the table.

pub unsafe fn cell_at(
    &self,
    row: c_int,
    column: c_int
) -> MutPtr<QAccessibleInterface>
[src]

Returns the cell at the specified row and column in the table.

Calls C++ function: pure virtual QAccessibleInterface* QAccessibleTableInterface::cellAt(int row, int column) const.

C++ documentation:

Returns the cell at the specified row and column in the table.

pub unsafe fn column_count(&self) -> c_int[src]

Returns the total number of columns in table.

Calls C++ function: pure virtual int QAccessibleTableInterface::columnCount() const.

C++ documentation:

Returns the total number of columns in table.

pub unsafe fn column_description(&self, column: c_int) -> CppBox<QString>[src]

Returns the description text of the specified column in the table.

Calls C++ function: pure virtual QString QAccessibleTableInterface::columnDescription(int column) const.

C++ documentation:

Returns the description text of the specified column in the table.

pub unsafe fn copy_from(
    &mut self,
    other: impl CastInto<Ref<QAccessibleTableInterface>>
) -> MutRef<QAccessibleTableInterface>
[src]

The QAccessibleTableInterface class implements support for the IAccessibleTable2 interface.

Calls C++ function: QAccessibleTableInterface& QAccessibleTableInterface::operator=(const QAccessibleTableInterface& other).

C++ documentation:

The QAccessibleTableInterface class implements support for the IAccessibleTable2 interface.

IAccessible2 Specification

pub unsafe fn is_column_selected(&self, column: c_int) -> bool[src]

Returns a boolean value indicating whether the specified column is completely selected.

Calls C++ function: pure virtual bool QAccessibleTableInterface::isColumnSelected(int column) const.

C++ documentation:

Returns a boolean value indicating whether the specified column is completely selected.

pub unsafe fn is_row_selected(&self, row: c_int) -> bool[src]

Returns a boolean value indicating whether the specified row is completely selected.

Calls C++ function: pure virtual bool QAccessibleTableInterface::isRowSelected(int row) const.

C++ documentation:

Returns a boolean value indicating whether the specified row is completely selected.

pub unsafe fn model_change(
    &mut self,
    event: impl CastInto<MutPtr<QAccessibleTableModelChangeEvent>>
)
[src]

Informs about a change in the model's layout. The event contains the details.

Calls C++ function: pure virtual void QAccessibleTableInterface::modelChange(QAccessibleTableModelChangeEvent* event).

C++ documentation:

Informs about a change in the model's layout. The event contains the details.

See also QAccessibleTableModelChangeEvent.

pub unsafe fn row_count(&self) -> c_int[src]

Returns the total number of rows in table.

Calls C++ function: pure virtual int QAccessibleTableInterface::rowCount() const.

C++ documentation:

Returns the total number of rows in table.

pub unsafe fn row_description(&self, row: c_int) -> CppBox<QString>[src]

Returns the description text of the specified row in the table.

Calls C++ function: pure virtual QString QAccessibleTableInterface::rowDescription(int row) const.

C++ documentation:

Returns the description text of the specified row in the table.

pub unsafe fn select_column(&mut self, column: c_int) -> bool[src]

Selects column. This function might unselect all previously selected columns. Returns true if the selection was successful.

Calls C++ function: pure virtual bool QAccessibleTableInterface::selectColumn(int column).

C++ documentation:

Selects column. This function might unselect all previously selected columns. Returns true if the selection was successful.

pub unsafe fn select_row(&mut self, row: c_int) -> bool[src]

Selects row. This function might unselect all previously selected rows. Returns true if the selection was successful.

Calls C++ function: pure virtual bool QAccessibleTableInterface::selectRow(int row).

C++ documentation:

Selects row. This function might unselect all previously selected rows. Returns true if the selection was successful.

pub unsafe fn selected_cell_count(&self) -> c_int[src]

Returns the total number of selected cells.

Calls C++ function: pure virtual int QAccessibleTableInterface::selectedCellCount() const.

C++ documentation:

Returns the total number of selected cells.

pub unsafe fn selected_cells(&self) -> CppBox<QListOfQAccessibleInterface>[src]

Returns the list of selected cell (by their index as QAccessibleInterface::child() accepts).

Calls C++ function: pure virtual QList<QAccessibleInterface*> QAccessibleTableInterface::selectedCells() const.

C++ documentation:

Returns the list of selected cell (by their index as QAccessibleInterface::child() accepts).

pub unsafe fn selected_column_count(&self) -> c_int[src]

Returns the total number of selected columns.

Calls C++ function: pure virtual int QAccessibleTableInterface::selectedColumnCount() const.

C++ documentation:

Returns the total number of selected columns.

pub unsafe fn selected_columns(&self) -> CppBox<QListOfInt>[src]

Returns the list of currently selected columns.

Calls C++ function: pure virtual QList<int> QAccessibleTableInterface::selectedColumns() const.

C++ documentation:

Returns the list of currently selected columns.

pub unsafe fn selected_row_count(&self) -> c_int[src]

Returns the total number of selected rows.

Calls C++ function: pure virtual int QAccessibleTableInterface::selectedRowCount() const.

C++ documentation:

Returns the total number of selected rows.

pub unsafe fn selected_rows(&self) -> CppBox<QListOfInt>[src]

Returns the list of currently selected columns.

Calls C++ function: pure virtual QList<int> QAccessibleTableInterface::selectedRows() const.

C++ documentation:

Returns the list of currently selected columns.

pub unsafe fn summary(&self) -> MutPtr<QAccessibleInterface>[src]

Returns a QAccessibleInterface that represents a summary of the table. This function may return 0 if no such interface exists.

Calls C++ function: pure virtual QAccessibleInterface* QAccessibleTableInterface::summary() const.

C++ documentation:

Returns a QAccessibleInterface that represents a summary of the table. This function may return 0 if no such interface exists.

pub unsafe fn unselect_column(&mut self, column: c_int) -> bool[src]

Unselects column, leaving other selected columns selected (if any). Returns true if the selection was successful.

Calls C++ function: pure virtual bool QAccessibleTableInterface::unselectColumn(int column).

C++ documentation:

Unselects column, leaving other selected columns selected (if any). Returns true if the selection was successful.

pub unsafe fn unselect_row(&mut self, row: c_int) -> bool[src]

Unselects row, leaving other selected rows selected (if any). Returns true if the selection was successful.

Calls C++ function: pure virtual bool QAccessibleTableInterface::unselectRow(int row).

C++ documentation:

Unselects row, leaving other selected rows selected (if any). Returns true if the selection was successful.

Trait Implementations

impl CppDeletable for QAccessibleTableInterface[src]

unsafe fn delete(&mut self)[src]

Destroys the QAccessibleTableInterface.

Calls C++ function: virtual [destructor] void QAccessibleTableInterface::~QAccessibleTableInterface().

C++ documentation:

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> StaticUpcast<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.