linphone-desktop/Linphone/view/Page/Layout/Settings/MeetingsSettingsLayout.qml
2025-03-19 17:01:15 +01:00

58 lines
1.4 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 UtilsCpp
import Linphone
AbstractSettingsLayout {
id: mainItem
width: parent?.width
contentModel: [
{
//: "Affichage"
title: qsTr("settings_meetings_display_title"),
subTitle: "",
contentComponent: confDisplayParametersComponent,
hideTopMargin: true
}
]
onSave: {
SettingsCpp.save()
}
onUndo: SettingsCpp.undo()
Component {
id: confDisplayParametersComponent
ColumnLayout {
spacing: Math.round(5 * DefaultStyle.dp)
Text {
//: "Mode daffichage par défaut"
text: qsTr("settings_meetings_default_layout_title")
font {
pixelSize: Typography.p2l.pixelSize
weight: Typography.p2l.weight
}
}
Text {
//: "Le mode daffichage des participants en réunions"
text: qsTr("settings_meetings_default_layout_subtitle")
font {
pixelSize: Typography.p1.pixelSize
weight: Typography.p1.weight
}
}
ComboSetting {
Layout.fillWidth: true
Layout.topMargin: Math.round(12 * DefaultStyle.dp)
Layout.preferredWidth: parent.width
entries: SettingsCpp.conferenceLayouts
propertyName: "conferenceLayout"
propertyOwner: SettingsCpp
textRole: 'display_name'
}
}
}
}