96 lines
3.3 KiB
QML
96 lines
3.3 KiB
QML
/**
|
|
* Copyright (C) 2020 Aniket Kumar <anikketkumar786@gmail.com>
|
|
*
|
|
* This program 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 2 of
|
|
* the License or (at your option) version 3 or any later version
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
* defined in Section 14 of version 3 of the license.
|
|
*
|
|
* This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import QtQuick 2.12
|
|
import QtQuick.Layouts 1.12
|
|
import QtQuick.Controls 2.12
|
|
import QtGraphicalEffects 1.12
|
|
import org.kde.kirigami 2.13 as Kirigami
|
|
import QtMultimedia 5.12
|
|
|
|
Item {
|
|
id: root
|
|
property int partID
|
|
property string mimeType
|
|
property string uniqueIdentifier
|
|
property string sourcePath
|
|
|
|
readonly property int elementWidth: 100
|
|
readonly property int elementHeight: 100
|
|
|
|
width: thumbnailElement.visible ? thumbnailElement.width : elementWidth
|
|
height: thumbnailElement.visible ? thumbnailElement.height : elementHeight
|
|
|
|
Image {
|
|
id: thumbnailElement
|
|
visible: mimeType.match("image") || mimeType.match("video")
|
|
source: visible ? "image://thumbnailsProvider/" + root.uniqueIdentifier : ""
|
|
|
|
property bool rounded: true
|
|
property bool adapt: true
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
layer.enabled: rounded
|
|
layer.effect: OpacityMask {
|
|
maskSource: Item {
|
|
width: thumbnailElement.width
|
|
height: thumbnailElement.height
|
|
Rectangle {
|
|
anchors.centerIn: parent
|
|
width: thumbnailElement.adapt ? thumbnailElement.width : Math.min(thumbnailElement.width, thumbnailElement.height)
|
|
height: thumbnailElement.adapt ? thumbnailElement.height : width
|
|
radius: messageBox.radius
|
|
}
|
|
}
|
|
}
|
|
|
|
Button {
|
|
icon.name: "media-playback-start"
|
|
visible: root.mimeType.match("video")
|
|
anchors.horizontalCenter: thumbnailElement.horizontalCenter
|
|
anchors.verticalCenter: thumbnailElement.verticalCenter
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
id: audioElement
|
|
visible: root.mimeType.match("audio")
|
|
anchors.fill: parent
|
|
radius: messageBox.radius
|
|
color: "lightgrey"
|
|
|
|
ColumnLayout {
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
spacing: Kirigami.Units.largeSpacing
|
|
|
|
Button {
|
|
id : audioPlayButton
|
|
icon.name: "media-playback-start"
|
|
Layout.alignment: Qt.AlignCenter
|
|
}
|
|
|
|
Label {
|
|
text: i18nd("kdeconnect-sms", "Audio clip")
|
|
}
|
|
}
|
|
}
|
|
}
|