linphone-desktop/tests/ui/components/dialog/DialogDescription.qml
2016-09-26 10:53:25 +02:00

24 lines
686 B
QML

import QtQuick 2.7
import 'qrc:/ui/style/components'
// ===================================================================
// Description content used by dialogs.
// ===================================================================
Item {
property alias text: description.text
height: text ? DialogStyle.description.height : DialogStyle.description.minHeight
Text {
id: description
anchors.fill: parent
anchors.leftMargin: DialogStyle.leftMargin
anchors.rightMargin: DialogStyle.rightMargin
font.pointSize: DialogStyle.description.fontSize
verticalAlignment: Text.AlignVCenter
wrapMode: Text.WordWrap
}
}