[][src]Struct qt_gui::QAccessibleTableCellInterface

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

The QAccessibleTableCellInterface class implements support for the IAccessibleTable2 Cell interface.

C++ class: QAccessibleTableCellInterface.

C++ documentation:

The QAccessibleTableCellInterface class implements support for the IAccessibleTable2 Cell interface.

IAccessible2 Specification

Methods

impl QAccessibleTableCellInterface[src]

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

Returns the number of columns occupied by this cell accessible.

Calls C++ function: pure virtual int QAccessibleTableCellInterface::columnExtent() const.

C++ documentation:

Returns the number of columns occupied by this cell accessible.

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

Returns the column headers as an array of cell accessibles.

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

C++ documentation:

Returns the column headers as an array of cell accessibles.

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

Translates this cell accessible into the corresponding column index.

Calls C++ function: pure virtual int QAccessibleTableCellInterface::columnIndex() const.

C++ documentation:

Translates this cell accessible into the corresponding column index.

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

The QAccessibleTableCellInterface class implements support for the IAccessibleTable2 Cell interface.

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

C++ documentation:

The QAccessibleTableCellInterface class implements support for the IAccessibleTable2 Cell interface.

IAccessible2 Specification

pub unsafe fn is_selected(&self) -> bool[src]

Returns a boolean value indicating whether this cell is selected.

Calls C++ function: pure virtual bool QAccessibleTableCellInterface::isSelected() const.

C++ documentation:

Returns a boolean value indicating whether this cell is selected.

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

Returns the number of rows occupied by this cell accessible.

Calls C++ function: pure virtual int QAccessibleTableCellInterface::rowExtent() const.

C++ documentation:

Returns the number of rows occupied by this cell accessible.

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

Returns the row headers as an array of cell accessibles.

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

C++ documentation:

Returns the row headers as an array of cell accessibles.

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

Translates this cell accessible into the corresponding row index.

Calls C++ function: pure virtual int QAccessibleTableCellInterface::rowIndex() const.

C++ documentation:

Translates this cell accessible into the corresponding row index.

pub unsafe fn table(&self) -> Ptr<QAccessibleInterface>[src]

Returns the QAccessibleInterface of the table containing this cell.

Calls C++ function: pure virtual QAccessibleInterface* QAccessibleTableCellInterface::table() const.

C++ documentation:

Returns the QAccessibleInterface of the table containing this cell.

Trait Implementations

impl CppDeletable for QAccessibleTableCellInterface[src]

unsafe fn delete(&self)[src]

Destroys the QAccessibleTableCellInterface.

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

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.