summaryrefslogtreecommitdiffstats
path: root/components/mailviewer/qml/EncryptedPart.qml
blob: eba6c035d1077da621df55a6927c284ecb20f9a0 (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
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

    }
}