mirror of https://github.com/cutefishos/settings
Use standard buttons
parent
d9b1d4f14e
commit
140eea1eef
@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Copyright (C) 2021 CutefishOS Team.
|
||||
*
|
||||
* Author: Reion Wong <reionwong@gmail.com>
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
import QtQuick 2.12
|
||||
import QtQuick.Controls 2.12
|
||||
import FishUI 1.0 as FishUI
|
||||
|
||||
Button {
|
||||
id: control
|
||||
|
||||
property color backgroundColor: FishUI.Theme.darkMode ? "#363636" : "#FFFFFF"
|
||||
property color hoveredColor: Qt.tint(FishUI.Theme.textColor, Qt.rgba(backgroundColor.r,
|
||||
backgroundColor.g,
|
||||
backgroundColor.b, 0.9))
|
||||
property color pressedColor: Qt.tint(FishUI.Theme.textColor, Qt.rgba(backgroundColor.r,
|
||||
backgroundColor.g,
|
||||
backgroundColor.b, 0.8))
|
||||
|
||||
background: Rectangle {
|
||||
radius: FishUI.Theme.mediumRadius
|
||||
color: control.pressed ? control.pressedColor : control.hovered ? control.hoveredColor : control.backgroundColor
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue