2017-07-20 13:58:21 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
import QtQuick 2.7
|
|
|
|
|
|
|
|
Item {
|
2017-07-20 15:25:01 +00:00
|
|
|
Image {
|
|
|
|
id: contextMenuImage
|
2017-07-20 16:25:59 +00:00
|
|
|
x: -width
|
2017-07-20 15:25:01 +00:00
|
|
|
source: "qrc:///mapwidget-context-menu"
|
|
|
|
|
|
|
|
SequentialAnimation {
|
|
|
|
id:contextMenuImageAnimation
|
|
|
|
PropertyAnimation {
|
|
|
|
target: contextMenuImage; property: "scale"; from: 1.0; to: 0.8; duration: 80;
|
|
|
|
}
|
|
|
|
PropertyAnimation {
|
|
|
|
target: contextMenuImage; property: "scale"; from: 0.8; to: 1.0; duration: 60;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
|
|
|
contextMenuImageAnimation.restart()
|
|
|
|
}
|
|
|
|
}
|
2017-07-20 13:58:21 +00:00
|
|
|
}
|
|
|
|
}
|