QAccessibleTextSelectionEvent Class
QAccessibleTextSelectionEvent signals a change in the text selection of an object. More...
Header: | #include <QAccessibleTextSelectionEvent> |
qmake: | QT += gui |
Inherits: | QAccessibleTextCursorEvent |
Public Functions
QAccessibleTextSelectionEvent(QObject *object, int start, int end) | |
QAccessibleTextSelectionEvent(QAccessibleInterface *iface, int start, int end) | |
int | selectionEnd() const |
int | selectionStart() const |
void | setSelection(int start, int end) |
- 2 public functions inherited from QAccessibleTextCursorEvent
- 5 public functions inherited from QAccessibleEvent
Protected Variables
int | m_selectionEnd |
int | m_selectionStart |
Detailed Description
QAccessibleTextSelectionEvent signals a change in the text selection of an object.
This class is used with QAccessible::updateAccessibility().
Member Function Documentation
QAccessibleTextSelectionEvent::QAccessibleTextSelectionEvent(QObject *object, int start, int end)
Constructs a new QAccessibleTextSelectionEvent for object. The new selection this event notifies about is from position start to end.
QAccessibleTextSelectionEvent::QAccessibleTextSelectionEvent(QAccessibleInterface *iface, int start, int end)
Constructs a new QAccessibleTextSelectionEvent for iface. The new selection this event notifies about is from position start to end.
int QAccessibleTextSelectionEvent::selectionEnd() const
Returns the position of the last selected character.
int QAccessibleTextSelectionEvent::selectionStart() const
Returns the position of the first selected character.
void QAccessibleTextSelectionEvent::setSelection(int start, int end)
Sets the selection for this event from position start to end.
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-5.12/qaccessibletextselectionevent.html