Skip to main content

QAccessibleTableInterface

Struct QAccessibleTableInterface 

Source
pub struct QAccessibleTableInterface { /* private fields */ }
Expand description

C++ class: QAccessibleTableInterface.

Implementations§

Source§

impl QAccessibleTableInterface

Source

pub unsafe fn caption(&self) -> Ptr<QAccessibleInterface>

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

Source

pub unsafe fn cell_at( &self, row: c_int, column: c_int, ) -> Ptr<QAccessibleInterface>

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

Source

pub unsafe fn column_count(&self) -> c_int

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

Source

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

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

Source

pub unsafe fn copy_from( &self, other: impl CastInto<Ref<QAccessibleTableInterface>>, ) -> Ref<QAccessibleTableInterface>

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

Source

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

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

Source

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

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

Source

pub unsafe fn model_change( &self, event: impl CastInto<Ptr<QAccessibleTableModelChangeEvent>>, )

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

Source

pub unsafe fn row_count(&self) -> c_int

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

Source

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

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

Source

pub unsafe fn select_column(&self, column: c_int) -> bool

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

Source

pub unsafe fn select_row(&self, row: c_int) -> bool

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

Source

pub unsafe fn selected_cell_count(&self) -> c_int

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

Source

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

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

Source

pub unsafe fn selected_column_count(&self) -> c_int

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

Source

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

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

Source

pub unsafe fn selected_row_count(&self) -> c_int

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

Source

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

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

Source

pub unsafe fn summary(&self) -> Ptr<QAccessibleInterface>

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

Source

pub unsafe fn unselect_column(&self, column: c_int) -> bool

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

Source

pub unsafe fn unselect_row(&self, row: c_int) -> bool

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

Trait Implementations§

Source§

impl CppDeletable for QAccessibleTableInterface

Source§

unsafe fn delete(&self)

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

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T, U> CastInto<U> for T
where U: CastFrom<T>,

Source§

unsafe fn cast_into(self) -> U

Performs the conversion. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> StaticUpcast<T> for T

Source§

unsafe fn static_upcast(ptr: Ptr<T>) -> Ptr<T>

Convert type of a const pointer. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.