mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2024-11-24 11:40:43 +08:00
50 lines
1.4 KiB
QML
50 lines
1.4 KiB
QML
import QtQuick 2.15
|
|
import QtQuick.Controls 2.15
|
|
import FluentUI 1.0
|
|
|
|
Button {
|
|
id: control
|
|
|
|
property bool disabled: false
|
|
property color normalColor: FluTheme.isDark ? FluTheme.primaryColor.lighter : FluTheme.primaryColor.dark
|
|
property color hoverColor: FluTheme.isDark ? Qt.darker(normalColor,1.1) : Qt.lighter(normalColor,1.1)
|
|
property color disableColor: FluTheme.isDark ? Qt.rgba(82/255,82/255,82/255,1) : Qt.rgba(199/255,199/255,199/255,1)
|
|
|
|
enabled: !disabled
|
|
topPadding:5
|
|
bottomPadding:5
|
|
leftPadding:15
|
|
rightPadding:15
|
|
Keys.onSpacePressed: control.visualFocus&&clicked()
|
|
focusPolicy:Qt.TabFocus
|
|
background: Rectangle{
|
|
radius: 4
|
|
FluFocusRectangle{
|
|
visible: control.visualFocus
|
|
radius:8
|
|
}
|
|
color:{
|
|
if(disabled){
|
|
return disableColor
|
|
}
|
|
return hovered ? hoverColor :normalColor
|
|
}
|
|
}
|
|
contentItem: FluText {
|
|
text: control.text
|
|
horizontalAlignment: Text.AlignHCenter
|
|
verticalAlignment: Text.AlignVCenter
|
|
color: {
|
|
if(FluTheme.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)
|
|
}
|
|
}
|
|
font.pixelSize: 14
|
|
}
|
|
}
|