linphone-desktop/ui/modules/Common/Form/Placements/FormTableLine.qml
2017-06-14 18:05:18 +02:00

40 lines
913 B
QML

import QtQuick 2.7
import QtQuick.Layouts 1.3
import Common.Styles 1.0
// =============================================================================
Row {
id: formTableLine
property alias title: title.text
readonly property double maxItemWidth: parent.maxItemWidth
// ---------------------------------------------------------------------------
spacing: FormLineStyle.spacing
width: parent.width
// ---------------------------------------------------------------------------
Text {
id: title
color: FormTableStyle.entry.text.color
elide: Text.ElideRight
horizontalAlignment: Text.AlignRight
verticalAlignment: Text.AlignVCenter
height: FormTableStyle.entry.height
width: formTableLine.parent.legendLineWidth
font {
bold: false
pointSize: FormTableStyle.entry.text.pointSize
}
visible: !formTableLine.parent.disableLineTitle
}
}