linux.x86.linphone/Linphone/view/Page/Layout/Settings/MeetingsSettingsLayout.qml
Gaelle Braud 7faa4cba47 fix #LINQT-1486 set default conference layout in parameters
LINQT-1487 add security/encryption settings
2024-12-12 17:25:53 +01:00

49 lines
1 KiB
QML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import QtQuick
import QtQuick.Layouts
import QtQuick.Controls.Basic as Control
import SettingsCpp 1.0
import Linphone
AbstractSettingsLayout {
id: mainItem
width: parent?.width
contentModel: [
{
title: qsTr("Affichage"),
subTitle: "",
contentComponent: confDisplayParametersComponent,
hideTopMargin: true
}
]
Component {
id: confDisplayParametersComponent
ColumnLayout {
spacing: 5 * DefaultStyle.dp
Text {
text: qsTr("Mode daffichage par défaut")
font {
pixelSize: 14 * DefaultStyle.dp
weight: 700 * DefaultStyle.dp
}
}
Text {
text: qsTr("Le mode daffichage des participants en réunions")
font {
pixelSize: 14 * DefaultStyle.dp
weight: 400 * DefaultStyle.dp
}
}
ComboSetting {
Layout.fillWidth: true
Layout.topMargin: 12 * DefaultStyle.dp
Layout.preferredWidth: parent.width
entries: SettingsCpp.conferenceLayouts
propertyName: "conferenceLayout"
propertyOwner: SettingsCpp
textRole: 'display_name'
}
}
}
}