KOSMIndoorMap
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-2025 The KDE developers.
Generated on Fri Jan 24 2025 11:54:41 by
doxygen 1.13.2 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.