2022-01-02 23:46:29 +03:00
|
|
|
// SPDX-FileCopyrightText: 2022 Nheko Contributors
|
2023-01-02 06:25:33 +03:00
|
|
|
// SPDX-FileCopyrightText: 2023 Nheko Contributors
|
2022-01-02 23:46:29 +03:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
import QtQuick 2.15
|
|
|
|
import QtQuick.Window 2.15
|
|
|
|
|
|
|
|
import ".."
|
|
|
|
|
|
|
|
import im.nheko 1.0
|
|
|
|
|
|
|
|
Window {
|
|
|
|
id: imageOverlay
|
|
|
|
|
|
|
|
required property string url
|
|
|
|
required property string eventId
|
|
|
|
required property Room room
|
2022-04-10 05:10:32 +03:00
|
|
|
required property int originalWidth
|
|
|
|
required property double proportionalHeight
|
2022-01-02 23:46:29 +03:00
|
|
|
|
|
|
|
flags: Qt.FramelessWindowHint
|
|
|
|
|
2022-04-10 05:10:32 +03:00
|
|
|
//visibility: Window.FullScreen
|
2022-01-02 23:46:29 +03:00
|
|
|
color: Qt.rgba(0.2,0.2,0.2,0.66)
|
|
|
|
|
|
|
|
Shortcut {
|
|
|
|
sequence: StandardKey.Cancel
|
|
|
|
onActivated: imageOverlay.close()
|
|
|
|
}
|
|
|
|
|
2022-06-15 21:55:51 +03:00
|
|
|
TapHandler {
|
|
|
|
onSingleTapped: imageOverlay.close();
|
|
|
|
}
|
|
|
|
|
2022-01-02 23:46:29 +03:00
|
|
|
|
|
|
|
Item {
|
2022-04-10 05:10:32 +03:00
|
|
|
id: imgContainer
|
|
|
|
|
2022-05-10 04:19:53 +03:00
|
|
|
property int imgSrcWidth: (imageOverlay.originalWidth && imageOverlay.originalWidth > 100) ? imageOverlay.originalWidth : Screen.width
|
|
|
|
property int imgSrcHeight: imageOverlay.proportionalHeight ? imgSrcWidth * imageOverlay.proportionalHeight : Screen.height
|
2022-04-10 05:10:32 +03:00
|
|
|
|
2022-05-10 04:19:53 +03:00
|
|
|
height: Math.min(parent.height || Screen.height, imgSrcHeight)
|
|
|
|
width: Math.min(parent.width || Screen.width, imgSrcWidth)
|
2022-04-10 05:10:32 +03:00
|
|
|
|
2022-05-10 04:19:53 +03:00
|
|
|
x: (parent.width - width) / 2
|
|
|
|
y: (parent.height - height) / 2
|
2022-01-02 23:46:29 +03:00
|
|
|
|
|
|
|
Image {
|
|
|
|
id: img
|
|
|
|
|
|
|
|
visible: !mxcimage.loaded
|
|
|
|
anchors.fill: parent
|
|
|
|
source: url.replace("mxc://", "image://MxcImage/")
|
|
|
|
asynchronous: true
|
|
|
|
fillMode: Image.PreserveAspectFit
|
|
|
|
smooth: true
|
|
|
|
mipmap: true
|
2022-01-06 07:33:08 +03:00
|
|
|
property bool loaded: status == Image.Ready
|
2022-01-02 23:46:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
MxcAnimatedImage {
|
|
|
|
id: mxcimage
|
|
|
|
|
|
|
|
visible: loaded
|
|
|
|
anchors.fill: parent
|
|
|
|
roomm: imageOverlay.room
|
|
|
|
play: !Settings.animateImagesOnHover || mouseArea.hovered
|
|
|
|
eventId: imageOverlay.eventId
|
|
|
|
}
|
|
|
|
|
2022-04-10 05:10:32 +03:00
|
|
|
onScaleChanged: {
|
|
|
|
if (scale > 10) scale = 10;
|
|
|
|
if (scale < 0.1) scale = 0.1
|
2022-01-03 01:50:08 +03:00
|
|
|
}
|
2022-04-10 05:10:32 +03:00
|
|
|
}
|
2022-01-03 01:50:08 +03:00
|
|
|
|
2022-04-10 05:10:32 +03:00
|
|
|
Item {
|
|
|
|
anchors.fill: parent
|
2022-01-06 07:33:08 +03:00
|
|
|
|
2022-01-03 01:50:08 +03:00
|
|
|
|
2022-01-02 23:46:29 +03:00
|
|
|
PinchHandler {
|
2022-04-10 05:10:32 +03:00
|
|
|
target: imgContainer
|
|
|
|
maximumScale: 10
|
|
|
|
minimumScale: 0.1
|
2022-01-02 23:46:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
WheelHandler {
|
|
|
|
property: "scale"
|
2022-04-10 05:10:32 +03:00
|
|
|
target: imgContainer
|
2022-01-02 23:46:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
DragHandler {
|
2022-04-10 05:10:32 +03:00
|
|
|
target: imgContainer
|
2022-01-02 23:46:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
HoverHandler {
|
|
|
|
id: mouseArea
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Row {
|
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.margins: Nheko.paddingLarge
|
|
|
|
spacing: Nheko.paddingMedium
|
|
|
|
|
|
|
|
ImageButton {
|
|
|
|
height: 48
|
|
|
|
width: 48
|
|
|
|
hoverEnabled: true
|
|
|
|
image: ":/icons/icons/ui/download.svg"
|
|
|
|
//ToolTip.visible: hovered
|
|
|
|
//ToolTip.delay: Nheko.tooltipDelay
|
|
|
|
//ToolTip.text: qsTr("Download")
|
|
|
|
onClicked: {
|
2023-01-20 17:10:22 +03:00
|
|
|
imageOverlay.hide();
|
2022-01-02 23:46:29 +03:00
|
|
|
if (room) {
|
|
|
|
room.saveMedia(eventId);
|
|
|
|
} else {
|
|
|
|
TimelineManager.saveMedia(url);
|
|
|
|
}
|
|
|
|
imageOverlay.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ImageButton {
|
|
|
|
height: 48
|
|
|
|
width: 48
|
|
|
|
hoverEnabled: true
|
|
|
|
image: ":/icons/icons/ui/dismiss.svg"
|
|
|
|
//ToolTip.visible: hovered
|
|
|
|
//ToolTip.delay: Nheko.tooltipDelay
|
|
|
|
//ToolTip.text: qsTr("Close")
|
|
|
|
onClicked: imageOverlay.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|