mirror of
https://github.com/outbackdingo/amnezia-client.git
synced 2026-01-27 02:18:09 +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>
148 lines
4.0 KiB
QML
148 lines
4.0 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import "../Controls2"
|
|
import "../Controls2/TextTypes"
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
import InstalledAppsModel 1.0
|
|
import Style 1.0
|
|
|
|
DrawerType2 {
|
|
id: root
|
|
|
|
anchors.fill: parent
|
|
expandedHeight: parent.height * 0.9
|
|
|
|
onAboutToShow: {
|
|
PageController.showBusyIndicator(true)
|
|
installedAppsModel.updateModel()
|
|
PageController.showBusyIndicator(false)
|
|
}
|
|
|
|
InstalledAppsModel {
|
|
id: installedAppsModel
|
|
}
|
|
|
|
expandedStateContent: Item {
|
|
id: container
|
|
|
|
implicitHeight: expandedHeight
|
|
|
|
ColumnLayout {
|
|
id: backButton
|
|
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.bottom: searchField.top
|
|
anchors.topMargin: 16
|
|
|
|
BackButtonType {
|
|
backButtonImage: "qrc:/images/controls/arrow-left.svg"
|
|
backButtonFunction: function() {
|
|
root.closeTriggered()
|
|
}
|
|
}
|
|
|
|
Header2Type {
|
|
id: header
|
|
Layout.fillWidth: true
|
|
Layout.topMargin: 16
|
|
Layout.rightMargin: 16
|
|
Layout.leftMargin: 16
|
|
|
|
headerText: qsTr("Choose application")
|
|
}
|
|
|
|
ListViewType {
|
|
id: listView
|
|
|
|
Layout.fillWidth: true
|
|
Layout.fillHeight: true
|
|
Layout.topMargin: 16
|
|
Layout.rightMargin: 16
|
|
Layout.leftMargin: 16
|
|
|
|
model: SortFilterProxyModel {
|
|
id: proxyInstalledAppsModel
|
|
sourceModel: installedAppsModel
|
|
filters: RegExpFilter {
|
|
roleName: "appName"
|
|
pattern: ".*" + searchField.textField.text + ".*"
|
|
caseSensitivity: Qt.CaseInsensitive
|
|
}
|
|
}
|
|
|
|
ButtonGroup {
|
|
id: buttonGroup
|
|
}
|
|
|
|
delegate: ColumnLayout {
|
|
width: listView.width
|
|
|
|
RowLayout {
|
|
CheckBoxType {
|
|
Layout.fillWidth: true
|
|
|
|
text: appName
|
|
checked: isAppSelected
|
|
onCheckedChanged: {
|
|
installedAppsModel.selectedStateChanged(proxyInstalledAppsModel.mapToSource(index), checked)
|
|
}
|
|
}
|
|
|
|
Image {
|
|
source: "image://installedAppImage/" + appIcon
|
|
|
|
sourceSize.width: 24
|
|
sourceSize.height: 24
|
|
|
|
Layout.rightMargin: 48
|
|
}
|
|
}
|
|
|
|
DividerType {}
|
|
}
|
|
}
|
|
}
|
|
|
|
TextFieldWithHeaderType {
|
|
id: searchField
|
|
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.bottom: addButton.top
|
|
anchors.bottomMargin: 16
|
|
anchors.rightMargin: 16
|
|
anchors.leftMargin: 16
|
|
|
|
backgroundColor: AmneziaStyle.color.slateGray
|
|
|
|
textField.placeholderText: qsTr("application name")
|
|
}
|
|
|
|
BasicButtonType {
|
|
id: addButton
|
|
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
anchors.bottom: parent.bottom
|
|
anchors.bottomMargin: 16
|
|
anchors.rightMargin: 16
|
|
anchors.leftMargin: 16
|
|
|
|
text: qsTr("Add selected")
|
|
|
|
clickedFunc: function() {
|
|
PageController.showBusyIndicator(true)
|
|
AppSplitTunnelingController.addApps(installedAppsModel.getSelectedAppsInfo())
|
|
PageController.showBusyIndicator(false)
|
|
root.closeTriggered()
|
|
}
|
|
}
|
|
}
|
|
}
|