QAccessibleTextRemoveEvent Class
QAccessibleTextRemoveEvent クラスは、テキストが削除されたことを通知します。詳細...
ヘッダー | #include <QAccessibleTextRemoveEvent> |
CMake: | find_package(Qt6 REQUIRED COMPONENTS Gui) target_link_libraries(mytarget PRIVATE Qt6::Gui) |
qmake: | QT += gui |
継承: | QAccessibleTextCursorEvent |
- 継承メンバを含む全メンバのリスト
- QAccessibleTextRemoveEventはアクセシビリティクラスの一部です。
パブリック関数
QAccessibleTextRemoveEvent(QAccessibleInterface *iface, int position, const QString &text) | |
QAccessibleTextRemoveEvent(QObject *object, int position, const QString &text) | |
int | changePosition() const |
QString | textRemoved() const |
詳細説明
このクラスはQAccessible::updateAccessibility() と共に使用されます。
メンバ関数のドキュメント
QAccessibleTextRemoveEvent::QAccessibleTextRemoveEvent(QAccessibleInterface *iface, int position, const QString &text)
iface の新しい QAccessibleTextRemoveEvent イベントを構築します。text はposition で削除されている。デフォルトでは、カーソルはposition に移動したと見なされます。そうでない場合は、このイベントに対してQAccessibleTextCursorEvent::setCursorPosition() で手動で設定する必要があります。
QAccessibleTextRemoveEvent::QAccessibleTextRemoveEvent(QObject *object, int position, const QString &text)
object の新しい QAccessibleTextRemoveEvent イベントを構築します。text はposition で削除されている。デフォルトでは、カーソルはposition に移動したと見なされます。そうでない場合は、このイベントに対してQAccessibleTextCursorEvent::setCursorPosition() で手動で設定する必要があります。
int QAccessibleTextRemoveEvent::changePosition() const
テキストが削除された位置を返します。
QString QAccessibleTextRemoveEvent::textRemoved() 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.