From 64fa2b6370d47cde1d88ff90144aacccdf4a9ff5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E5=AD=90=E6=A5=9A=5Czhuzi?= Date: Wed, 5 Apr 2023 17:05:05 +0800 Subject: [PATCH] update --- src/controls/FluStandardButton.qml | 55 ------------------------------ 1 file changed, 55 deletions(-) delete mode 100644 src/controls/FluStandardButton.qml diff --git a/src/controls/FluStandardButton.qml b/src/controls/FluStandardButton.qml deleted file mode 100644 index 2b4c197..0000000 --- a/src/controls/FluStandardButton.qml +++ /dev/null @@ -1,55 +0,0 @@ -import QtQuick -import QtQuick.Controls -import FluentUI - -Button { - - property bool disabled: false - property color normalColor: FluTheme.dark ? Qt.rgba(62/255,62/255,62/255,1) : Qt.rgba(254/255,254/255,254/255,1) - property color hoverColor: FluTheme.dark ? Qt.rgba(68/255,68/255,68/255,1) : Qt.rgba(251/255,251/255,251/255,1) - property color disableColor: FluTheme.dark ? 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:15 - enabled: !disabled - focusPolicy:Qt.TabFocus - - Keys.onSpacePressed: control.visualFocus&&clicked() - - background: Rectangle{ - border.color: FluTheme.dark ? "#505050" : "#DFDFDF" - border.width: 1 - 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.dark){ - 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) - } - } - } -}