import QtQuick 2.9 import QtQuick.Controls 2.2 import QtQuick.Controls.Material 2.2 AvatarContainer { readonly property var downloadAndOpen: downloadable.downloadAndOpen readonly property var saveFileAs: downloadable.saveFileAs id: messageRow DownloadableContent { id: downloadable width: downloadDelegate.width height: downloadDelegate.height TextDelegate { id: downloadDelegate maximumWidth: messageListView.width highlighted: !sentByMe timeLabelVisible: false authorLabelVisible: false displayText: "File: " + content.body } } }