106 lines
3 KiB
QML
106 lines
3 KiB
QML
/*
|
|
Copyright (C) 2020 Sebastian J. Wolf and other contributors
|
|
|
|
This file is part of Fernschreiber.
|
|
|
|
Fernschreiber is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
Fernschreiber is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with Fernschreiber. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
import QtQuick 2.6
|
|
import Sailfish.Silica 1.0
|
|
import WerkWolf.Fernschreiber 1.0
|
|
import Nemo.Thumbnailer 1.0
|
|
import "../"
|
|
|
|
InlineQueryResult {
|
|
id: queryResultItem
|
|
|
|
property bool animate
|
|
property bool animating: animate && model.sticker.is_animated
|
|
property url stickerId: "http://sticker/" + model.sticker.sticker.remote.id
|
|
onAnimatingChanged: {
|
|
if(animating) {
|
|
resultView.requestPlayback(stickerId);
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: resultView
|
|
onRequestPlayback: {
|
|
if(queryResultItem.animating && queryResultItem.stickerId !== playbackSource) {
|
|
animate = false
|
|
}
|
|
}
|
|
}
|
|
|
|
onPressAndHold: {
|
|
animate = !animate
|
|
}
|
|
|
|
TDLibFile {
|
|
id: file
|
|
tdlib: tdLibWrapper
|
|
fileInformation: model.sticker.sticker
|
|
autoLoad: true
|
|
}
|
|
|
|
Loader {
|
|
id: animatedStickerLoader
|
|
anchors {
|
|
fill: parent
|
|
margins: Theme.paddingLarge
|
|
}
|
|
active: queryResultItem.animating
|
|
sourceComponent: Component {
|
|
AnimatedImage {
|
|
id: animatedSticker
|
|
anchors.fill: parent
|
|
source: file.path
|
|
asynchronous: true
|
|
paused: !Qt.application.active
|
|
cache: false
|
|
layer.enabled: highlighted
|
|
layer.effect: PressEffect { source: animatedSticker }
|
|
}
|
|
}
|
|
}
|
|
|
|
Image {
|
|
id: staticSticker
|
|
anchors {
|
|
fill: parent
|
|
margins: Theme.paddingLarge
|
|
}
|
|
source: file.path
|
|
fillMode: Image.PreserveAspectFit
|
|
autoTransform: true
|
|
asynchronous: true
|
|
visible: !queryResultItem.animating && opacity > 0
|
|
opacity: status === Image.Ready ? 1 : 0
|
|
Behavior on opacity { FadeAnimation {} }
|
|
layer.enabled: queryResultItem.highlighted
|
|
layer.effect: PressEffect { source: staticSticker }
|
|
}
|
|
|
|
Icon {
|
|
source: "image://theme/icon-m-video"
|
|
width: Theme.iconSizeExtraSmall
|
|
height: width
|
|
visible: model.sticker.is_animated
|
|
highlighted: queryResultItem.highlighted || queryResultItem.animating
|
|
anchors {
|
|
right: parent.right
|
|
bottom: parent.bottom
|
|
}
|
|
}
|
|
}
|