2023-07-17 10:49:06 +02:00
|
|
|
import QtQuick
|
|
|
|
|
import QtQuick.Layouts
|
|
|
|
|
import QtQuick.Controls
|
2022-12-30 22:21:22 +01:00
|
|
|
|
2022-07-21 16:01:31 +02:00
|
|
|
import "../controls"
|
2022-03-11 15:44:08 +01:00
|
|
|
|
|
|
|
|
WizardComponent {
|
|
|
|
|
valid: true
|
2023-12-11 15:17:45 +01:00
|
|
|
title: qsTr('Proxy')
|
2022-03-11 15:44:08 +01:00
|
|
|
|
2022-10-24 13:04:46 +02:00
|
|
|
function apply() {
|
2022-08-24 16:01:50 +02:00
|
|
|
wizard_data['proxy'] = pc.toProxyDict()
|
2022-03-11 15:44:08 +01:00
|
|
|
}
|
|
|
|
|
|
2022-12-30 22:21:22 +01:00
|
|
|
ColumnLayout {
|
2022-03-11 15:44:08 +01:00
|
|
|
width: parent.width
|
2022-12-30 22:21:22 +01:00
|
|
|
spacing: constants.paddingLarge
|
|
|
|
|
|
|
|
|
|
ProxyConfig {
|
|
|
|
|
id: pc
|
2023-03-16 15:42:24 +01:00
|
|
|
Layout.fillWidth: true
|
|
|
|
|
proxy_enabled: true
|
2022-12-30 22:21:22 +01:00
|
|
|
}
|
2022-03-11 15:44:08 +01:00
|
|
|
}
|
|
|
|
|
}
|