mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 10:18:14 +00:00
* change position view mode * remove `parentFlickable` from `PageShare` * replace `FlickableType` with `ListViewType` in `PageSettings` * reorganize `PageSettingsAbout` for improved structure * replace `Flickable` with `ListViewType` in drawer in `PageSettingsApiNativeConfigs` * replace `FlickableType` with `ListViewType` in `PageSettingsApplication` and update layout structure * replace `FlickableType` with `ListViewType` in `PageSettingsAppSplitTunneling` and adjust layout for better structure * replace `FlickableType` with `ListViewType` in `PageSettingsBackup` * replace `FlickableType` with `ListViewType` in `PageSettingsConnection` * replace `FlickableType` with `ListViewType` in `PageSettingsDns` * replace `FlickableType` with `ListViewType` in `PageSettingsLogging` * replace `FlickableType` with `ListViewType` in `PageSettingsServerData` * update structure of `PageSettingsServerProtocol` * update `PageSettingsServersList` * replace `ListView` with `ListViewType` in `PageSettingsSplitTunneling` * replace `FlickableType` with `ListViewType` in `PageServiceDnsSettings` * update `PageServiceSftpSettings` * update `PageServiceSocksProxySettings` * replace `FlickableType` with `ListViewType` in `PageServiceTorWebsiteSettings` * replace `FlickableType` with `ListViewType` in `PageSetupWizardApiServiceInfo` * update `PageSetupWizardApiServicesList` * replace `ListView` with `ListViewType` in `PageSetupWizardConfigSource` * replace `ListView` with `ListViewType` in `PageSetupWizardCredentials` * replace `FlickableType` with `ListViewType` in `PageSetupWizardEasy` * replace `FlickableType` with `ListViewType` in `PageSetupWizardInstalling` * replace `ListView` with `ListViewType` in `PageSetupWizardProtocols` * replace `FlickableType` with `ListViewType` in `PageSetupWizardProtocolSettings` * replace `FlickableType` with `ListViewType` in `PageSetupWizardTextKey` * replace `FlickableType` with `ListViewType` in `PageSetupWizardViewConfig` * update `PageProtocolAwgClientSettings` * update `PageProtocolAwgSettings` * replace `FlickableType` with `ListViewType` in `PageProtocolCloakSettings` * replace `FlickableType` with `ListViewType` in `PageProtocolRaw` * replace `FlickableType` with `ListViewType` in `PageProtocolShadowSocksSettings` * replace `FlickableType` with `ListViewType` in `PageProtocolWireGuardClientSettings` * replace `FlickableType` with `ListViewType` in `PageProtocolWireGuardSettings` * replace `FlickableType` with `ListViewType` in `PageProtocolXraySettings` * replace `FlickableType` with `ListViewType` in `PageShareFullAccess` * replace `FlickableType` with `ListViewType` in `PageDeinstalling` * update `PageDevMenu` * remove `Flickable` references in `LabelWithButtonType` * remove useless key navigation handlers from `ListViewType` * replace `ListView` with `ListViewType` in `ListViewWithRadioButtonType.qml` and remove unnecessary properties * remove references to `Flickable` in `TextAreaType.qml` * remove references to `Flickable` in `TextAreaWithFooterType` * remove references to `FlickableType` in `TextFieldWithHeaderType` * remove references to `FlickableType` in `SwitcherType` * remove references to `FlickableType` in `CheckBoxType` * remove references to `FlickableType` in `CardWithIconsType.qml` * remove references to `FlickableType` in `BasicButtonType.qml` * update `ServersListView` * update `SettingsContainersListView` * update `InstalledAppsDrawer` * update `SelectLanguageDrawer` * update `HomeContainersListView` * update `HomeSplitTunnelingDrawer` * fix `PageSetupWizardApiServicesList` --------- Co-authored-by: vladimir.kuznetsov <nethiuswork@gmail.com>
137 lines
4.1 KiB
QML
137 lines
4.1 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
import PageEnum 1.0
|
|
import ProtocolEnum 1.0
|
|
import ContainerProps 1.0
|
|
import ContainersModelFilters 1.0
|
|
import Style 1.0
|
|
|
|
import "./"
|
|
import "../Controls2"
|
|
import "../Controls2/TextTypes"
|
|
import "../Config"
|
|
|
|
ListViewType {
|
|
id: root
|
|
|
|
property int selectedIndex: ServersModel.defaultIndex
|
|
|
|
anchors.top: serversMenuHeader.bottom
|
|
anchors.right: parent.right
|
|
anchors.left: parent.left
|
|
anchors.bottom: parent.bottom
|
|
anchors.topMargin: 16
|
|
|
|
model: ServersModel
|
|
|
|
Connections {
|
|
target: ServersModel
|
|
function onDefaultServerIndexChanged(serverIndex) {
|
|
root.selectedIndex = serverIndex
|
|
}
|
|
}
|
|
|
|
delegate: Item {
|
|
id: menuContentDelegate
|
|
objectName: "menuContentDelegate"
|
|
|
|
property variant delegateData: model
|
|
property VerticalRadioButton serverRadioButtonProperty: serverRadioButton
|
|
|
|
implicitWidth: root.width
|
|
implicitHeight: serverRadioButtonContent.implicitHeight
|
|
|
|
ColumnLayout {
|
|
id: serverRadioButtonContent
|
|
objectName: "serverRadioButtonContent"
|
|
|
|
anchors.fill: parent
|
|
anchors.rightMargin: 16
|
|
anchors.leftMargin: 16
|
|
|
|
spacing: 0
|
|
|
|
RowLayout {
|
|
objectName: "serverRadioButtonRowLayout"
|
|
|
|
Layout.fillWidth: true
|
|
|
|
VerticalRadioButton {
|
|
id: serverRadioButton
|
|
objectName: "serverRadioButton"
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: name
|
|
descriptionText: serverDescription
|
|
|
|
checked: index === root.selectedIndex
|
|
checkable: !ConnectionController.isConnected
|
|
|
|
ButtonGroup.group: serversRadioButtonGroup
|
|
|
|
onClicked: {
|
|
if (ConnectionController.isConnected) {
|
|
PageController.showNotificationMessage(qsTr("Unable change server while there is an active connection"))
|
|
return
|
|
}
|
|
|
|
root.selectedIndex = index
|
|
|
|
ServersModel.defaultIndex = index
|
|
}
|
|
|
|
Keys.onEnterPressed: serverRadioButton.clicked()
|
|
Keys.onReturnPressed: serverRadioButton.clicked()
|
|
}
|
|
|
|
ImageButtonType {
|
|
id: serverInfoButton
|
|
objectName: "serverInfoButton"
|
|
|
|
image: "qrc:/images/controls/settings.svg"
|
|
imageColor: AmneziaStyle.color.paleGray
|
|
|
|
implicitWidth: 56
|
|
implicitHeight: 56
|
|
|
|
z: 1
|
|
|
|
onClicked: function() {
|
|
ServersModel.processedIndex = index
|
|
|
|
if (ServersModel.getProcessedServerData("isServerFromGatewayApi")) {
|
|
if (ServersModel.getProcessedServerData("isCountrySelectionAvailable")) {
|
|
PageController.goToPage(PageEnum.PageSettingsApiAvailableCountries)
|
|
} else {
|
|
PageController.showBusyIndicator(true)
|
|
let result = ApiSettingsController.getAccountInfo(false)
|
|
PageController.showBusyIndicator(false)
|
|
if (!result) {
|
|
return
|
|
}
|
|
|
|
PageController.goToPage(PageEnum.PageSettingsApiServerInfo)
|
|
}
|
|
} else {
|
|
PageController.goToPage(PageEnum.PageSettingsServerInfo)
|
|
}
|
|
|
|
drawer.closeTriggered()
|
|
}
|
|
}
|
|
}
|
|
|
|
DividerType {
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: 0
|
|
Layout.rightMargin: 0
|
|
}
|
|
}
|
|
}
|
|
}
|