forked from Shinonome/dots-hyprland
35 lines
867 B
QML
35 lines
867 B
QML
import "root:/modules/common"
|
|
import "root:/modules/common/widgets"
|
|
import "root:/modules/common/functions/color_utils.js" as ColorUtils
|
|
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
RippleButton {
|
|
id: button
|
|
property string buttonText: ""
|
|
property string tooltipText: ""
|
|
|
|
implicitHeight: 30
|
|
implicitWidth: implicitHeight
|
|
|
|
Behavior on implicitWidth {
|
|
SmoothedAnimation {
|
|
velocity: Appearance.animation.elementMove.velocity
|
|
}
|
|
}
|
|
|
|
buttonRadius: Appearance.rounding.small
|
|
|
|
contentItem: StyledText {
|
|
text: buttonText
|
|
horizontalAlignment: Text.AlignHCenter
|
|
font.pixelSize: Appearance.font.pixelSize.larger
|
|
color: Appearance.colors.colOnLayer1
|
|
}
|
|
|
|
StyledToolTip {
|
|
content: tooltipText
|
|
extraVisibleCondition: tooltipText.length > 0
|
|
}
|
|
} |