2021-01-25 20:50:42 +00:00
|
|
|
import QtQuick 2.13
|
2020-07-15 21:04:14 +00:00
|
|
|
import "../../../../../shared"
|
|
|
|
import "../../../../../imports"
|
|
|
|
|
|
|
|
MouseArea {
|
2021-02-02 17:04:49 +00:00
|
|
|
enabled: !placeholderMessage
|
2020-07-20 21:59:01 +00:00
|
|
|
cursorShape: chatText.hoveredLink ? Qt.PointingHandCursor : undefined
|
2020-09-12 18:22:07 +00:00
|
|
|
acceptedButtons: Qt.RightButton | Qt.LeftButton
|
2020-07-20 21:59:01 +00:00
|
|
|
z: 50
|
2020-07-15 21:04:14 +00:00
|
|
|
onClicked: {
|
|
|
|
if(mouse.button & Qt.RightButton) {
|
2020-09-12 18:22:07 +00:00
|
|
|
clickMessage(false, isSticker, false);
|
2021-02-08 18:46:20 +00:00
|
|
|
if (typeof isMessageActive !== "undefined") {
|
|
|
|
isMessageActive = true
|
|
|
|
}
|
2020-09-12 18:22:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2021-03-30 14:13:20 +00:00
|
|
|
if (mouse.button === Qt.LeftButton && isSticker && stickersLoaded) {
|
|
|
|
if (isHovered) {
|
|
|
|
isHovered = false
|
|
|
|
}
|
|
|
|
|
2021-03-08 19:24:39 +00:00
|
|
|
openPopup(statusStickerPackClickPopup, {packId: stickerPackId} )
|
2020-07-15 21:04:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|