summaryrefslogtreecommitdiffstats
path: root/src/pdf/doc/qtpdf.qdocconf
diff options
context:
space:
mode:
authorLeena Miettinen <riitta-leena.miettinen@qt.io>2020-01-22 10:58:41 +0100
committerLeena Miettinen <riitta-leena.miettinen@qt.io>2020-01-22 16:30:33 +0000
commit32fb888f3c5b6d415d84895e3cab594de026d3dd (patch)
treeac7507b3e25250d91faf95fa76a48083a4b44815 /src/pdf/doc/qtpdf.qdocconf
parent9968e2578f96081d2a242340620fcb2b96d9a1d3 (diff)
Doc: Add QML types from the Qt Quick PDF module to the doc config
Also add examples, even though the example docs have not been added yet. Task-number: QTBUG-81560 Change-Id: I9ada8e658359788421eda209fffe1eaed967318c Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
Diffstat (limited to 'src/pdf/doc/qtpdf.qdocconf')
-rw-r--r--src/pdf/doc/qtpdf.qdocconf23
1 files changed, 19 insertions, 4 deletions
diff --git a/src/pdf/doc/qtpdf.qdocconf b/src/pdf/doc/qtpdf.qdocconf
index 3c5d342d4..b55b25327 100644
--- a/src/pdf/doc/qtpdf.qdocconf
+++ b/src/pdf/doc/qtpdf.qdocconf
@@ -15,26 +15,41 @@ qhp.QtPdf.indexRoot =
qhp.QtPdf.filterAttributes = qtpdf $QT_VERSION qtrefdoc
qhp.QtPdf.customFilters.Qt.name = QtPdf $QT_VERSION
qhp.QtPdf.customFilters.Qt.filterAttributes = qtpdf $QT_VERSION
-qhp.QtPdf.subprojects = classes
+
+qhp.QtPdf.subprojects = classes qmltypes examples
+
qhp.QtPdf.subprojects.classes.title = C++ Classes
qhp.QtPdf.subprojects.classes.indexTitle = Qt PDF C++ Classes
qhp.QtPdf.subprojects.classes.selectors = class fake:headerfile
qhp.QtPdf.subprojects.classes.sortPages = true
+qhp.QtPdf.subprojects.qmltypes.title = QML Types
+qhp.QtPdf.subprojects.qmltypes.indexTitle = Qt Quick PDF QML Types
+qhp.QtPdf.subprojects.qmltypes.selectors = qmltype
+qhp.QtPdf.subprojects.qmltypes.sortPages = true
+
+qhp.QtPdf.subprojects.examples.title = Examples
+qhp.QtPdf.subprojects.examples.indexTitle = Qt PDF Examples
+qhp.QtPdf.subprojects.examples.selectors = doc:example
+qhp.QtPdf.subprojects.examples.sortPages = true
+
depends += qtcore \
qtwidgets \
qtgui \
qtdoc \
qmake
-headerdirs += ../api
+headerdirs += ../api \
+ ../quick
-sourcedirs += ..
+sourcedirs += .. \
+ ../quick
-exampledirs += ../../../examples/pdf \
+exampledirs += ../../../examples/pdfwidgets \
snippets/
imagedirs += images
navigation.landingpage = "Qt PDF"
navigation.cppclassespage = "Qt PDF C++ Classes"
+navigation.qmltypespage = "Qt WebEngine QML Types"