mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-06-20 02:00:55 +07:00
741b5cc0f9
* Fix qt 6.9 support * add support android sdk 36 * feat: add support SafeMargins from Android * Fix black screen --------- Co-authored-by: NickVs2015 <nv@amnezia.org>
157 lines
4.3 KiB
QML
157 lines
4.3 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import PageEnum 1.0
|
|
import Style 1.0
|
|
|
|
import "./"
|
|
import "../Controls2"
|
|
import "../Config"
|
|
|
|
PageType {
|
|
id: root
|
|
|
|
property bool isAppSplitTinnelingEnabled: Qt.platform.os === "windows" || Qt.platform.os === "android"
|
|
|
|
BackButtonType {
|
|
id: backButton
|
|
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.topMargin: 20 + SettingsController.safeAreaTopMargin
|
|
|
|
onActiveFocusChanged: {
|
|
if(backButton.enabled && backButton.activeFocus) {
|
|
listView.positionViewAtBeginning()
|
|
}
|
|
}
|
|
}
|
|
|
|
ListViewType {
|
|
id: listView
|
|
|
|
anchors.top: backButton.bottom
|
|
anchors.bottom: parent.bottom
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
|
|
header: ColumnLayout {
|
|
|
|
width: listView.width
|
|
|
|
BaseHeaderType {
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: 16
|
|
Layout.rightMargin: 16
|
|
|
|
headerText: qsTr("Connection")
|
|
}
|
|
}
|
|
|
|
model: 1 // fake model to force the ListView to be created without a model
|
|
|
|
delegate: ColumnLayout { // TODO(CyAn84): add DelegateChooser when have migrated to 6.9
|
|
|
|
width: listView.width
|
|
|
|
SwitcherType {
|
|
id: amneziaDnsSwitch
|
|
|
|
Layout.fillWidth: true
|
|
Layout.margins: 16
|
|
|
|
text: qsTr("Use AmneziaDNS")
|
|
descriptionText: qsTr("If AmneziaDNS is installed on the server")
|
|
|
|
checked: SettingsController.isAmneziaDnsEnabled()
|
|
onToggled: function() {
|
|
if (checked !== SettingsController.isAmneziaDnsEnabled()) {
|
|
SettingsController.toggleAmneziaDns(checked)
|
|
}
|
|
}
|
|
}
|
|
|
|
DividerType {}
|
|
|
|
LabelWithButtonType {
|
|
id: dnsServersButton
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: qsTr("DNS servers")
|
|
descriptionText: qsTr("When AmneziaDNS is not used or installed")
|
|
rightImageSource: "qrc:/images/controls/chevron-right.svg"
|
|
|
|
clickedFunction: function() {
|
|
PageController.goToPage(PageEnum.PageSettingsDns)
|
|
}
|
|
}
|
|
|
|
DividerType {}
|
|
|
|
LabelWithButtonType {
|
|
id: splitTunnelingButton
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: qsTr("Site-based split tunneling")
|
|
descriptionText: qsTr("Allows you to select which sites you want to access through the VPN")
|
|
rightImageSource: "qrc:/images/controls/chevron-right.svg"
|
|
|
|
clickedFunction: function() {
|
|
PageController.goToPage(PageEnum.PageSettingsSplitTunneling)
|
|
}
|
|
}
|
|
|
|
DividerType {}
|
|
|
|
}
|
|
|
|
footer: ColumnLayout { // TODO(CyAn84): move to delegate,add DelegateChooser when have migrated to 6.9
|
|
|
|
width: listView.width
|
|
|
|
LabelWithButtonType {
|
|
id: splitTunnelingButton2
|
|
|
|
visible: root.isAppSplitTinnelingEnabled
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: qsTr("App-based split tunneling")
|
|
descriptionText: qsTr("Allows you to use the VPN only for certain Apps")
|
|
rightImageSource: "qrc:/images/controls/chevron-right.svg"
|
|
|
|
clickedFunction: function() {
|
|
PageController.goToPage(PageEnum.PageSettingsAppSplitTunneling)
|
|
}
|
|
}
|
|
|
|
DividerType {
|
|
visible: root.isAppSplitTinnelingEnabled
|
|
}
|
|
|
|
LabelWithButtonType {
|
|
id: killSwitchButton
|
|
visible: !GC.isMobile()
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: qsTr("KillSwitch")
|
|
descriptionText: qsTr("Blocks network connections without VPN")
|
|
rightImageSource: "qrc:/images/controls/chevron-right.svg"
|
|
|
|
clickedFunction: function() {
|
|
PageController.goToPage(PageEnum.PageSettingsKillSwitch)
|
|
}
|
|
}
|
|
|
|
DividerType {
|
|
visible: GC.isDesktop()
|
|
}
|
|
}
|
|
}
|
|
}
|