[][src]Struct qt_gui::QAccessibleTextInterface

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

The QAccessibleTextInterface class implements support for text handling.

C++ class: QAccessibleTextInterface.

C++ documentation:

The QAccessibleTextInterface class implements support for text handling.

This interface corresponds to the IAccessibleText interface. It should be implemented for widgets that display more text than a plain label. Labels should be represented by only QAccessibleInterface and return their text as name (QAccessibleInterface::text() with QAccessible::Name as type). The QAccessibleTextInterface is typically for text that a screen reader might want to read line by line, and for widgets that support text selection and input. This interface is, for example, implemented for QLineEdit.

IAccessible2 Specification

Methods

impl QAccessibleTextInterface[src]

pub unsafe fn add_selection(&mut self, start_offset: c_int, end_offset: c_int)[src]

Select the text from startOffset to endOffset. The startOffset is the first character that will be selected. The endOffset is the first character that will not be selected.

Calls C++ function: pure virtual void QAccessibleTextInterface::addSelection(int startOffset, int endOffset).

C++ documentation:

Select the text from startOffset to endOffset. The startOffset is the first character that will be selected. The endOffset is the first character that will not be selected.

When the object supports multiple selections (e.g. in a word processor), this adds a new selection, otherwise it replaces the previous selection.

The selection will be endOffset - startOffset characters long.

pub unsafe fn attributes(
    &self,
    offset: c_int,
    start_offset: impl CastInto<MutPtr<c_int>>,
    end_offset: impl CastInto<MutPtr<c_int>>
) -> CppBox<QString>
[src]

Returns the text attributes at the position offset. In addition the range of the attributes is returned in startOffset and endOffset.

Calls C++ function: pure virtual QString QAccessibleTextInterface::attributes(int offset, int* startOffset, int* endOffset) const.

C++ documentation:

Returns the text attributes at the position offset. In addition the range of the attributes is returned in startOffset and endOffset.

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

Returns the length of the text (total size including spaces).

Calls C++ function: pure virtual int QAccessibleTextInterface::characterCount() const.

C++ documentation:

Returns the length of the text (total size including spaces).

pub unsafe fn character_rect(&self, offset: c_int) -> CppBox<QRect>[src]

Returns the position and size of the character at position offset in screen coordinates.

Calls C++ function: pure virtual QRect QAccessibleTextInterface::characterRect(int offset) const.

C++ documentation:

Returns the position and size of the character at position offset in screen coordinates.

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

The QAccessibleTextInterface class implements support for text handling.

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

C++ documentation:

The QAccessibleTextInterface class implements support for text handling.

This interface corresponds to the IAccessibleText interface. It should be implemented for widgets that display more text than a plain label. Labels should be represented by only QAccessibleInterface and return their text as name (QAccessibleInterface::text() with QAccessible::Name as type). The QAccessibleTextInterface is typically for text that a screen reader might want to read line by line, and for widgets that support text selection and input. This interface is, for example, implemented for QLineEdit.

IAccessible2 Specification

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

Returns the current cursor position.

Calls C++ function: pure virtual int QAccessibleTextInterface::cursorPosition() const.

C++ documentation:

Returns the current cursor position.

See also setCursorPosition().

pub unsafe fn offset_at_point(&self, point: impl CastInto<Ref<QPoint>>) -> c_int[src]

Returns the offset of the character at the point in screen coordinates.

Calls C++ function: pure virtual int QAccessibleTextInterface::offsetAtPoint(const QPoint& point) const.

C++ documentation:

Returns the offset of the character at the point in screen coordinates.

pub unsafe fn remove_selection(&mut self, selection_index: c_int)[src]

Clears the selection with index selectionIndex.

Calls C++ function: pure virtual void QAccessibleTextInterface::removeSelection(int selectionIndex).

C++ documentation:

Clears the selection with index selectionIndex.

pub unsafe fn scroll_to_substring(
    &mut self,
    start_index: c_int,
    end_index: c_int
)
[src]

Ensures that the text between startIndex and endIndex is visible.

Calls C++ function: pure virtual void QAccessibleTextInterface::scrollToSubstring(int startIndex, int endIndex).

C++ documentation:

Ensures that the text between startIndex and endIndex is visible.

pub unsafe fn selection(
    &self,
    selection_index: c_int,
    start_offset: impl CastInto<MutPtr<c_int>>,
    end_offset: impl CastInto<MutPtr<c_int>>
)
[src]

Returns a selection. The size of the selection is returned in startOffset and endOffset. If there is no selection both startOffset and endOffset are 0.

Calls C++ function: pure virtual void QAccessibleTextInterface::selection(int selectionIndex, int* startOffset, int* endOffset) const.

C++ documentation:

Returns a selection. The size of the selection is returned in startOffset and endOffset. If there is no selection both startOffset and endOffset are 0.

The accessibility APIs support multiple selections. For most widgets though, only one selection is supported with selectionIndex equal to 0.

See also setSelection().

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

Returns the number of selections in this text.

Calls C++ function: pure virtual int QAccessibleTextInterface::selectionCount() const.

C++ documentation:

Returns the number of selections in this text.

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

Moves the cursor to position.

Calls C++ function: pure virtual void QAccessibleTextInterface::setCursorPosition(int position).

C++ documentation:

Moves the cursor to position.

See also cursorPosition().

pub unsafe fn set_selection(
    &mut self,
    selection_index: c_int,
    start_offset: c_int,
    end_offset: c_int
)
[src]

Set the selection selectionIndex to the range from startOffset to endOffset.

Calls C++ function: pure virtual void QAccessibleTextInterface::setSelection(int selectionIndex, int startOffset, int endOffset).

C++ documentation:

Set the selection selectionIndex to the range from startOffset to endOffset.

See also selection(), addSelection(), and removeSelection().

pub unsafe fn text(
    &self,
    start_offset: c_int,
    end_offset: c_int
) -> CppBox<QString>
[src]

Returns the text from startOffset to endOffset. The startOffset is the first character that will be returned. The endOffset is the first character that will not be returned.

Calls C++ function: pure virtual QString QAccessibleTextInterface::text(int startOffset, int endOffset) const.

C++ documentation:

Returns the text from startOffset to endOffset. The startOffset is the first character that will be returned. The endOffset is the first character that will not be returned.

pub unsafe fn text_after_offset(
    &self,
    offset: c_int,
    boundary_type: TextBoundaryType,
    start_offset: impl CastInto<MutPtr<c_int>>,
    end_offset: impl CastInto<MutPtr<c_int>>
) -> CppBox<QString>
[src]

Returns the text item of type boundaryType that is right after offset offset and sets startOffset and endOffset values to the start and end positions of that item; returns an empty string if there is no such an item. Sets startOffset and endOffset values to -1 on error.

Calls C++ function: virtual QString QAccessibleTextInterface::textAfterOffset(int offset, QAccessible::TextBoundaryType boundaryType, int* startOffset, int* endOffset) const.

C++ documentation:

Returns the text item of type boundaryType that is right after offset offset and sets startOffset and endOffset values to the start and end positions of that item; returns an empty string if there is no such an item. Sets startOffset and endOffset values to -1 on error.

This default implementation is provided for small text edits. A word processor or text editor should provide their own efficient implementations. This function makes no distinction between paragraphs and lines.

Note: this function can not take the cursor position into account. By convention an offset of -2 means that this function should use the cursor position as offset. Thus an offset of -2 must be converted to the cursor position before calling this function. An offset of -1 is used for the text length and custom implementations of this function have to return the result as if the length was passed in as offset.

pub unsafe fn text_at_offset(
    &self,
    offset: c_int,
    boundary_type: TextBoundaryType,
    start_offset: impl CastInto<MutPtr<c_int>>,
    end_offset: impl CastInto<MutPtr<c_int>>
) -> CppBox<QString>
[src]

Returns the text item of type boundaryType at offset offset and sets startOffset and endOffset values to the start and end positions of that item; returns an empty string if there is no such an item. Sets startOffset and endOffset values to -1 on error.

Calls C++ function: virtual QString QAccessibleTextInterface::textAtOffset(int offset, QAccessible::TextBoundaryType boundaryType, int* startOffset, int* endOffset) const.

C++ documentation:

Returns the text item of type boundaryType at offset offset and sets startOffset and endOffset values to the start and end positions of that item; returns an empty string if there is no such an item. Sets startOffset and endOffset values to -1 on error.

This default implementation is provided for small text edits. A word processor or text editor should provide their own efficient implementations. This function makes no distinction between paragraphs and lines.

Note: this function can not take the cursor position into account. By convention an offset of -2 means that this function should use the cursor position as offset. Thus an offset of -2 must be converted to the cursor position before calling this function. An offset of -1 is used for the text length and custom implementations of this function have to return the result as if the length was passed in as offset.

pub unsafe fn text_before_offset(
    &self,
    offset: c_int,
    boundary_type: TextBoundaryType,
    start_offset: impl CastInto<MutPtr<c_int>>,
    end_offset: impl CastInto<MutPtr<c_int>>
) -> CppBox<QString>
[src]

Returns the text item of type boundaryType that is close to offset offset and sets startOffset and endOffset values to the start and end positions of that item; returns an empty string if there is no such an item. Sets startOffset and endOffset values to -1 on error.

Calls C++ function: virtual QString QAccessibleTextInterface::textBeforeOffset(int offset, QAccessible::TextBoundaryType boundaryType, int* startOffset, int* endOffset) const.

C++ documentation:

Returns the text item of type boundaryType that is close to offset offset and sets startOffset and endOffset values to the start and end positions of that item; returns an empty string if there is no such an item. Sets startOffset and endOffset values to -1 on error.

This default implementation is provided for small text edits. A word processor or text editor should provide their own efficient implementations. This function makes no distinction between paragraphs and lines.

Note: this function can not take the cursor position into account. By convention an offset of -2 means that this function should use the cursor position as offset. Thus an offset of -2 must be converted to the cursor position before calling this function. An offset of -1 is used for the text length and custom implementations of this function have to return the result as if the length was passed in as offset.

Trait Implementations

impl CppDeletable for QAccessibleTextInterface[src]

unsafe fn delete(&mut self)[src]

Destroys the QAccessibleTextInterface.

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

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.