mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 07:08:07 +00:00
26 lines
785 B
QML
26 lines
785 B
QML
import QtQuick 2.7
|
|
|
|
import Linphone.Styles 1.0
|
|
|
|
// ===================================================================
|
|
// Description content used by dialogs.
|
|
// ===================================================================
|
|
|
|
Item {
|
|
property alias text: description.text
|
|
|
|
height: (!text && DialogStyle.description.verticalMargin) || undefined
|
|
implicitHeight: (text && (description.implicitHeight + DialogStyle.description.verticalMargin * 2)) ||
|
|
0
|
|
|
|
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
|
|
}
|
|
}
|