Warning, /graphics/okular/mobile/components/testDocumentView.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2012 Marco Martin <mart@kde.org>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 import QtQuick 2.15
0008 import org.kde.okular 2.0 as Okular
0009 
0010 Item {
0011     width: 500
0012     height: 600
0013     Okular.DocumentItem {
0014         id: docItem
0015         url: "pageitem.cpp"
0016     }
0017     Okular.DocumentView {
0018         anchors.fill: parent
0019         document: docItem
0020     }
0021 }