2023-02-28 18:29:00 +08:00
|
|
|
|
import QtQuick 2.15
|
2023-03-16 14:34:20 +08:00
|
|
|
|
import QtQuick.Controls 2.15
|
2023-02-28 18:29:00 +08:00
|
|
|
|
import FluentUI 1.0
|
2023-02-26 23:47:07 +08:00
|
|
|
|
|
2023-03-16 14:34:20 +08:00
|
|
|
|
Button {
|
|
|
|
|
|
|
|
|
|
property bool disabled: false
|
|
|
|
|
property color normalColor: FluTheme.isDark ? Qt.rgba(62/255,62/255,62/255,1) : Qt.rgba(254/255,254/255,254/255,1)
|
|
|
|
|
property color hoverColor: FluTheme.isDark ? Qt.rgba(68/255,68/255,68/255,1) : Qt.rgba(251/255,251/255,251/255,1)
|
|
|
|
|
property color disableColor: FluTheme.isDark ? Qt.rgba(59/255,59/255,59/255,1) : Qt.rgba(252/255,252/255,252/255,1)
|
|
|
|
|
|
|
|
|
|
id: control
|
|
|
|
|
topPadding:5
|
|
|
|
|
bottomPadding:5
|
|
|
|
|
leftPadding:15
|
|
|
|
|
rightPadding:35
|
|
|
|
|
enabled: !disabled
|
|
|
|
|
focusPolicy:Qt.TabFocus
|
|
|
|
|
|
|
|
|
|
property alias items: menu.content
|
|
|
|
|
|
|
|
|
|
Keys.onSpacePressed: control.visualFocus&&clicked()
|
|
|
|
|
|
|
|
|
|
background: Rectangle{
|
|
|
|
|
border.color: FluTheme.isDark ? "#505050" : "#DFDFDF"
|
|
|
|
|
border.width: 1
|
|
|
|
|
radius: 4
|
|
|
|
|
FluFocusRectangle{
|
|
|
|
|
visible: control.visualFocus
|
|
|
|
|
radius:8
|
|
|
|
|
}
|
|
|
|
|
color:{
|
|
|
|
|
if(disabled){
|
|
|
|
|
return disableColor
|
|
|
|
|
}
|
|
|
|
|
return hovered ? hoverColor :normalColor
|
|
|
|
|
}
|
|
|
|
|
FluIcon{
|
|
|
|
|
iconSource:FluentIcons.ChevronDown
|
|
|
|
|
iconSize: 15
|
|
|
|
|
anchors{
|
|
|
|
|
right: parent.right
|
|
|
|
|
rightMargin: 10
|
|
|
|
|
verticalCenter: parent.verticalCenter
|
|
|
|
|
}
|
|
|
|
|
color:title.color
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
contentItem: FluText {
|
|
|
|
|
id:title
|
|
|
|
|
text: control.text
|
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
|
color: {
|
|
|
|
|
if(FluTheme.isDark){
|
|
|
|
|
if(disabled){
|
|
|
|
|
return Qt.rgba(131/255,131/255,131/255,1)
|
|
|
|
|
}
|
|
|
|
|
return Qt.rgba(1,1,1,1)
|
|
|
|
|
}else{
|
|
|
|
|
if(disabled){
|
|
|
|
|
return Qt.rgba(160/255,160/255,160/255,1)
|
|
|
|
|
}
|
|
|
|
|
return Qt.rgba(0,0,0,1)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
onClicked: {
|
|
|
|
|
menu.open()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FluMenu{
|
|
|
|
|
id:menu
|
|
|
|
|
width: control.width
|
|
|
|
|
}
|
2023-02-26 23:47:07 +08:00
|
|
|
|
|
|
|
|
|
}
|