2022-12-30 22:21:22 +01:00
|
|
|
import QtQuick 2.6
|
|
|
|
|
import QtQuick.Layouts 1.0
|
|
|
|
|
import QtQuick.Controls 2.1
|
|
|
|
|
|
2022-07-21 16:01:31 +02:00
|
|
|
import "../controls"
|
2022-03-11 15:44:08 +01:00
|
|
|
|
|
|
|
|
WizardComponent {
|
|
|
|
|
valid: true
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
Label {
|
|
|
|
|
text: qsTr('Proxy settings')
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
}
|