Warning, /plasma/plasma-disks/src/kcm/ui/ReportPage.qml is written in an unsupported language. File is not indexed.

0001 // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0002 // SPDX-FileCopyrightText: 2021 Harald Sitter <sitter@kde.org>
0003 
0004 import org.kde.kcmutils as KCM
0005 import QtQuick 2.14
0006 import QtQuick.Controls 2.14 as QQC2
0007 
0008 KCM.SimpleKCM {
0009     property alias text: textArea.text
0010 
0011     QQC2.TextArea { // scrolling is implemented in the simplekcm
0012         id: textArea
0013         background: null // render this without frame so it looks neatly integrated into the kcm page
0014         readOnly: true
0015         font.family: "monospace"
0016         textFormat: TextEdit.PlainText
0017         wrapMode: TextEdit.Wrap
0018     }
0019 }