Clean up MessageDelegate.

Include a generic component for text bubbles.
Fixes #11.
This commit is contained in:
Black Hat
2018-08-05 18:06:57 +08:00
parent cfa7049c5e
commit 97cedcc785
5 changed files with 74 additions and 70 deletions

View File

@@ -3,20 +3,23 @@ import QtQuick.Controls 2.2
import QtQuick.Controls.Material 2.2
AvatarContainer {
readonly property var downloadAndOpen: downloadable.downloadAndOpen
readonly property var saveFileAs: downloadable.saveFileAs
DownloadableContent {
id: downloadable
width: downloadButton.width
height: downloadButton.height
width: downloadDelegate.width
height: downloadDelegate.height
Button {
id: downloadButton
TextDelegate {
id: downloadDelegate
text: content.body
maximumWidth: messageListView.width
highlighted: !sentByMe
flat: true
timeLabelVisible: false
onClicked: downloadable.saveFileAs()
displayText: "<b>File: </b>" + content.body
}
}
}