[][src]Struct qt_gui::QAccessibleTextRemoveEvent

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

The QAccessibleTextRemoveEvent class notifies of text being deleted.

C++ class: QAccessibleTextRemoveEvent.

C++ documentation:

The QAccessibleTextRemoveEvent class notifies of text being deleted.

This class is used with QAccessible::updateAccessibility().

Methods

impl QAccessibleTextRemoveEvent[src]

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

Returns the position where the text was removed.

Calls C++ function: int QAccessibleTextRemoveEvent::changePosition() const.

C++ documentation:

Returns the position where the text was removed.

pub unsafe fn from_q_object_int_q_string(
    obj: impl CastInto<Ptr<QObject>>,
    position: c_int,
    text: impl CastInto<Ref<QString>>
) -> CppBox<QAccessibleTextRemoveEvent>
[src]

Constructs a new QAccessibleTextRemoveEvent event for object. The text has been removed at position. By default it is assumed that the cursor has moved to position. If that is not the case, one needs to manually set it with QAccessibleTextCursorEvent::setCursorPosition() for this event.

Calls C++ function: [constructor] void QAccessibleTextRemoveEvent::QAccessibleTextRemoveEvent(QObject* obj, int position, const QString& text).

C++ documentation:

Constructs a new QAccessibleTextRemoveEvent event for object. The text has been removed at position. By default it is assumed that the cursor has moved to position. If that is not the case, one needs to manually set it with QAccessibleTextCursorEvent::setCursorPosition() for this event.

pub unsafe fn from_q_accessible_interface_int_q_string(
    iface: impl CastInto<Ptr<QAccessibleInterface>>,
    position: c_int,
    text: impl CastInto<Ref<QString>>
) -> CppBox<QAccessibleTextRemoveEvent>
[src]

Constructs a new QAccessibleTextRemoveEvent event for iface. The text has been removed at position. By default it is assumed that the cursor has moved to position. If that is not the case, one needs to manually set it with QAccessibleTextCursorEvent::setCursorPosition() for this event.

Calls C++ function: [constructor] void QAccessibleTextRemoveEvent::QAccessibleTextRemoveEvent(QAccessibleInterface* iface, int position, const QString& text).

C++ documentation:

Constructs a new QAccessibleTextRemoveEvent event for iface. The text has been removed at position. By default it is assumed that the cursor has moved to position. If that is not the case, one needs to manually set it with QAccessibleTextCursorEvent::setCursorPosition() for this event.

pub unsafe fn text_removed(&self) -> CppBox<QString>[src]

Returns the text that has been removed.

Calls C++ function: QString QAccessibleTextRemoveEvent::textRemoved() const.

C++ documentation:

Returns the text that has been removed.

Methods from Deref<Target = QAccessibleTextCursorEvent>

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

Returns the cursor position.

Calls C++ function: int QAccessibleTextCursorEvent::cursorPosition() const.

C++ documentation:

Returns the cursor position.

See also setCursorPosition().

pub unsafe fn set_cursor_position(&self, position: c_int)[src]

Sets the cursor position for this event.

Calls C++ function: void QAccessibleTextCursorEvent::setCursorPosition(int position).

C++ documentation:

Sets the cursor position for this event.

See also cursorPosition().

Trait Implementations

impl CppDeletable for QAccessibleTextRemoveEvent[src]

unsafe fn delete(&self)[src]

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

impl Deref for QAccessibleTextRemoveEvent[src]

type Target = QAccessibleTextCursorEvent

The resulting type after dereferencing.

fn deref(&self) -> &QAccessibleTextCursorEvent[src]

Calls C++ function: QAccessibleTextCursorEvent* static_cast<QAccessibleTextCursorEvent*>(QAccessibleTextRemoveEvent* ptr).

impl DynamicCast<QAccessibleTextRemoveEvent> for QAccessibleTextCursorEvent[src]

unsafe fn dynamic_cast(
    ptr: Ptr<QAccessibleTextCursorEvent>
) -> Ptr<QAccessibleTextRemoveEvent>
[src]

Calls C++ function: QAccessibleTextRemoveEvent* dynamic_cast<QAccessibleTextRemoveEvent*>(QAccessibleTextCursorEvent* ptr).

impl DynamicCast<QAccessibleTextRemoveEvent> for QAccessibleEvent[src]

unsafe fn dynamic_cast(
    ptr: Ptr<QAccessibleEvent>
) -> Ptr<QAccessibleTextRemoveEvent>
[src]

Calls C++ function: QAccessibleTextRemoveEvent* dynamic_cast<QAccessibleTextRemoveEvent*>(QAccessibleEvent* ptr).

impl StaticDowncast<QAccessibleTextRemoveEvent> for QAccessibleTextCursorEvent[src]

unsafe fn static_downcast(
    ptr: Ptr<QAccessibleTextCursorEvent>
) -> Ptr<QAccessibleTextRemoveEvent>
[src]

Calls C++ function: QAccessibleTextRemoveEvent* static_cast<QAccessibleTextRemoveEvent*>(QAccessibleTextCursorEvent* ptr).

impl StaticDowncast<QAccessibleTextRemoveEvent> for QAccessibleEvent[src]

unsafe fn static_downcast(
    ptr: Ptr<QAccessibleEvent>
) -> Ptr<QAccessibleTextRemoveEvent>
[src]

Calls C++ function: QAccessibleTextRemoveEvent* static_cast<QAccessibleTextRemoveEvent*>(QAccessibleEvent* ptr).

impl StaticUpcast<QAccessibleEvent> for QAccessibleTextRemoveEvent[src]

unsafe fn static_upcast(
    ptr: Ptr<QAccessibleTextRemoveEvent>
) -> Ptr<QAccessibleEvent>
[src]

Calls C++ function: QAccessibleEvent* static_cast<QAccessibleEvent*>(QAccessibleTextRemoveEvent* ptr).

impl StaticUpcast<QAccessibleTextCursorEvent> for QAccessibleTextRemoveEvent[src]

unsafe fn static_upcast(
    ptr: Ptr<QAccessibleTextRemoveEvent>
) -> Ptr<QAccessibleTextCursorEvent>
[src]

Calls C++ function: QAccessibleTextCursorEvent* static_cast<QAccessibleTextCursorEvent*>(QAccessibleTextRemoveEvent* ptr).

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.