2019-12-19 22:46:16 +11:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-07-13 19:39:01 +10:00
|
|
|
import QtQuick 2.12
|
2020-03-16 05:14:05 +11:00
|
|
|
import QtGraphicalEffects 1.12
|
2019-04-27 11:16:45 +10:00
|
|
|
|
|
|
|
Image {
|
2019-08-18 03:01:43 +10:00
|
|
|
id: image
|
2019-09-03 17:04:57 +10:00
|
|
|
autoTransform: true
|
2019-04-27 11:16:45 +10:00
|
|
|
asynchronous: true
|
|
|
|
fillMode: Image.PreserveAspectFit
|
2019-08-18 03:01:43 +10:00
|
|
|
|
2019-09-13 06:23:30 +10:00
|
|
|
cache: ! (animate && animated) &&
|
2019-09-13 06:16:35 +10:00
|
|
|
(sourceSize.width + sourceSize.height) <= 512
|
|
|
|
|
2020-03-16 05:14:05 +11:00
|
|
|
layer.enabled: radius !== 0
|
|
|
|
layer.effect: OpacityMask { maskSource: roundMask }
|
2019-09-13 06:16:35 +10:00
|
|
|
|
2020-03-16 05:14:05 +11:00
|
|
|
|
|
|
|
property bool circle: radius === circleRadius
|
2019-11-13 00:10:00 +11:00
|
|
|
property bool broken: false
|
2019-09-13 06:16:35 +10:00
|
|
|
property bool animate: true
|
2020-03-10 02:00:48 +11:00
|
|
|
property bool animated:
|
|
|
|
utils.urlExtension(image.source).toLowerCase() === "gif"
|
2020-03-26 14:06:51 +11:00
|
|
|
property bool enabledAnimatedPausing: true
|
2019-12-16 04:02:40 +11:00
|
|
|
|
2020-03-16 05:14:05 +11:00
|
|
|
property alias radius: roundMask.radius
|
2019-12-16 04:02:40 +11:00
|
|
|
property alias showProgressBar: progressBarLoader.active
|
|
|
|
property bool inderterminateProgressBar: false
|
2019-09-13 06:23:30 +10:00
|
|
|
|
2020-03-16 05:14:05 +11:00
|
|
|
readonly property int circleRadius:
|
|
|
|
Math.ceil(Math.max(image.width, image.height))
|
|
|
|
|
2019-09-13 06:16:35 +10:00
|
|
|
|
|
|
|
Component {
|
2019-09-13 07:27:26 +10:00
|
|
|
id: animatedImageComponent
|
2019-09-13 06:16:35 +10:00
|
|
|
|
|
|
|
AnimatedImage {
|
2019-09-13 07:27:26 +10:00
|
|
|
id: animatedImage
|
2019-09-13 06:16:35 +10:00
|
|
|
source: image.source
|
|
|
|
autoTransform: image.autoTransform
|
|
|
|
asynchronous: image.asynchronous
|
|
|
|
fillMode: image.fillMode
|
|
|
|
mirror: image.mirror
|
|
|
|
mipmap: image.mipmap
|
|
|
|
smooth: image.smooth
|
|
|
|
horizontalAlignment: image.horizontalAlignment
|
|
|
|
verticalAlignment: image.verticalAlignment
|
|
|
|
|
2020-03-16 15:15:47 +11:00
|
|
|
// Hack to make the non-animated image behind this one
|
|
|
|
// basically invisible
|
|
|
|
Binding {
|
|
|
|
target: image
|
|
|
|
property: "fillMode"
|
|
|
|
value: Image.Pad
|
|
|
|
}
|
|
|
|
Binding {
|
|
|
|
target: image
|
|
|
|
property: "sourceSize.width"
|
|
|
|
value: 1
|
|
|
|
}
|
|
|
|
Binding {
|
|
|
|
target: image
|
|
|
|
property: "sourceSize.height"
|
|
|
|
value: 1
|
|
|
|
}
|
|
|
|
|
2019-11-05 01:53:13 +11:00
|
|
|
// Online GIFs won't be able to loop if cache is set to false,
|
|
|
|
// but caching GIFs is expansive.
|
|
|
|
cache: ! Qt.resolvedUrl(source).startsWith("file://")
|
2019-09-13 06:23:30 +10:00
|
|
|
paused: ! visible || window.hidden || userPaused
|
|
|
|
|
2020-03-16 05:14:05 +11:00
|
|
|
layer.enabled: image.radius !== 0
|
|
|
|
layer.effect: OpacityMask { maskSource: roundMask }
|
|
|
|
|
2019-09-18 06:30:04 +10:00
|
|
|
property bool userPaused: ! window.settings.media.autoPlayGIF
|
2019-09-13 06:23:30 +10:00
|
|
|
|
|
|
|
TapHandler {
|
2020-03-26 14:06:51 +11:00
|
|
|
enabled: image.enabledAnimatedPausing
|
2019-09-13 06:23:30 +10:00
|
|
|
onTapped: parent.userPaused = ! parent.userPaused
|
2020-03-26 14:06:51 +11:00
|
|
|
gesturePolicy: TapHandler.ReleaseWithinBounds
|
2019-09-13 06:23:30 +10:00
|
|
|
}
|
2019-09-13 07:27:26 +10:00
|
|
|
|
|
|
|
HIcon {
|
2019-09-13 07:32:48 +10:00
|
|
|
anchors.centerIn: parent
|
2019-09-18 06:30:04 +10:00
|
|
|
svgName: "play-overlay"
|
2019-09-13 07:27:26 +10:00
|
|
|
colorize: "transparent"
|
|
|
|
dimension: Math.min(
|
|
|
|
parent.width - theme.spacing * 2,
|
|
|
|
parent.height - theme.spacing * 2,
|
|
|
|
theme.controls.image.maxPauseIndicatorSize,
|
|
|
|
)
|
2019-12-10 02:35:50 +11:00
|
|
|
scale: parent.status === Image.Ready && parent.paused ? 1 : 0
|
2019-09-13 07:27:26 +10:00
|
|
|
|
2019-12-16 19:42:41 +11:00
|
|
|
Behavior on scale { HNumberAnimation { overshoot: 4 } }
|
2019-09-13 07:27:26 +10:00
|
|
|
}
|
2019-09-13 06:16:35 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
HLoader {
|
|
|
|
anchors.fill: parent
|
2019-09-13 07:27:26 +10:00
|
|
|
sourceComponent: animate && animated ? animatedImageComponent : null
|
2019-09-13 06:16:35 +10:00
|
|
|
}
|
2019-10-28 07:35:58 +11:00
|
|
|
|
2019-12-16 04:02:40 +11:00
|
|
|
HLoader {
|
|
|
|
id: progressBarLoader
|
2019-10-28 07:35:58 +11:00
|
|
|
anchors.centerIn: parent
|
2019-11-07 06:47:18 +11:00
|
|
|
width: Math.min(parent.width, parent.height) * 0.5
|
|
|
|
height: width
|
2019-12-16 04:02:40 +11:00
|
|
|
active: image.status === Image.Loading
|
2019-10-28 07:35:58 +11:00
|
|
|
|
2019-12-16 04:02:40 +11:00
|
|
|
sourceComponent: HCircleProgressBar {
|
|
|
|
id: progressBar
|
|
|
|
value: image.progress
|
|
|
|
text: Math.round(value * 100) + "%"
|
|
|
|
|
|
|
|
Behavior on value { HNumberAnimation { factor: 2 } }
|
|
|
|
}
|
2019-10-28 07:35:58 +11:00
|
|
|
}
|
2019-11-07 07:09:07 +11:00
|
|
|
|
|
|
|
HIcon {
|
|
|
|
anchors.centerIn: parent
|
2019-11-13 00:10:00 +11:00
|
|
|
visible: broken || image.status === Image.Error
|
2019-11-07 07:09:07 +11:00
|
|
|
svgName: "broken-image"
|
|
|
|
colorize: theme.colors.negativeBackground
|
|
|
|
}
|
2020-03-16 05:14:05 +11:00
|
|
|
|
|
|
|
Rectangle {
|
|
|
|
id: roundMask
|
|
|
|
anchors.fill: parent
|
|
|
|
visible: false
|
|
|
|
}
|
2019-04-27 11:16:45 +10:00
|
|
|
}
|