moment/src/gui/Base/HButtonContent.qml
2021-03-03 17:14:55 -04:00

76 lines
2.0 KiB
QML

// Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.12
HRowLayout {
id: buttonContent
property var button
property QtObject buttonTheme
readonly property alias icon: icon
readonly property alias label: label
spacing: button.spacing
opacity: button.loading ? theme.loadingElementsOpacity :
enabled ? 1 : theme.disabledElementsOpacity
Behavior on opacity { HNumberAnimation {} }
Item {
visible: Boolean(button.icon.name || button.loading)
Layout.preferredWidth:
button.loading ? busyIndicatorLoader.width : icon.width
Layout.preferredHeight:
button.loading ? busyIndicatorLoader.height : icon.height
Layout.fillHeight: true
Layout.alignment: Qt.AlignCenter
HIcon {
id: icon
anchors.centerIn: parent
width: svgName ? implicitWidth : 0
visible: width > 0
opacity: button.loading ? 0 : 1
colorize: button.icon.color
svgName: button.icon.name
// cache: button.icon.cache // TODO: need Qt 5.13+
Behavior on opacity { HNumberAnimation {} }
}
HLoader {
id: busyIndicatorLoader
anchors.centerIn: parent
width: height
height: parent.height
opacity: button.loading ? 1 : 0
active: opacity > 0
sourceComponent: HBusyIndicator {}
Behavior on opacity { HNumberAnimation {} }
}
}
HLabel {
id: label
text: button.text
visible: Boolean(text)
color: buttonTheme.text
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
elide: Text.ElideRight
Layout.fillWidth: true
Layout.fillHeight: true
}
}