-
Notifications
You must be signed in to change notification settings - Fork 31
/
IconButton.qml
125 lines (114 loc) · 3.05 KB
/
IconButton.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import QtQuick 2.9
import QtQuick.Controls 2.5
import QtQuick.Layouts 1.3
import QtGraphicalEffects 1.15
import "./Music/qml/components"
import Theme 1.0
Button {
id: control
property bool isMirror: false
property string setIcon : ""
property string setIconText : ""
property string setIconColor : Theme.fontColor
property real setIconSize: 25
property real radius: height /2
property bool isGlow: false
property real iconWidth: 28
property real iconHeight: 28
property bool roundIcon: false
implicitHeight: 55
implicitWidth: 55
property string iconBackground: "transparent"
Image{
z:2
visible: !roundIcon && !setIconText
mirror: isMirror
anchors.centerIn: parent
source: setIcon
scale: control.pressed ? 0.9 : 1.0
Behavior on scale { NumberAnimation { duration: 200; } }
}
Image{
z:2
visible: roundIcon && !setIconText
mirror: isMirror
sourceSize: Qt.size(iconWidth,iconHeight)
anchors.centerIn: parent
source: setIcon
scale: control.pressed ? 0.9 : 1.0
Behavior on scale { NumberAnimation { duration: 200; } }
}
AppIcon
{
z:2
font.family: root.fontAwesomeFontLoader.name
anchors.centerIn: parent
icon: setIconText
color: setIconColor
visible: setIconText
size: setIconSize
}
background: Rectangle {
z:1
anchors.fill: parent
radius: control.radius
color: control.iconBackground
visible: true
Behavior on color {
ColorAnimation {
duration: 200;
easing.type: Easing.Linear;
}
}
Rectangle {
id: indicator
property int mx
property int my
x: mx - width / 2
y: my - height / 2
height: width
radius: width / 2
color: isGlow ? Qt.lighter("#29BEB6") : Qt.lighter("#B8FF01")
}
}
Rectangle {
id: mask
radius: height /2
anchors.fill: parent
visible: false
}
OpacityMask {
anchors.fill: background
source: background
maskSource: mask
}
MouseArea {
id: mouseArea
hoverEnabled: true
acceptedButtons: Qt.NoButton
cursorShape: Qt.PointingHandCursor
anchors.fill: parent
}
ParallelAnimation {
id: anim
NumberAnimation {
target: indicator
property: 'width'
from: 0
to: control.width * 1.5
duration: 200
}
NumberAnimation {
target: indicator;
property: 'opacity'
from: 0.9
to: 0
duration: 200
}
}
onPressed: {
indicator.mx = mouseArea.mouseX
indicator.my = mouseArea.mouseY
anim.restart();
}
}