moment/harmonyqml/components/Base/HButton.qml

128 lines
3.3 KiB
QML
Raw Normal View History

2019-04-22 00:44:04 +10:00
import QtQuick 2.7
import QtQuick.Controls 2.2
import QtQuick.Layouts 1.3
2019-04-22 00:44:04 +10:00
Button {
property int horizontalMargin: 0
property int verticalMargin: 0
property string iconName: ""
property var iconDimension: null
property var iconTransform: null
property bool circle: false
property int fontSize: HStyle.fontSize.normal
2019-04-29 05:13:18 +10:00
property color backgroundColor: HStyle.controls.button.background
2019-04-27 06:02:20 +10:00
property alias overlayOpacity: buttonBackgroundOverlay.opacity
property bool loading: false
property int contentWidth: 0
readonly property alias visibility: button.visible
onVisibilityChanged: if (! visibility) { loading = false }
signal canceled
signal clicked
signal doubleClicked
signal entered
signal exited
signal pressAndHold
signal pressed
signal released
function loadingUntilFutureDone(future) {
loading = true
future.onGotResult.connect(function() { loading = false })
}
2019-04-22 00:44:04 +10:00
id: button
2019-04-27 06:02:20 +10:00
background: Rectangle {
id: buttonBackground
color: Qt.lighter(backgroundColor, checked ? 1.3 : 1.0)
radius: circle ? height : 0
Rectangle {
id: buttonBackgroundOverlay
anchors.fill: parent
radius: parent.radius
color: "black"
opacity: 0
}
}
Component {
id: buttonContent
2019-04-27 06:02:20 +10:00
HRowLayout {
id: contentLayout
spacing: button.text && iconName ? 5 : 0
Component.onCompleted: contentWidth = implicitWidth
HIcon {
svgName: loading ? "hourglass" : iconName
dimension: iconDimension || contentLayout.height
transform: iconTransform
Layout.topMargin: verticalMargin
Layout.bottomMargin: verticalMargin
Layout.leftMargin: horizontalMargin
Layout.rightMargin: horizontalMargin
2019-04-27 06:02:20 +10:00
}
HLabel {
text: button.text
font.pixelSize: fontSize
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
2019-04-27 06:02:20 +10:00
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
}
}
}
2019-04-27 06:02:20 +10:00
Component {
id: loadingOverlay
HRowLayout {
HIcon {
svgName: "hourglass"
Layout.preferredWidth: contentWidth || -1
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
}
2019-04-27 06:02:20 +10:00
}
}
contentItem: Loader {
sourceComponent:
loading && ! iconName ? loadingOverlay : buttonContent
}
2019-04-27 06:02:20 +10:00
MouseArea {
anchors.fill: parent
hoverEnabled: true
onCanceled: button.canceled()
onClicked: button.clicked()
onDoubleClicked: button.doubleClicked()
onEntered: {
overlayOpacity = checked ? 0 : 0.2
button.entered()
}
onExited: {
overlayOpacity = 0
button.exited()
}
onPressAndHold: button.pressAndHold()
onPressed: {
overlayOpacity += 0.2
button.pressed()
}
2019-04-27 06:02:20 +10:00
onReleased: {
if (checkable) { checked = ! checked }
overlayOpacity = checked ? 0 : 0.2
button.released()
2019-04-27 06:02:20 +10:00
}
}
2019-04-22 00:44:04 +10:00
}