diff options
Diffstat (limited to 'framework/qml/MailViewer.qml')
-rw-r--r-- | framework/qml/MailViewer.qml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/framework/qml/MailViewer.qml b/framework/qml/MailViewer.qml index 275158eb..b475f591 100644 --- a/framework/qml/MailViewer.qml +++ b/framework/qml/MailViewer.qml | |||
@@ -453,6 +453,24 @@ Rectangle { | |||
453 | } | 453 | } |
454 | } | 454 | } |
455 | } | 455 | } |
456 | Controls1.TreeView { | ||
457 | id: attachmentsTree | ||
458 | width: parent.width | ||
459 | height: implicitHeight | ||
460 | Controls1.TableViewColumn { | ||
461 | role: "type" | ||
462 | title: "Type" | ||
463 | } | ||
464 | Controls1.TableViewColumn { | ||
465 | role: "name" | ||
466 | title: "Name" | ||
467 | } | ||
468 | Controls1.TableViewColumn { | ||
469 | role: "size" | ||
470 | title: "Size" | ||
471 | } | ||
472 | model: messageParser.attachments | ||
473 | } | ||
456 | TextEdit { | 474 | TextEdit { |
457 | id: textEdit | 475 | id: textEdit |
458 | width: parent.width | 476 | width: parent.width |