39 lines
1.1 KiB
QML
39 lines
1.1 KiB
QML
import QtQuick 2.12
|
|
import FishUI 1.0 as FishUI
|
|
|
|
Item {
|
|
id: control
|
|
width: 24
|
|
height: 24
|
|
|
|
property alias source: _image.source
|
|
property color hoveredColor: FishUI.Theme.darkMode ? Qt.lighter(FishUI.Theme.backgroundColor, 1.1)
|
|
: Qt.darker(FishUI.Theme.backgroundColor, 1.2)
|
|
property color pressedColor: FishUI.Theme.darkMode ? Qt.lighter(FishUI.Theme.backgroundColor, 1.2)
|
|
: Qt.darker(FishUI.Theme.backgroundColor, 1.3)
|
|
|
|
signal clicked()
|
|
|
|
Rectangle {
|
|
id: _background
|
|
anchors.fill: parent
|
|
radius: FishUI.Theme.smallRadius
|
|
color: _mouseArea.pressed ? pressedColor : _mouseArea.containsMouse ? control.hoveredColor : FishUI.Theme.backgroundColor
|
|
}
|
|
|
|
Image {
|
|
id: _image
|
|
anchors.centerIn: parent
|
|
width: control.height * 0.64
|
|
height: width
|
|
sourceSize: Qt.size(width, height)
|
|
}
|
|
|
|
MouseArea {
|
|
id: _mouseArea
|
|
anchors.fill: parent
|
|
hoverEnabled: true
|
|
acceptedButtons: Qt.LeftButton
|
|
onClicked: control.clicked()
|
|
}
|
|
}
|