2017-08-29 05:02:56 +00:00
|
|
|
import QtQuick 2.4
|
2017-08-29 14:28:33 +00:00
|
|
|
import QtQuick.Controls 2.1
|
|
|
|
import QtQuick.Controls.Material 2.1
|
2017-08-29 05:02:56 +00:00
|
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import QtGraphicalEffects 1.0
|
|
|
|
|
2017-08-30 23:55:36 +00:00
|
|
|
ColumnLayout {
|
2019-05-06 18:18:56 +00:00
|
|
|
property bool fadeMedia
|
|
|
|
|
|
|
|
id: messageDelegate
|
2017-08-30 23:55:36 +00:00
|
|
|
x: messagePane.Material.elevation
|
|
|
|
width: parent.width - messagePane.Material.elevation * 2 - 12
|
2017-08-29 05:02:56 +00:00
|
|
|
Pane {
|
|
|
|
id: messagePane
|
|
|
|
Material.elevation: 6
|
2017-08-30 23:55:36 +00:00
|
|
|
Layout.fillWidth: true
|
2017-08-29 05:02:56 +00:00
|
|
|
|
|
|
|
MessageView {
|
|
|
|
id: messageView
|
2019-05-06 18:18:56 +00:00
|
|
|
fadeMedia: messageDelegate.fadeMedia
|
2017-08-29 05:02:56 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|