diff options
author | Shawn Rutledge <shawn.rutledge@qt.io> | 2022-09-07 11:46:09 +0200 |
---|---|---|
committer | Shawn Rutledge <shawn.rutledge@qt.io> | 2022-09-07 20:58:23 +0200 |
commit | 95a3bfb9053c44b6fbf558b882ab28bdb3239786 (patch) | |
tree | 21f08e368b1cc2f2919a294fedd5b759bdca5204 | |
parent | 1124186319bc4f9a395ba631b769e9bff5e08fe9 (diff) | |
download | qtwebengine-95a3bfb9053c44b6fbf558b882ab28bdb3239786.tar.gz |
doc: Mark all QPdfLinkModel docs internal for now
So far we only have QML API, but we don't have a public header yet; so
this class should not appear in public docs.
Pick-to: 6.4 6.4.0
Task-number: QTBUG-77511
Change-Id: I1f0f5c6b625597a73a67a3019b9f8271ce9cea9e
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io>
-rw-r--r-- | src/pdf/qpdflinkmodel.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/pdf/qpdflinkmodel.cpp b/src/pdf/qpdflinkmodel.cpp index a5d9930f6..349e6a40b 100644 --- a/src/pdf/qpdflinkmodel.cpp +++ b/src/pdf/qpdflinkmodel.cpp @@ -16,7 +16,7 @@ QT_BEGIN_NAMESPACE Q_LOGGING_CATEGORY(qLcLink, "qt.pdf.links") -/*! +/*! \internal \class QPdfLinkModel \since 5.15 \inmodule QtPdf @@ -28,7 +28,7 @@ Q_LOGGING_CATEGORY(qLcLink, "qt.pdf.links") This is used in PDF viewers to implement the hyperlink mechanism. */ -/*! +/*! \internal \enum QPdfLinkModel::Role \value Link A QPdfLink object. @@ -40,7 +40,7 @@ Q_LOGGING_CATEGORY(qLcLink, "qt.pdf.links") \omitvalue NRoles */ -/*! +/*! \internal Constructs a new link model with parent object \a parent. */ QPdfLinkModel::QPdfLinkModel(QObject *parent) @@ -51,7 +51,7 @@ QPdfLinkModel::QPdfLinkModel(QObject *parent) m_roleNames.insert(r, QByteArray(rolesMetaEnum.valueToKey(r)).toLower()); } -/*! +/*! \internal Destroys the model. */ QPdfLinkModel::~QPdfLinkModel() {} @@ -61,7 +61,7 @@ QHash<int, QByteArray> QPdfLinkModel::roleNames() const return m_roleNames; } -/*! +/*! \internal \reimp */ int QPdfLinkModel::rowCount(const QModelIndex &parent) const @@ -71,7 +71,7 @@ int QPdfLinkModel::rowCount(const QModelIndex &parent) const return d->links.count(); } -/*! +/*! \internal \reimp */ QVariant QPdfLinkModel::data(const QModelIndex &index, int role) const @@ -99,7 +99,7 @@ QVariant QPdfLinkModel::data(const QModelIndex &index, int role) const return QVariant(); } -/*! +/*! \internal \property QPdfLinkModel::document \brief the document to load links from */ @@ -125,7 +125,7 @@ void QPdfLinkModel::setDocument(QPdfDocument *document) d->update(); } -/*! +/*! \internal \property QPdfLinkModel::page \brief the page to load links from */ |