summaryrefslogtreecommitdiffstats
path: root/components/mailviewer/qml/SignedPart.qml
blob: 729a2a8d7c0819e911f99b34d2556b673be9625b (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
import QtQuick 2.4
import QtQuick.Controls 1.5

Item {

    height: mailPart.height + 20
    width: mailPart.width + 20

        BorderImage {

        anchors.fill: parent
        border { left: 40; top: 40; right: 40; bottom: 40 }
        horizontalTileMode: BorderImage.Round
        verticalTileMode: BorderImage.Round

        source: "securityborders" + model.securityLevel + ".png"
    }

    MailPart {
        id: mailPart

        anchors.centerIn: parent

    }
}