From 491ea140df524a8ea6bafe08b5375583113e5248 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Arve=20S=C3=A6ther?= Date: Thu, 20 May 2021 11:16:04 +0200 Subject: Add QAccessibleHyperlinkInterface This is needed in order to support hyperlinks in text content. Task-number: QTBUG-67878 Change-Id: I1e990a5db8f0cf78e5cdcec7359e5aabffe42e3d Reviewed-by: Volker Hilsheimer --- src/gui/accessible/qaccessible.cpp | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) (limited to 'src/gui/accessible/qaccessible.cpp') diff --git a/src/gui/accessible/qaccessible.cpp b/src/gui/accessible/qaccessible.cpp index dc6794ac9c..1ba206e82a 100644 --- a/src/gui/accessible/qaccessible.cpp +++ b/src/gui/accessible/qaccessible.cpp @@ -448,6 +448,7 @@ Q_LOGGING_CATEGORY(lcAccessibilityCore, "qt.accessibility.core"); \omitvalue ImageInterface \omit For objects that represent an image. This interface is generally less important. \endomit \value TableInterface For lists, tables and trees. \value TableCellInterface For cells in a TableInterface object. + \value HyperlinkInterface For hyperlink nodes (usually embedded as children of text nodes) \sa QAccessibleInterface::interface_cast(), QAccessibleTextInterface, QAccessibleValueInterface, QAccessibleActionInterface, QAccessibleTableInterface, QAccessibleTableCellInterface */ @@ -2958,6 +2959,44 @@ QString qAccessibleLocalizedActionDescription(const QString &actionName) return accessibleActionStrings()->localizedDescription(actionName); } +/*! + \internal + \fn QString QAccessibleHyperlinkInterface::anchor() const + + The logical/human readable name of the hyperlink +*/ + +/*! + \internal + \fn QString QAccessibleHyperlinkInterface::anchorTarget() const + + The target url of the hyperlink +*/ + +/*! + \internal + \fn int QAccessibleHyperlinkInterface::startIndex() const + + Returns the start index that will refer to the first character in the text where the hyperlink + begins. The index corresponds to the index that the QAccessibleTextInterface needs in order + to find the start of the hyperlink. + +*/ + +/*! + \internal + \fn int QAccessibleHyperlinkInterface::endIndex() const + + Returns the end index that will refer to the first character in the text where the hyperlink + begins. The index corresponds to the index that the QAccessibleTextInterface needs in order + to find the end of the hyperlink. +*/ + +QAccessibleHyperlinkInterface::~QAccessibleHyperlinkInterface() +{ + +} + #endif // QT_NO_ACCESSIBILITY QT_END_NAMESPACE -- cgit v1.2.3