FluentUI/src/controls/FluFilledButton.qml

65 lines
1.7 KiB
QML
Raw Normal View History

2023-02-24 18:44:29 +08:00
import QtQuick 2.15
import QtQuick.Controls 2.15
2023-02-28 18:29:00 +08:00
import FluentUI 1.0
2023-02-24 18:44:29 +08:00
Rectangle {
id: button
2023-02-28 18:29:00 +08:00
property string text: "Filled Button"
2023-02-24 18:44:29 +08:00
property int startPadding : 15
property int endPadding : 15
property int topPadding: 8
property int bottomPadding: 8
property bool disabled: false
2023-02-28 18:29:00 +08:00
2023-02-26 23:47:07 +08:00
signal clicked
2023-02-24 18:44:29 +08:00
radius: 4
2023-02-26 23:47:07 +08:00
color:{
2023-02-28 18:29:00 +08:00
if(FluApp.isDark){
if(disabled){
return Qt.rgba(199/255,199/255,199/255,1)
}
2023-03-06 12:09:06 +08:00
return button_mouse.containsMouse ? Qt.darker(FluTheme.primaryColor.lighter,1.1) : FluTheme.primaryColor.lighter
2023-02-28 18:29:00 +08:00
}else{
if(disabled){
return Qt.rgba(199/255,199/255,199/255,1)
}
2023-03-06 12:09:06 +08:00
return button_mouse.containsMouse ? Qt.lighter(FluTheme.primaryColor.dark,1.1): FluTheme.primaryColor.dark
2023-02-26 23:47:07 +08:00
}
}
width: button_text.implicitWidth
height: button_text.implicitHeight
2023-02-24 18:44:29 +08:00
2023-02-27 18:46:39 +08:00
FluText {
2023-02-26 23:47:07 +08:00
id: button_text
2023-02-28 18:29:00 +08:00
text: button.text
color: {
if(FluApp.isDark){
if(disabled){
return Qt.rgba(173/255,173/255,173/255,1)
}
return Qt.rgba(0,0,0,1)
}else{
return Qt.rgba(1,1,1,1)
}
}
2023-02-27 18:46:39 +08:00
font.pixelSize: 14
2023-02-24 18:44:29 +08:00
leftPadding: button.startPadding
rightPadding: button.endPadding
topPadding: button.topPadding
bottomPadding: button.bottomPadding
anchors.centerIn: parent
}
MouseArea {
2023-02-26 23:47:07 +08:00
id:button_mouse
2023-02-24 18:44:29 +08:00
anchors.fill: parent
2023-02-26 23:47:07 +08:00
hoverEnabled: true
2023-02-24 18:44:29 +08:00
onClicked: {
2023-02-26 23:47:07 +08:00
if(disabled)
return
button.clicked()
2023-02-24 18:44:29 +08:00
}
}
}