23 lines
510 B
QML
23 lines
510 B
QML
|
import QtQuick 2.0
|
||
|
import org.ukui.menu.core 1.0
|
||
|
|
||
|
MouseArea {
|
||
|
id: buttonMouseArea
|
||
|
hoverEnabled: true
|
||
|
property string buttonIcon: ""
|
||
|
|
||
|
StyleBackground {
|
||
|
useStyleTransparent: false
|
||
|
paletteRole: Palette.Text
|
||
|
anchors.fill: parent
|
||
|
radius: height / 2
|
||
|
alpha: buttonMouseArea.containsPress ? 0.17 : buttonMouseArea.containsMouse ? 0.12 : 0.06
|
||
|
}
|
||
|
|
||
|
Image {
|
||
|
anchors.centerIn: parent
|
||
|
width: 16; height: width
|
||
|
source: buttonIcon
|
||
|
}
|
||
|
}
|