telephant/qml/MessageDelegate.qml

26 lines
606 B
QML
Raw Normal View History

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
ColumnLayout {
property bool fadeMedia
id: messageDelegate
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
Layout.fillWidth: true
2017-08-29 05:02:56 +00:00
MessageView {
id: messageView
fadeMedia: messageDelegate.fadeMedia
2017-08-29 05:02:56 +00:00
anchors.left: parent.left
anchors.right: parent.right
}
}
}