mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-18 11:58:11 +00:00
51 lines
1.1 KiB
QML
51 lines
1.1 KiB
QML
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls.Basic as Control
|
|
import SettingsCpp 1.0
|
|
import Linphone
|
|
|
|
AbstractSettingsLayout {
|
|
contentComponent: content
|
|
Component {
|
|
id: content
|
|
ColumnLayout {
|
|
spacing: 5 * DefaultStyle.dp
|
|
RowLayout {
|
|
spacing: 5 * DefaultStyle.dp
|
|
ColumnLayout {
|
|
Layout.fillWidth: true
|
|
spacing: 5 * DefaultStyle.dp
|
|
ColumnLayout {
|
|
Layout.preferredWidth: 341 * DefaultStyle.dp
|
|
Layout.maximumWidth: 341 * DefaultStyle.dp
|
|
spacing: 5 * DefaultStyle.dp
|
|
Text {
|
|
text: qsTr("Réseau")
|
|
font: Typography.h4
|
|
wrapMode: Text.WordWrap
|
|
color: DefaultStyle.main2_600
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
Item {
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|
|
ColumnLayout {
|
|
Layout.rightMargin: 25 * DefaultStyle.dp
|
|
Layout.topMargin: 36 * DefaultStyle.dp
|
|
Layout.leftMargin: 64 * DefaultStyle.dp
|
|
spacing: 40 * DefaultStyle.dp
|
|
SwitchSetting {
|
|
Layout.fillWidth: true
|
|
titleText: qsTr("Autoriser l'IPv6")
|
|
propertyName: "ipv6Enabled"
|
|
propertyOwner: SettingsCpp
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|