1
0
Fork 0
mirror of https://git.jami.net/savoirfairelinux/jami-client-qt.git synced 2025-08-25 01:03:50 +02:00
jami-client-qt/src/app/settingsview/components/AdvancedConnectivitySettings.qml
Aline Gondim Santos 42a46fe165 settingsview: homogenize ModalTextEdit usage
GitLab: #986
GitLab: #1004

Change-Id: Iea441cba4c258a82b9a553c93c81e4d76f0baa1c
2023-02-28 09:30:06 -05:00

212 lines
5.6 KiB
QML

/*
* Copyright (C) 2020-2023 Savoir-faire Linux Inc.
* Author: Aline Gondim Santos <aline.gondimsantos@savoirfairelinux.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick
import QtQuick.Layouts
import net.jami.Models 1.1
import net.jami.Adapters 1.1
import net.jami.Constants 1.1
import "../../commoncomponents"
ColumnLayout {
id: root
property int itemWidth
property bool isSIP
ElidedTextLabel {
Layout.fillWidth: true
Layout.preferredHeight: JamiTheme.preferredFieldHeight
eText: JamiStrings.connectivity
fontSize: JamiTheme.headerFontSize
maxWidth: width
}
ColumnLayout {
Layout.fillWidth: true
Layout.leftMargin: JamiTheme.preferredMarginSize
ToggleSwitch {
id: autoRegistrationAfterExpired
Layout.fillWidth: true
visible: isSIP
labelText: JamiStrings.autoRegistration
fontPointSize: JamiTheme.settingsFontSize
checked: CurrentAccount.keepAliveEnabled
onSwitchToggled: CurrentAccount.keepAliveEnabled = checked
}
SettingSpinBox {
id: registrationExpireTimeoutSpinBox
visible: isSIP
title: JamiStrings.registrationExpirationTime
itemWidth: root.itemWidth
bottomValue: 0
topValue: 7*24*3600
valueField: CurrentAccount.registrationExpire
onNewValue: CurrentAccount.registrationExpire = valueField
}
SettingSpinBox {
id: networkInterfaceSpinBox
visible: isSIP
title: JamiStrings.networkInterface
itemWidth: root.itemWidth
bottomValue: 0
topValue: 65535
valueField: CurrentAccount.localPort
onNewValue: CurrentAccount.localPort = valueField
}
ToggleSwitch {
id: checkBoxUPnP
Layout.fillWidth: true
labelText: JamiStrings.useUPnP
fontPointSize: JamiTheme.settingsFontSize
checked: CurrentAccount.upnpEnabled
onSwitchToggled: CurrentAccount.upnpEnabled = checked
}
ToggleSwitch {
id: checkBoxTurnEnable
Layout.fillWidth: true
labelText: JamiStrings.useTURN
fontPointSize: JamiTheme.settingsFontSize
checked: CurrentAccount.enable_TURN
onSwitchToggled: CurrentAccount.enable_TURN = checked
}
SettingsMaterialTextEdit {
id: lineEditTurnAddress
Layout.fillWidth: true
Layout.preferredHeight: JamiTheme.preferredFieldHeight
enabled: checkBoxTurnEnable.checked
staticText: CurrentAccount.server_TURN
itemWidth: root.itemWidth
titleField: JamiStrings.turnAdress
onEditFinished: CurrentAccount.server_TURN = dynamicText
}
SettingsMaterialTextEdit {
id: lineEditTurnUsername
Layout.fillWidth: true
Layout.preferredHeight: JamiTheme.preferredFieldHeight
enabled: checkBoxTurnEnable.checked
staticText: CurrentAccount.username_TURN
itemWidth: root.itemWidth
titleField: JamiStrings.turnUsername
onEditFinished: CurrentAccount.username_TURN = dynamicText
}
SettingsMaterialTextEdit {
id: lineEditTurnPassword
Layout.fillWidth: true
Layout.preferredHeight: JamiTheme.preferredFieldHeight
enabled: checkBoxTurnEnable.checked
staticText: CurrentAccount.password_TURN
itemWidth: root.itemWidth
titleField: JamiStrings.turnPassword
onEditFinished: CurrentAccount.password_TURN = dynamicText
}
SettingsMaterialTextEdit {
id: lineEditTurnRealmSIP
Layout.fillWidth: true
Layout.preferredHeight: JamiTheme.preferredFieldHeight
enabled: checkBoxTurnEnable.checked
staticText: CurrentAccount.realm_TURN
itemWidth: root.itemWidth
titleField: JamiStrings.turnRealm
onEditFinished: CurrentAccount.realm_TURN = dynamicText
}
ToggleSwitch {
id: checkBoxSTUNEnable
Layout.fillWidth: true
labelText: JamiStrings.useSTUN
fontPointSize: JamiTheme.settingsFontSize
visible: isSIP
checked: CurrentAccount.enable_STUN
onSwitchToggled: CurrentAccount.enable_STUN = checked
}
SettingsMaterialTextEdit {
id: lineEditSTUNAddress
Layout.fillWidth: true
Layout.preferredHeight: JamiTheme.preferredFieldHeight
enabled: checkBoxSTUNEnable.checked
visible: isSIP
staticText: CurrentAccount.server_STUN
itemWidth: root.itemWidth
titleField: JamiStrings.stunAdress
onEditFinished: CurrentAccount.server_STUN = dynamicText
}
}
}