8import QtQuick.Controls as QQC2
9import org.kde.kirigami as Kirigami
16 required property string keyLabel
18 required property int category
20 required property string value
22 required property string url
25 visible: root.keyLabel !== ""
26 text: root.keyLabel + ":
"
27 color: root.category === OSMElementInformationModel.DebugCategory ? Kirigami.Theme.disabledTextColor : Kirigami.Theme.textColor
28 Layout.alignment: Qt.AlignTop
31 Layout.fillWidth: true
32 text: "<a href=\
"" + root.url +
"\">" + root.value +
"</a>"
33 color: (row && row.category == OSMElementInformationModel.DebugCategory) ?
Kirigami.Theme.disabledTextColor :
Kirigami.Theme.textColor
34 onLinkActivated:
Qt.openUrlExternally(link)
35 wrapMode: Text.WordWrap
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Sep 6 2024 12:05:23 by
doxygen 1.12.0 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.