summaryrefslogtreecommitdiffstats
path: root/src/pdf/quick/plugin.cpp
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2020-01-15 09:44:10 +0100
committerShawn Rutledge <shawn.rutledge@qt.io>2020-01-30 16:26:56 +0100
commitccbd6fbdbe071f42e1c060ca579786758701f358 (patch)
tree46e6fbfb35ffbd42eaa2bcaabcc78c0d106115f1 /src/pdf/quick/plugin.cpp
parentbc1d6ddeb5076f68e0a758725a20c3f2a6d081f0 (diff)
Add PdfLinkModel
Internal links and web links populate the QALM, which can then be used to drive a Repeater to position highlight rectangles with TapHandlers, which will handle a click by jumping to the link destination. Fixes: QTBUG-77511 Change-Id: I3b5b96d6e82bfd578f31f631f24279173036a080 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io> Reviewed-by: Michal Klocek <michal.klocek@qt.io>
Diffstat (limited to 'src/pdf/quick/plugin.cpp')
-rw-r--r--src/pdf/quick/plugin.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pdf/quick/plugin.cpp b/src/pdf/quick/plugin.cpp
index 72aa12d6a..519ea43af 100644
--- a/src/pdf/quick/plugin.cpp
+++ b/src/pdf/quick/plugin.cpp
@@ -39,6 +39,7 @@
#include <QtQml/qqmlengine.h>
#include <QtQml/qqmlextensionplugin.h>
#include "qquickpdfdocument_p.h"
+#include "qquickpdflinkmodel_p.h"
#include "qquickpdfsearchmodel_p.h"
#include "qquickpdfselection_p.h"
@@ -81,6 +82,7 @@ public:
qmlRegisterModule(uri, 2, QT_VERSION_MINOR);
qmlRegisterType<QQuickPdfDocument>(uri, 5, 15, "PdfDocument");
+ qmlRegisterType<QQuickPdfLinkModel>(uri, 5, 15, "PdfLinkModel");
qmlRegisterType<QQuickPdfSearchModel>(uri, 5, 15, "PdfSearchModel");
qmlRegisterType<QQuickPdfSelection>(uri, 5, 15, "PdfSelection");