summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2022-09-07 11:46:09 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-09-08 01:22:52 +0000
commitc6f53d9280945fafe48f1476db100aca15609250 (patch)
treea2e3691393e82bd1590ae009b43614cf29386845
parent62a5bdebce4e117e78d471e499948b57bd2c7411 (diff)
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. Task-number: QTBUG-77511 Change-Id: I1f0f5c6b625597a73a67a3019b9f8271ce9cea9e Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: Volker Hilsheimer <volker.hilsheimer@qt.io> (cherry picked from commit 95a3bfb9053c44b6fbf558b882ab28bdb3239786) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--src/pdf/qpdflinkmodel.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/pdf/qpdflinkmodel.cpp b/src/pdf/qpdflinkmodel.cpp
index 66610dbf7..06afd9641 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
*/