mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-19 12:28:08 +00:00
45 lines
990 B
QML
45 lines
990 B
QML
import QtQuick 2.7
|
|
import QtQuick.Layouts 1.3
|
|
|
|
import Common.Styles 1.0
|
|
|
|
// =============================================================================
|
|
|
|
Column {
|
|
property alias title: title.text
|
|
property bool dealWithErrors: false
|
|
property int orientation: Qt.Horizontal
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
spacing: FormStyle.spacing
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
ColumnLayout {
|
|
spacing: FormStyle.header.spacing
|
|
visible: parent.title.length > 0
|
|
width: parent.width
|
|
|
|
Text {
|
|
id: title
|
|
|
|
color: FormStyle.header.title.color
|
|
font {
|
|
bold: true
|
|
pointSize: FormStyle.header.title.pointSize
|
|
}
|
|
}
|
|
|
|
Rectangle {
|
|
Layout.fillWidth: true
|
|
Layout.preferredHeight: FormStyle.header.separator.height
|
|
|
|
color: FormStyle.header.separator.color
|
|
}
|
|
|
|
Item {
|
|
height: FormStyle.header.bottomMargin
|
|
}
|
|
}
|
|
}
|