2019-04-22 00:44:04 +10:00
|
|
|
import QtQuick 2.7
|
|
|
|
import QtQuick.Controls 2.2
|
2019-04-29 05:45:42 +10:00
|
|
|
import QtQuick.Layouts 1.3
|
2019-04-22 00:44:04 +10:00
|
|
|
|
|
|
|
Button {
|
2019-05-07 10:37:41 +10:00
|
|
|
property int horizontalMargin: 0
|
|
|
|
property int verticalMargin: 0
|
|
|
|
|
2019-04-29 02:08:54 +10:00
|
|
|
property string iconName: ""
|
|
|
|
property var iconDimension: null
|
2019-05-07 10:37:41 +10:00
|
|
|
property var iconTransform: null
|
2019-04-29 02:08:54 +10:00
|
|
|
property bool circle: false
|
|
|
|
|
2019-07-07 07:50:55 +10:00
|
|
|
property int fontSize: theme.fontSize.normal
|
|
|
|
property color backgroundColor: theme.controls.button.background
|
2019-04-27 06:02:20 +10:00
|
|
|
property alias overlayOpacity: buttonBackgroundOverlay.opacity
|
2019-05-14 00:52:26 +10:00
|
|
|
property bool checkedLightens: false
|
2019-04-29 02:08:54 +10:00
|
|
|
|
2019-04-27 11:16:45 +10:00
|
|
|
property bool loading: false
|
|
|
|
|
|
|
|
property int contentWidth: 0
|
|
|
|
|
2019-04-29 04:20:30 +10:00
|
|
|
readonly property alias visibility: button.visible
|
|
|
|
onVisibilityChanged: if (! visibility) { loading = false }
|
|
|
|
|
2019-04-28 08:00:28 +10:00
|
|
|
signal canceled
|
|
|
|
signal clicked
|
|
|
|
signal doubleClicked
|
|
|
|
signal entered
|
|
|
|
signal exited
|
|
|
|
signal pressAndHold
|
|
|
|
signal pressed
|
|
|
|
signal released
|
|
|
|
|
2019-04-22 00:44:04 +10:00
|
|
|
id: button
|
2019-04-27 06:02:20 +10:00
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
id: buttonBackground
|
2019-05-14 00:52:26 +10:00
|
|
|
color: Qt.lighter(
|
|
|
|
backgroundColor, checked ? (checkedLightens ? 1.3 : 0.7) : 1.0
|
|
|
|
)
|
2019-04-27 06:02:20 +10:00
|
|
|
radius: circle ? height : 0
|
|
|
|
|
2019-05-14 02:49:52 +10:00
|
|
|
Behavior on color {
|
2019-07-07 07:50:55 +10:00
|
|
|
ColorAnimation { duration: theme.animationDuration / 2 }
|
2019-05-14 02:49:52 +10:00
|
|
|
}
|
|
|
|
|
2019-04-27 06:02:20 +10:00
|
|
|
Rectangle {
|
|
|
|
id: buttonBackgroundOverlay
|
|
|
|
anchors.fill: parent
|
|
|
|
radius: parent.radius
|
|
|
|
color: "black"
|
|
|
|
opacity: 0
|
2019-05-14 02:49:52 +10:00
|
|
|
|
|
|
|
Behavior on opacity {
|
2019-07-07 07:50:55 +10:00
|
|
|
HNumberAnimation { duration: theme.animationDuration / 2 }
|
2019-05-14 02:49:52 +10:00
|
|
|
}
|
2019-04-27 06:02:20 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-27 11:16:45 +10:00
|
|
|
Component {
|
|
|
|
id: buttonContent
|
2019-04-27 06:02:20 +10:00
|
|
|
|
2019-04-27 11:16:45 +10:00
|
|
|
HRowLayout {
|
|
|
|
id: contentLayout
|
|
|
|
spacing: button.text && iconName ? 5 : 0
|
|
|
|
Component.onCompleted: contentWidth = implicitWidth
|
|
|
|
|
|
|
|
HIcon {
|
|
|
|
svgName: loading ? "hourglass" : iconName
|
2019-04-29 02:08:54 +10:00
|
|
|
dimension: iconDimension || contentLayout.height
|
2019-05-07 10:37:41 +10:00
|
|
|
transform: iconTransform
|
|
|
|
|
|
|
|
Layout.topMargin: verticalMargin
|
|
|
|
Layout.bottomMargin: verticalMargin
|
|
|
|
Layout.leftMargin: horizontalMargin
|
|
|
|
Layout.rightMargin: horizontalMargin
|
2019-04-27 06:02:20 +10:00
|
|
|
}
|
|
|
|
|
2019-04-27 11:16:45 +10:00
|
|
|
HLabel {
|
|
|
|
text: button.text
|
|
|
|
font.pixelSize: fontSize
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
2019-04-27 06:02:20 +10:00
|
|
|
|
2019-04-27 11:16:45 +10:00
|
|
|
Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-27 06:02:20 +10:00
|
|
|
|
2019-04-27 11:16:45 +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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-27 11:16:45 +10:00
|
|
|
contentItem: Loader {
|
|
|
|
sourceComponent:
|
|
|
|
loading && ! iconName ? loadingOverlay : buttonContent
|
|
|
|
}
|
|
|
|
|
2019-04-27 06:02:20 +10:00
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
hoverEnabled: true
|
|
|
|
|
2019-04-28 08:00:28 +10:00
|
|
|
onCanceled: button.canceled()
|
|
|
|
onClicked: button.clicked()
|
|
|
|
onDoubleClicked: button.doubleClicked()
|
|
|
|
onEntered: {
|
2019-05-14 00:52:26 +10:00
|
|
|
overlayOpacity = checked ? 0 : 0.15
|
2019-04-28 08:00:28 +10:00
|
|
|
button.entered()
|
|
|
|
}
|
|
|
|
onExited: {
|
|
|
|
overlayOpacity = 0
|
|
|
|
button.exited()
|
|
|
|
}
|
|
|
|
onPressAndHold: button.pressAndHold()
|
|
|
|
onPressed: {
|
2019-05-14 00:52:26 +10:00
|
|
|
overlayOpacity += 0.15
|
2019-04-28 08:00:28 +10:00
|
|
|
button.pressed()
|
|
|
|
}
|
2019-04-27 06:02:20 +10:00
|
|
|
onReleased: {
|
|
|
|
if (checkable) { checked = ! checked }
|
2019-05-14 00:52:26 +10:00
|
|
|
overlayOpacity = checked ? 0 : 0.15
|
2019-04-28 08:00:28 +10:00
|
|
|
button.released()
|
2019-04-27 06:02:20 +10:00
|
|
|
}
|
|
|
|
}
|
2019-04-22 00:44:04 +10:00
|
|
|
}
|