Skip to main content

QAccessibleActionInterface

Struct QAccessibleActionInterface 

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

C++ class: QAccessibleActionInterface.

Implementations§

Source§

impl QAccessibleActionInterface

Source

pub unsafe fn action_names(&self) -> CppBox<QStringList>

Calls C++ function: pure virtual QStringList QAccessibleActionInterface::actionNames() const.

Source

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

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

Source

pub unsafe fn decrease_action() -> Ref<QString>

Calls C++ function: static const QString& QAccessibleActionInterface::decreaseAction().

Source

pub unsafe fn do_action(&self, action_name: impl CastInto<Ref<QString>>)

Calls C++ function: pure virtual void QAccessibleActionInterface::doAction(const QString& actionName).

Source

pub unsafe fn increase_action() -> Ref<QString>

Calls C++ function: static const QString& QAccessibleActionInterface::increaseAction().

Source

pub unsafe fn key_bindings_for_action( &self, action_name: impl CastInto<Ref<QString>>, ) -> CppBox<QStringList>

Calls C++ function: pure virtual QStringList QAccessibleActionInterface::keyBindingsForAction(const QString& actionName) const.

Source

pub unsafe fn localized_action_description( &self, name: impl CastInto<Ref<QString>>, ) -> CppBox<QString>

Calls C++ function: virtual QString QAccessibleActionInterface::localizedActionDescription(const QString& name) const.

Source

pub unsafe fn localized_action_name( &self, name: impl CastInto<Ref<QString>>, ) -> CppBox<QString>

Calls C++ function: virtual QString QAccessibleActionInterface::localizedActionName(const QString& name) const.

Source

pub unsafe fn next_page_action() -> CppBox<QString>

Calls C++ function: static QString QAccessibleActionInterface::nextPageAction().

Source

pub unsafe fn press_action() -> Ref<QString>

Calls C++ function: static const QString& QAccessibleActionInterface::pressAction().

Source

pub unsafe fn previous_page_action() -> CppBox<QString>

Calls C++ function: static QString QAccessibleActionInterface::previousPageAction().

Source

pub unsafe fn scroll_down_action() -> CppBox<QString>

Calls C++ function: static QString QAccessibleActionInterface::scrollDownAction().

Source

pub unsafe fn scroll_left_action() -> CppBox<QString>

Calls C++ function: static QString QAccessibleActionInterface::scrollLeftAction().

Source

pub unsafe fn scroll_right_action() -> CppBox<QString>

Calls C++ function: static QString QAccessibleActionInterface::scrollRightAction().

Source

pub unsafe fn scroll_up_action() -> CppBox<QString>

Calls C++ function: static QString QAccessibleActionInterface::scrollUpAction().

Source

pub unsafe fn set_focus_action() -> Ref<QString>

Calls C++ function: static const QString& QAccessibleActionInterface::setFocusAction().

Source

pub unsafe fn show_menu_action() -> Ref<QString>

Calls C++ function: static const QString& QAccessibleActionInterface::showMenuAction().

Source

pub unsafe fn toggle_action() -> Ref<QString>

Calls C++ function: static const QString& QAccessibleActionInterface::toggleAction().

Source

pub unsafe fn tr( source_text: *const c_char, disambiguation: *const c_char, n: c_int, ) -> CppBox<QString>

Calls C++ function: static QString QAccessibleActionInterface::tr(const char* sourceText, const char* disambiguation, int n).

Source

pub unsafe fn tr_utf8( source_text: *const c_char, disambiguation: *const c_char, n: c_int, ) -> CppBox<QString>

Calls C++ function: static QString QAccessibleActionInterface::trUtf8(const char* sourceText, const char* disambiguation, int n).

Trait Implementations§

Source§

impl CppDeletable for QAccessibleActionInterface

Source§

unsafe fn delete(&self)

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

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.