Compare commits
No commits in common. "117bfb4790961b8c327b2a4a197987a80b9e4dec" and "9adb73eebf2c2e8958bfe4a2e9154d7ad9dfd43f" have entirely different histories.
117bfb4790
...
9adb73eebf
|
@ -14,7 +14,7 @@ import Spectral.Menu.Timeline 2.0
|
||||||
import Spectral.Font 0.1
|
import Spectral.Font 0.1
|
||||||
import Spectral.Effect 2.0
|
import Spectral.Effect 2.0
|
||||||
|
|
||||||
RowLayout {
|
ColumnLayout {
|
||||||
readonly property bool avatarVisible: !sentByMe && showAuthor
|
readonly property bool avatarVisible: !sentByMe && showAuthor
|
||||||
readonly property bool sentByMe: author === currentRoom.localUser
|
readonly property bool sentByMe: author === currentRoom.localUser
|
||||||
|
|
||||||
|
@ -23,16 +23,32 @@ RowLayout {
|
||||||
|
|
||||||
id: root
|
id: root
|
||||||
|
|
||||||
spacing: 4
|
spacing: 0
|
||||||
|
|
||||||
onDownloadedChanged: if (downloaded && openOnFinished) openSavedFile()
|
onDownloadedChanged: if (downloaded && openOnFinished) openSavedFile()
|
||||||
|
|
||||||
|
Label {
|
||||||
|
Layout.leftMargin: 48
|
||||||
|
|
||||||
|
text: author.displayName
|
||||||
|
|
||||||
|
visible: avatarVisible
|
||||||
|
|
||||||
|
font.pixelSize: 13
|
||||||
|
verticalAlignment: Text.AlignVCenter
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
z: -5
|
z: -5
|
||||||
|
|
||||||
|
id: messageRow
|
||||||
|
|
||||||
|
spacing: 4
|
||||||
|
|
||||||
Avatar {
|
Avatar {
|
||||||
Layout.preferredWidth: 36
|
Layout.preferredWidth: 32
|
||||||
Layout.preferredHeight: 36
|
Layout.preferredHeight: 32
|
||||||
Layout.alignment: Qt.AlignBottom
|
Layout.alignment: Qt.AlignTop
|
||||||
|
|
||||||
visible: avatarVisible
|
visible: avatarVisible
|
||||||
hint: author.displayName
|
hint: author.displayName
|
||||||
|
@ -54,14 +70,22 @@ RowLayout {
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
Layout.preferredWidth: 36
|
Layout.preferredWidth: 32
|
||||||
Layout.preferredHeight: 36
|
Layout.preferredHeight: 32
|
||||||
|
Layout.alignment: Qt.AlignTop
|
||||||
|
|
||||||
visible: !(sentByMe || avatarVisible)
|
visible: !(sentByMe || avatarVisible)
|
||||||
|
|
||||||
|
text: Qt.formatTime(time, "hh:mm AP")
|
||||||
|
color: "#5B7480"
|
||||||
|
|
||||||
|
font.pixelSize: 10
|
||||||
|
horizontalAlignment: Label.AlignHCenter
|
||||||
|
verticalAlignment: Label.AlignVCenter
|
||||||
}
|
}
|
||||||
|
|
||||||
Control {
|
Control {
|
||||||
Layout.maximumWidth: messageListView.width - (!sentByMe ? 36 + root.spacing : 0) - 48
|
Layout.maximumWidth: messageListView.width - (!sentByMe ? 32 + messageRow.spacing : 0) - 48
|
||||||
|
|
||||||
padding: 12
|
padding: 12
|
||||||
|
|
||||||
|
@ -76,21 +100,17 @@ RowLayout {
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
Label {
|
Label {
|
||||||
Layout.fillWidth: true
|
Layout.alignment: Qt.AlignVCenter
|
||||||
|
|
||||||
text: display
|
text: display
|
||||||
wrapMode: Label.Wrap
|
|
||||||
font.pixelSize: 18
|
font.pixelSize: 18
|
||||||
font.weight: Font.Medium
|
font.weight: Font.Medium
|
||||||
font.capitalization: Font.AllUppercase
|
font.capitalization: Font.AllUppercase
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
Layout.fillWidth: true
|
|
||||||
|
|
||||||
text: progressInfo.active ? (humanSize(progressInfo.progress) + "/" + humanSize(progressInfo.total)) : humanSize(content.info ? content.info.size : 0)
|
text: progressInfo.active ? (humanSize(progressInfo.progress) + "/" + humanSize(progressInfo.total)) : humanSize(content.info ? content.info.size : 0)
|
||||||
color: MPalette.lighter
|
color: MPalette.lighter
|
||||||
wrapMode: Label.Wrap
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -106,10 +126,10 @@ RowLayout {
|
||||||
width: parent.width / 2
|
width: parent.width / 2
|
||||||
height: parent.height / 2
|
height: parent.height / 2
|
||||||
|
|
||||||
visible: true
|
visible: !sentByMe && (bubbleShape == 3 || bubbleShape == 2)
|
||||||
|
|
||||||
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
|
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
|
||||||
radius: 5
|
radius: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
@ -119,10 +139,10 @@ RowLayout {
|
||||||
width: parent.width / 2
|
width: parent.width / 2
|
||||||
height: parent.height / 2
|
height: parent.height / 2
|
||||||
|
|
||||||
visible: true
|
visible: sentByMe && (bubbleShape == 3 || bubbleShape == 2)
|
||||||
|
|
||||||
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
|
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
|
||||||
radius: 5
|
radius: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
@ -132,10 +152,10 @@ RowLayout {
|
||||||
width: parent.width / 2
|
width: parent.width / 2
|
||||||
height: parent.height / 2
|
height: parent.height / 2
|
||||||
|
|
||||||
visible: true
|
visible: !sentByMe && (bubbleShape == 1 || bubbleShape == 2)
|
||||||
|
|
||||||
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
|
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
|
||||||
radius: 5
|
radius: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
|
@ -145,10 +165,10 @@ RowLayout {
|
||||||
width: parent.width / 2
|
width: parent.width / 2
|
||||||
height: parent.height / 2
|
height: parent.height / 2
|
||||||
|
|
||||||
visible: true
|
visible: sentByMe && (bubbleShape == 1 || bubbleShape == 2)
|
||||||
|
|
||||||
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
|
color: sentByMe ? MPalette.background : eventType === "notice" ? MPalette.primary : MPalette.accent
|
||||||
radius: 5
|
radius: 2
|
||||||
}
|
}
|
||||||
|
|
||||||
AutoMouseArea {
|
AutoMouseArea {
|
||||||
|
@ -196,6 +216,7 @@ RowLayout {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function saveFileAs() {
|
function saveFileAs() {
|
||||||
var folderDialog = openFolderDialog.createObject(ApplicationWindow.overlay)
|
var folderDialog = openFolderDialog.createObject(ApplicationWindow.overlay)
|
||||||
|
@ -225,6 +246,7 @@ RowLayout {
|
||||||
if (Qt.openUrlExternally(progressInfo.localDir)) return;
|
if (Qt.openUrlExternally(progressInfo.localDir)) return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
function humanSize(bytes)
|
function humanSize(bytes)
|
||||||
{
|
{
|
||||||
if (!bytes)
|
if (!bytes)
|
||||||
|
|
|
@ -35,8 +35,8 @@ RowLayout {
|
||||||
}
|
}
|
||||||
|
|
||||||
Avatar {
|
Avatar {
|
||||||
Layout.preferredWidth: 36
|
Layout.preferredWidth: 32
|
||||||
Layout.preferredHeight: 36
|
Layout.preferredHeight: 32
|
||||||
Layout.alignment: Qt.AlignBottom
|
Layout.alignment: Qt.AlignBottom
|
||||||
|
|
||||||
visible: avatarVisible
|
visible: avatarVisible
|
||||||
|
@ -59,8 +59,8 @@ RowLayout {
|
||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
Layout.preferredWidth: 36
|
Layout.preferredWidth: 32
|
||||||
Layout.preferredHeight: 36
|
Layout.preferredHeight: 32
|
||||||
|
|
||||||
visible: !(sentByMe || avatarVisible)
|
visible: !(sentByMe || avatarVisible)
|
||||||
}
|
}
|
||||||
|
@ -73,7 +73,7 @@ RowLayout {
|
||||||
}
|
}
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
Layout.maximumWidth: messageListView.width - (!sentByMe ? 36 + root.spacing : 0) - 48
|
Layout.maximumWidth: messageListView.width - (!sentByMe ? 32 + root.spacing : 0) - 48
|
||||||
|
|
||||||
id: img
|
id: img
|
||||||
|
|
||||||
|
|
|
@ -34,8 +34,8 @@ ColumnLayout {
|
||||||
spacing: 4
|
spacing: 4
|
||||||
|
|
||||||
Avatar {
|
Avatar {
|
||||||
Layout.preferredWidth: 36
|
Layout.preferredWidth: 32
|
||||||
Layout.preferredHeight: 36
|
Layout.preferredHeight: 32
|
||||||
Layout.alignment: Qt.AlignBottom
|
Layout.alignment: Qt.AlignBottom
|
||||||
|
|
||||||
visible: avatarVisible
|
visible: avatarVisible
|
||||||
|
@ -58,14 +58,14 @@ ColumnLayout {
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
Layout.preferredWidth: 36
|
Layout.preferredWidth: 32
|
||||||
Layout.preferredHeight: 36
|
Layout.preferredHeight: 32
|
||||||
|
|
||||||
visible: !(sentByMe || avatarVisible)
|
visible: !(sentByMe || avatarVisible)
|
||||||
}
|
}
|
||||||
|
|
||||||
Control {
|
Control {
|
||||||
Layout.maximumWidth: messageListView.width - (!sentByMe ? 36 + messageRow.spacing : 0) - 48
|
Layout.maximumWidth: messageListView.width - (!sentByMe ? 32 + messageRow.spacing : 0) - 48
|
||||||
|
|
||||||
verticalPadding: 8
|
verticalPadding: 8
|
||||||
horizontalPadding: 16
|
horizontalPadding: 16
|
||||||
|
@ -259,7 +259,7 @@ ColumnLayout {
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
Layout.alignment: sentByMe ? Qt.AlignRight : Qt.AlignLeft
|
Layout.alignment: sentByMe ? Qt.AlignRight : Qt.AlignLeft
|
||||||
Layout.leftMargin: sentByMe ? undefined : 36 + messageRow.spacing + 12
|
Layout.leftMargin: sentByMe ? undefined : 32 + messageRow.spacing + 12
|
||||||
Layout.rightMargin: sentByMe ? 12 : undefined
|
Layout.rightMargin: sentByMe ? 12 : undefined
|
||||||
Layout.bottomMargin: 4
|
Layout.bottomMargin: 4
|
||||||
|
|
||||||
|
|
|
@ -1,251 +0,0 @@
|
||||||
import QtQuick 2.12
|
|
||||||
import QtQuick.Controls 2.12
|
|
||||||
import QtQuick.Layouts 1.12
|
|
||||||
import QtQuick.Controls.Material 2.12
|
|
||||||
import QtGraphicalEffects 1.0
|
|
||||||
import QtMultimedia 5.12
|
|
||||||
import Qt.labs.platform 1.0 as Platform
|
|
||||||
|
|
||||||
import Spectral 0.1
|
|
||||||
import Spectral.Setting 0.1
|
|
||||||
|
|
||||||
import Spectral.Component 2.0
|
|
||||||
import Spectral.Dialog 2.0
|
|
||||||
import Spectral.Menu.Timeline 2.0
|
|
||||||
import Spectral.Effect 2.0
|
|
||||||
import Spectral.Font 0.1
|
|
||||||
|
|
||||||
RowLayout {
|
|
||||||
readonly property bool avatarVisible: showAuthor && !sentByMe
|
|
||||||
readonly property bool sentByMe: author === currentRoom.localUser
|
|
||||||
|
|
||||||
property bool openOnFinished: false
|
|
||||||
property bool playOnFinished: false
|
|
||||||
readonly property bool downloaded: progressInfo && progressInfo.completed
|
|
||||||
|
|
||||||
id: root
|
|
||||||
|
|
||||||
spacing: 4
|
|
||||||
|
|
||||||
z: -5
|
|
||||||
|
|
||||||
onDownloadedChanged: {
|
|
||||||
if (downloaded && openOnFinished) {
|
|
||||||
openSavedFile()
|
|
||||||
openOnFinished = false
|
|
||||||
}
|
|
||||||
if (downloaded && playOnFinished) {
|
|
||||||
playSavedFile()
|
|
||||||
playOnFinished = false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Avatar {
|
|
||||||
Layout.preferredWidth: 36
|
|
||||||
Layout.preferredHeight: 36
|
|
||||||
Layout.alignment: Qt.AlignBottom
|
|
||||||
|
|
||||||
visible: avatarVisible
|
|
||||||
hint: author.displayName
|
|
||||||
source: author.avatarMediaId
|
|
||||||
|
|
||||||
Component {
|
|
||||||
id: userDetailDialog
|
|
||||||
|
|
||||||
UserDetailDialog {}
|
|
||||||
}
|
|
||||||
|
|
||||||
RippleEffect {
|
|
||||||
anchors.fill: parent
|
|
||||||
|
|
||||||
circular: true
|
|
||||||
|
|
||||||
onClicked: userDetailDialog.createObject(ApplicationWindow.overlay, {"room": currentRoom, "user": author}).open()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Label {
|
|
||||||
Layout.preferredWidth: 36
|
|
||||||
Layout.preferredHeight: 36
|
|
||||||
|
|
||||||
visible: !(sentByMe || avatarVisible)
|
|
||||||
}
|
|
||||||
|
|
||||||
Video {
|
|
||||||
Layout.fillWidth: true
|
|
||||||
Layout.preferredHeight: width
|
|
||||||
|
|
||||||
id: vid
|
|
||||||
|
|
||||||
source: progressInfo.localPath
|
|
||||||
|
|
||||||
loops: MediaPlayer.Infinite
|
|
||||||
autoPlay: true
|
|
||||||
|
|
||||||
fillMode: VideoOutput.PreserveAspectFit
|
|
||||||
|
|
||||||
layer.enabled: true
|
|
||||||
layer.effect: OpacityMask {
|
|
||||||
maskSource: Rectangle {
|
|
||||||
width: vid.width
|
|
||||||
height: vid.height
|
|
||||||
radius: 18
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Label {
|
|
||||||
anchors.centerIn: parent
|
|
||||||
|
|
||||||
visible: vid.playbackState != MediaPlayer.PlayingState
|
|
||||||
color: "white"
|
|
||||||
text: "Video"
|
|
||||||
font.pixelSize: 16
|
|
||||||
|
|
||||||
padding: 8
|
|
||||||
|
|
||||||
background: Rectangle {
|
|
||||||
radius: height / 2
|
|
||||||
color: "black"
|
|
||||||
opacity: 0.3
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Control {
|
|
||||||
anchors.bottom: parent.bottom
|
|
||||||
anchors.bottomMargin: 8
|
|
||||||
anchors.right: parent.right
|
|
||||||
anchors.rightMargin: 8
|
|
||||||
|
|
||||||
horizontalPadding: 8
|
|
||||||
verticalPadding: 4
|
|
||||||
|
|
||||||
contentItem: RowLayout {
|
|
||||||
Label {
|
|
||||||
text: Qt.formatTime(time, "hh:mm AP")
|
|
||||||
color: "white"
|
|
||||||
font.pixelSize: 12
|
|
||||||
}
|
|
||||||
|
|
||||||
Label {
|
|
||||||
text: author.displayName
|
|
||||||
color: "white"
|
|
||||||
font.pixelSize: 12
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
background: Rectangle {
|
|
||||||
radius: height / 2
|
|
||||||
color: "black"
|
|
||||||
opacity: 0.3
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Rectangle {
|
|
||||||
anchors.fill: parent
|
|
||||||
|
|
||||||
visible: progressInfo.active && !downloaded
|
|
||||||
|
|
||||||
color: "#BB000000"
|
|
||||||
|
|
||||||
ProgressBar {
|
|
||||||
anchors.centerIn: parent
|
|
||||||
|
|
||||||
width: parent.width * 0.8
|
|
||||||
|
|
||||||
from: 0
|
|
||||||
to: progressInfo.total
|
|
||||||
value: progressInfo.progress
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
RippleEffect {
|
|
||||||
anchors.fill: parent
|
|
||||||
|
|
||||||
id: messageMouseArea
|
|
||||||
|
|
||||||
onPrimaryClicked: downloadAndPlay()
|
|
||||||
|
|
||||||
onSecondaryClicked: {
|
|
||||||
var contextMenu = imageDelegateContextMenu.createObject(ApplicationWindow.overlay)
|
|
||||||
contextMenu.viewSource.connect(function() {
|
|
||||||
messageSourceDialog.createObject(ApplicationWindow.overlay, {"sourceText": toolTip}).open()
|
|
||||||
})
|
|
||||||
contextMenu.downloadAndOpen.connect(downloadAndOpen)
|
|
||||||
contextMenu.saveFileAs.connect(saveFileAs)
|
|
||||||
contextMenu.reply.connect(function() {
|
|
||||||
roomPanelInput.replyUser = author
|
|
||||||
roomPanelInput.replyEventID = eventId
|
|
||||||
roomPanelInput.replyContent = message
|
|
||||||
roomPanelInput.isReply = true
|
|
||||||
roomPanelInput.focus()
|
|
||||||
})
|
|
||||||
contextMenu.redact.connect(function() {
|
|
||||||
currentRoom.redactEvent(eventId)
|
|
||||||
})
|
|
||||||
contextMenu.popup()
|
|
||||||
}
|
|
||||||
|
|
||||||
Component {
|
|
||||||
id: messageSourceDialog
|
|
||||||
|
|
||||||
MessageSourceDialog {}
|
|
||||||
}
|
|
||||||
|
|
||||||
Component {
|
|
||||||
id: openFolderDialog
|
|
||||||
|
|
||||||
OpenFolderDialog {}
|
|
||||||
}
|
|
||||||
|
|
||||||
Component {
|
|
||||||
id: imageDelegateContextMenu
|
|
||||||
|
|
||||||
FileDelegateContextMenu {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function saveFileAs() {
|
|
||||||
var folderDialog = openFolderDialog.createObject(ApplicationWindow.overlay)
|
|
||||||
|
|
||||||
folderDialog.chosen.connect(function(path) {
|
|
||||||
if (!path) return
|
|
||||||
|
|
||||||
currentRoom.downloadFile(eventId, path + "/" + currentRoom.fileNameToDownload(eventId))
|
|
||||||
})
|
|
||||||
|
|
||||||
folderDialog.open()
|
|
||||||
}
|
|
||||||
|
|
||||||
function downloadAndOpen()
|
|
||||||
{
|
|
||||||
if (downloaded) openSavedFile()
|
|
||||||
else
|
|
||||||
{
|
|
||||||
openOnFinished = true
|
|
||||||
currentRoom.downloadFile(eventId, Platform.StandardPaths.writableLocation(Platform.StandardPaths.CacheLocation) + "/" + eventId.replace(":", "_").replace("/", "_").replace("+", "_") + currentRoom.fileNameToDownload(eventId))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function downloadAndPlay()
|
|
||||||
{
|
|
||||||
if (downloaded) playSavedFile()
|
|
||||||
else
|
|
||||||
{
|
|
||||||
playOnFinished = true
|
|
||||||
currentRoom.downloadFile(eventId, Platform.StandardPaths.writableLocation(Platform.StandardPaths.CacheLocation) + "/" + eventId.replace(":", "_").replace("/", "_").replace("+", "_") + currentRoom.fileNameToDownload(eventId))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function openSavedFile()
|
|
||||||
{
|
|
||||||
if (Qt.openUrlExternally(progressInfo.localPath)) return;
|
|
||||||
if (Qt.openUrlExternally(progressInfo.localDir)) return;
|
|
||||||
}
|
|
||||||
|
|
||||||
function playSavedFile()
|
|
||||||
{
|
|
||||||
vid.stop()
|
|
||||||
vid.play()
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -4,4 +4,3 @@ StateDelegate 2.0 StateDelegate.qml
|
||||||
SectionDelegate 2.0 SectionDelegate.qml
|
SectionDelegate 2.0 SectionDelegate.qml
|
||||||
ImageDelegate 2.0 ImageDelegate.qml
|
ImageDelegate 2.0 ImageDelegate.qml
|
||||||
FileDelegate 2.0 FileDelegate.qml
|
FileDelegate 2.0 FileDelegate.qml
|
||||||
VideoDelegate 2.0 VideoDelegate.qml
|
|
||||||
|
|
|
@ -219,24 +219,6 @@ Item {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DelegateChoice {
|
|
||||||
roleValue: "video"
|
|
||||||
delegate: ColumnLayout {
|
|
||||||
width: messageListView.width
|
|
||||||
|
|
||||||
SectionDelegate {
|
|
||||||
Layout.alignment: Qt.AlignHCenter
|
|
||||||
Layout.maximumWidth: parent.width
|
|
||||||
|
|
||||||
visible: showSection
|
|
||||||
}
|
|
||||||
|
|
||||||
VideoDelegate {
|
|
||||||
Layout.alignment: sentByMe ? Qt.AlignRight : Qt.AlignLeft
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
DelegateChoice {
|
DelegateChoice {
|
||||||
roleValue: "file"
|
roleValue: "file"
|
||||||
delegate: ColumnLayout {
|
delegate: ColumnLayout {
|
||||||
|
|
1
res.qrc
1
res.qrc
|
@ -57,6 +57,5 @@
|
||||||
<file>imports/Spectral/Dialog/AccountDetailDialog.qml</file>
|
<file>imports/Spectral/Dialog/AccountDetailDialog.qml</file>
|
||||||
<file>imports/Spectral/Dialog/OpenFileDialog.qml</file>
|
<file>imports/Spectral/Dialog/OpenFileDialog.qml</file>
|
||||||
<file>imports/Spectral/Dialog/OpenFolderDialog.qml</file>
|
<file>imports/Spectral/Dialog/OpenFolderDialog.qml</file>
|
||||||
<file>imports/Spectral/Component/Timeline/VideoDelegate.qml</file>
|
|
||||||
</qresource>
|
</qresource>
|
||||||
</RCC>
|
</RCC>
|
||||||
|
|
|
@ -289,8 +289,6 @@ QVariant MessageEventModel::data(const QModelIndex& idx, int role) const {
|
||||||
return "image";
|
return "image";
|
||||||
case MessageEventType::Audio:
|
case MessageEventType::Audio:
|
||||||
return "audio";
|
return "audio";
|
||||||
case MessageEventType::Video:
|
|
||||||
return "video";
|
|
||||||
}
|
}
|
||||||
if (e->hasFileContent())
|
if (e->hasFileContent())
|
||||||
return "file";
|
return "file";
|
||||||
|
|
Loading…
Reference in New Issue