2023-03-02 13:57:13 +08:00
|
|
|
import QtQuick 2.0
|
|
|
|
import org.ukui.menu.core 1.0
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
id: buttonMouseArea
|
|
|
|
hoverEnabled: true
|
|
|
|
property string buttonIcon: ""
|
2023-04-08 18:42:31 +08:00
|
|
|
property alias highlight: themeIcon.highLight
|
|
|
|
property alias autoHighLight: themeIcon.autoHighLight
|
2023-03-02 13:57:13 +08:00
|
|
|
|
|
|
|
StyleBackground {
|
|
|
|
useStyleTransparent: false
|
2023-03-22 16:42:06 +08:00
|
|
|
paletteRole: mainWindow.isFullScreen ? Palette.Light : Palette.Text
|
2023-03-02 13:57:13 +08:00
|
|
|
anchors.fill: parent
|
|
|
|
radius: height / 2
|
2023-03-22 16:42:06 +08:00
|
|
|
alpha: buttonMouseArea.containsPress ? 0.20 : buttonMouseArea.containsMouse ? 0.16 : 0.10
|
2023-03-02 13:57:13 +08:00
|
|
|
}
|
|
|
|
|
2023-03-17 16:37:09 +08:00
|
|
|
ThemeIcon {
|
2023-04-08 18:42:31 +08:00
|
|
|
id: themeIcon
|
2023-03-02 13:57:13 +08:00
|
|
|
anchors.centerIn: parent
|
|
|
|
width: 16; height: width
|
|
|
|
source: buttonIcon
|
|
|
|
}
|
|
|
|
}
|