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