Support GIFs

This commit is contained in:
miruka 2019-09-12 16:16:35 -04:00
parent f8811f4e0c
commit 125d1e24aa
5 changed files with 47 additions and 2 deletions

View File

@ -13,6 +13,7 @@
- When qml syntax highlighting supports ES6 string interpolation, use that
- Fixes
- Image tooltips
- Time on their own lines
- When selecting text and scrolling up, selection stops working after a while
- Ensure all the text that should be copied is copied
@ -70,7 +71,6 @@
- Replies
- Messages editing and redaction
- Code highlighting
- Support GIF avatars and images
- Adapt shortcuts flicking speed to font size and DPI
- EditAccount page:

View File

@ -12,6 +12,7 @@ Rectangle {
property var imageUrl: ""
property var toolTipImageUrl: imageUrl
property alias fillMode: avatarImage.fillMode
property alias animate: avatarImage.animate
readonly property alias hovered: hoverHandler.hovered
@ -49,6 +50,7 @@ Rectangle {
sourceSize.height: params.height
fillMode: Image.PreserveAspectCrop
source: Qt.resolvedUrl(imageUrl)
animate: false
HoverHandler { id: hoverHandler }

View File

@ -5,14 +5,49 @@ Image {
id: image
autoTransform: true
asynchronous: true
cache: true
fillMode: Image.PreserveAspectFit
cache: ! loader.sourceComponent &&
(sourceSize.width + sourceSize.height) <= 512
property bool animate: true
property color colorize: "transparent"
layer.enabled: ! Qt.colorEqual(colorize, "transparent")
layer.effect: ColorOverlay {
color: image.colorize
cached: image.cache
}
Component {
id: animatedImage
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
cache: true // Needed to allow GIFs to loop
paused: ! visible || window.hidden
}
}
HLoader {
id: loader
anchors.fill: parent
sourceComponent:
animate &&
image.source.toString()
.split("/").splice(-1)[0].split("?")[0].toLowerCase()
.endsWith(".gif") ? animatedImage : null
}
}

View File

@ -61,6 +61,7 @@ HGridLayout {
avatarUrl: accountInfo.avatar_url
imageUrl: fileDialog.selectedFile || fileDialog.file || defaultImageUrl
toolTipImageUrl: ""
animate: true // note: matrix doesn't actually support gif avatars
Layout.alignment: Qt.AlignHCenter

View File

@ -12,6 +12,13 @@ ApplicationWindow {
visible: true
color: "transparent"
readonly property bool hidden:
Qt.application.state == Qt.ApplicationSuspended ||
Qt.application.state == Qt.ApplicationHidden ||
window.visibility == window.Minimized ||
window.visibility == window.Hidden
// Note: For JS object variables, the corresponding method to notify
// key/value changes must be called manually, e.g. settingsChanged().
property var modelSources: ({})