ukui-menu/qml/AppControls2/RoundButton.qml

23 lines
510 B
QML
Raw Normal View History

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
}
}