82 lines
2.6 KiB
QML
82 lines
2.6 KiB
QML
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
*
|
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
|
*
|
|
* This file is part of nymea-app.
|
|
*
|
|
* nymea-app is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* nymea-app is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with nymea-app. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
import QtCharts
|
|
import Nymea
|
|
import Nymea.AirConditioning
|
|
|
|
import "qrc:/ui/components"
|
|
import "qrc:/ui/customviews"
|
|
|
|
NymeaToolTip {
|
|
id: root
|
|
width: layout.implicitWidth + Style.smallMargins * 2
|
|
height: layout.implicitHeight + Style.smallMargins * 2
|
|
|
|
property Thing thing: null
|
|
property NewLogEntry entry: null
|
|
property string valueName: ""
|
|
property alias iconSource: icon.name
|
|
property alias color: rect.color
|
|
property ValueAxis axis: null
|
|
property int unit: Types.UnitNone
|
|
|
|
readonly property var value: entry.values[valueName]
|
|
readonly property int realY: entry ? Math.min(Math.max(mouseArea.height - (root.value * mouseArea.height / axis.max) - height / 2 /*- Style.margins*/, 0), mouseArea.height - height) : 0
|
|
property int fixedY: 0
|
|
y: fixedY // Animated
|
|
|
|
RowLayout {
|
|
id: layout
|
|
anchors.fill: parent
|
|
anchors.margins: Style.smallMargins
|
|
|
|
ColorIcon {
|
|
id: icon
|
|
size: Style.smallIconSize
|
|
color: root.color
|
|
visible: name != ""
|
|
}
|
|
|
|
Rectangle {
|
|
id: rect
|
|
width: Style.extraSmallFont.pixelSize
|
|
height: width
|
|
visible: !icon.visible
|
|
}
|
|
Label {
|
|
text: "%1: %2%3".arg(thing.name).arg(entry ? round(Types.toUiValue(root.value, unit)) : "-").arg(Types.toUiUnit(unit))
|
|
Layout.fillWidth: true
|
|
font: Style.extraSmallFont
|
|
elide: Text.ElideMiddle
|
|
function round(value) {
|
|
return Math.round(value * 100) / 100
|
|
}
|
|
}
|
|
}
|
|
}
|