summaryrefslogtreecommitdiffstats
path: root/components/mailviewer/qml/EmbededPart.qml
blob: 11d1081c6578df0d4f2cd51f98ad76e333bf575e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import QtQuick 2.4

Item {

    height: mailPart.height
    width: mailPart.width


    Rectangle {
        id: border
        color: "lightgrey"
        height: mailPart.height
        width: 5
    }

    Text {
        id: sender

        anchors {
            left: border.right
            leftMargin: 15
        }

        text: "sent by " + model.sender + " on  " + model.date
        color: "grey"
    }

    MailPart {
        id: mailPart

        anchors.top: sender.bottom

    }

}