mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 11:58:11 +00:00
40 lines
913 B
QML
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
|
|
}
|
|
}
|