moment/src/qml/Base/HImage.qml
2019-11-06 15:47:18 -04:00

79 lines
2.3 KiB
QML

import QtQuick 2.12
import "../utils.js" as Utils
Image {
id: image
autoTransform: true
asynchronous: true
fillMode: Image.PreserveAspectFit
cache: ! (animate && animated) &&
(sourceSize.width + sourceSize.height) <= 512
property bool animate: true
property bool animated: Utils.urlExtension(image.source) === "gif"
property alias progressBar: progressBar
Component {
id: animatedImageComponent
AnimatedImage {
id: animatedImage
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
// 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://")
paused: ! visible || window.hidden || userPaused
property bool userPaused: ! window.settings.media.autoPlayGIF
TapHandler {
onTapped: parent.userPaused = ! parent.userPaused
}
HIcon {
anchors.centerIn: parent
svgName: "play-overlay"
colorize: "transparent"
dimension: Math.min(
parent.width - theme.spacing * 2,
parent.height - theme.spacing * 2,
theme.controls.image.maxPauseIndicatorSize,
)
scale: parent.status == Image.Ready && parent.paused ? 1 : 0
visible: scale > 0
Behavior on scale { HNumberAnimation { overshoot: 4 } }
}
}
}
HLoader {
anchors.fill: parent
sourceComponent: animate && animated ? animatedImageComponent : null
}
HCircleProgressBar {
id: progressBar
anchors.centerIn: parent
width: Math.min(parent.width, parent.height) * 0.5
height: width
visible: image.status === Image.Loading
value: image.progress
text: Math.round(value * 100) + "%"
Behavior on value { HNumberAnimation { factor: 2 } }
}
}