summary refs log tree commit diff
path: root/resources/qml/dialogs/ImageOverlay.qml
blob: 2e1261d3e2cafbaaec977ac1f859018bebd06508 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
// SPDX-FileCopyrightText: 2022 Nheko Contributors
//
// SPDX-License-Identifier: GPL-3.0-or-later

import QtQuick 2.15
import QtQuick.Window 2.15
import Qt.labs.animation 1.0

import ".."

import im.nheko 1.0

Window {
    id: imageOverlay

    required property string url
    required property string eventId
    required property Room room

    flags: Qt.FramelessWindowHint

    visibility: Window.FullScreen
    color: Qt.rgba(0.2,0.2,0.2,0.66)

    Shortcut {
        sequence: StandardKey.Cancel
        onActivated: imageOverlay.close()
    }


    Item {
        height: Math.min(parent.height, img.implicitHeight)
        width: Math.min(parent.width, img.implicitWidth)
        x: (parent.width - img.width)/2
        y: (parent.height - img.height)/2

        Image {
            id: img

            visible: !mxcimage.loaded
            anchors.fill: parent
            source: url.replace("mxc://", "image://MxcImage/")
            asynchronous: true
            fillMode: Image.PreserveAspectFit
            smooth: true
            mipmap: true
            property bool loaded: status == Image.Ready
        }

        MxcAnimatedImage {
            id: mxcimage

            visible: loaded
            anchors.fill: parent
            roomm: imageOverlay.room
            play: !Settings.animateImagesOnHover || mouseArea.hovered
            eventId: imageOverlay.eventId
        }

        BoundaryRule on scale {
            enabled: img.loaded || mxcimage.loaded
            id: sbr
            minimum: 0.1
            maximum: 10
            minimumOvershoot: 0.02; maximumOvershoot: 10.02
        }

        BoundaryRule on x {
           enabled: img.loaded || mxcimage.loaded
           id: xbr
           minimum: -100
           maximum: imageOverlay.width - img.width + 100
           minimumOvershoot: 100; maximumOvershoot: 100
           overshootFilter: BoundaryRule.Peak
        }

        BoundaryRule on y {
           enabled: img.loaded || mxcimage.loaded
           id: ybr
           minimum: -100
           maximum: imageOverlay.height - img.height + 100
           minimumOvershoot: 100; maximumOvershoot: 100
           overshootFilter: BoundaryRule.Peak
        }

        PinchHandler {
            onActiveChanged: if (!active) sbr.returnToBounds();
        }

        WheelHandler {
            property: "scale"
            onActiveChanged: if (!active) sbr.returnToBounds();
        }

        DragHandler {
            onActiveChanged: if (!active) {
               xbr.returnToBounds();
               ybr.returnToBounds();
            }
        }

        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: {
                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()
        }
    }

}