forked from openkylin/ukui-menu
26 lines
686 B
QML
26 lines
686 B
QML
import QtQuick 2.0
|
|
import org.ukui.menu.core 1.0
|
|
|
|
MouseArea {
|
|
id: buttonMouseArea
|
|
hoverEnabled: true
|
|
property string buttonIcon: ""
|
|
property alias highlight: themeIcon.highLight
|
|
property alias autoHighLight: themeIcon.autoHighLight
|
|
|
|
StyleBackground {
|
|
useStyleTransparent: false
|
|
paletteRole: mainWindow.isFullScreen ? Palette.Light : Palette.Text
|
|
anchors.fill: parent
|
|
radius: height / 2
|
|
alpha: buttonMouseArea.containsPress ? 0.20 : buttonMouseArea.containsMouse ? 0.16 : 0.10
|
|
}
|
|
|
|
ThemeIcon {
|
|
id: themeIcon
|
|
anchors.centerIn: parent
|
|
width: 16; height: width
|
|
source: buttonIcon
|
|
}
|
|
}
|