mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-04-30 01:22:06 -04:00
70 lines
1.9 KiB
QML
70 lines
1.9 KiB
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Services
|
|
import qs.Widgets
|
|
|
|
Rectangle {
|
|
id: root
|
|
|
|
property string iconName: ""
|
|
property string text: ""
|
|
property bool isDestructive: false
|
|
property bool enabled: true
|
|
|
|
signal triggered
|
|
|
|
height: 28
|
|
radius: Theme.cornerRadius
|
|
opacity: enabled ? 1 : 0.4
|
|
color: {
|
|
if (!area.containsMouse || !enabled)
|
|
return "transparent";
|
|
if (isDestructive)
|
|
return Qt.rgba(Theme.error.r, Theme.error.g, Theme.error.b, 0.12);
|
|
return BlurService.hoverColor(Theme.widgetBaseHoverColor);
|
|
}
|
|
|
|
Row {
|
|
anchors.left: parent.left
|
|
anchors.leftMargin: Theme.spacingS
|
|
anchors.right: parent.right
|
|
anchors.rightMargin: Theme.spacingS
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
spacing: Theme.spacingXS
|
|
|
|
DankIcon {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
name: root.iconName
|
|
size: 14
|
|
color: root.isDestructive && area.containsMouse && root.enabled ? Theme.error : Theme.surfaceText
|
|
opacity: 0.7
|
|
}
|
|
|
|
StyledText {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
text: root.text
|
|
font.pixelSize: Theme.fontSizeSmall
|
|
color: root.isDestructive && area.containsMouse && root.enabled ? Theme.error : Theme.surfaceText
|
|
font.weight: Font.Normal
|
|
elide: Text.ElideRight
|
|
wrapMode: Text.NoWrap
|
|
}
|
|
}
|
|
|
|
DankRipple {
|
|
id: ripple
|
|
rippleColor: root.isDestructive ? Theme.error : Theme.surfaceText
|
|
cornerRadius: Theme.cornerRadius
|
|
}
|
|
|
|
MouseArea {
|
|
id: area
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
enabled: root.enabled
|
|
cursorShape: Qt.PointingHandCursor
|
|
onPressed: mouse => ripple.trigger(mouse.x, mouse.y)
|
|
onClicked: root.triggered()
|
|
}
|
|
}
|