QAccessibleTextInsertEvent Class
QAccessibleTextInsertEvent 클래스는 텍스트 삽입을 알립니다. 더 보기...
Header: | #include <QAccessibleTextInsertEvent> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Gui) target_link_libraries(mytarget PRIVATE Qt6::Gui) |
qmake: | QT += gui |
상속합니다: | QAccessibleTextCursorEvent |
- 상속된 멤버를 포함한 모든 멤버의 목록
- QAccessibleTextInsertEvent는 접근성 클래스의 일부입니다.
공용 함수
QAccessibleTextInsertEvent(QAccessibleInterface *iface, int position, const QString &text) | |
QAccessibleTextInsertEvent(QObject *object, int position, const QString &text) | |
int | changePosition() const |
QString | textInserted() const |
상세 설명
이 클래스는 QAccessible::updateAccessibility()와 함께 사용됩니다.
멤버 함수 문서
QAccessibleTextInsertEvent::QAccessibleTextInsertEvent(QAccessibleInterface *iface, int position, const QString &text)
iface 에 대한 새로운 QAccessibleTextInsertEvent 이벤트를 생성합니다. position 에 text 이 삽입되었습니다.
QAccessibleTextInsertEvent::QAccessibleTextInsertEvent(QObject *object, int position, const QString &text)
object 에 대한 새로운 QAccessibleTextInsertEvent 이벤트를 생성합니다. position 에 text 이 삽입되었습니다. 기본적으로 커서가 선택 영역의 끝으로 이동한 것으로 가정합니다. 그렇지 않은 경우 이 이벤트에 대해 QAccessibleTextCursorEvent::setCursorPosition()를 사용하여 수동으로 설정해야 합니다.
int QAccessibleTextInsertEvent::changePosition() const
텍스트가 삽입된 위치를 반환합니다.
QString QAccessibleTextInsertEvent::textInserted() const
삽입된 텍스트를 반환합니다.
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.