|
|
|
@ -1,3 +1,7 @@ |
|
|
|
|
|
|
|
import QtQuick 2.6 |
|
|
|
|
|
|
|
import QtQuick.Layouts 1.0 |
|
|
|
|
|
|
|
import QtQuick.Controls 2.1 |
|
|
|
|
|
|
|
|
|
|
|
import "../controls" |
|
|
|
import "../controls" |
|
|
|
|
|
|
|
|
|
|
|
WizardComponent { |
|
|
|
WizardComponent { |
|
|
|
@ -7,8 +11,17 @@ WizardComponent { |
|
|
|
wizard_data['proxy'] = pc.toProxyDict() |
|
|
|
wizard_data['proxy'] = pc.toProxyDict() |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ColumnLayout { |
|
|
|
|
|
|
|
width: parent.width |
|
|
|
|
|
|
|
spacing: constants.paddingLarge |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Label { |
|
|
|
|
|
|
|
text: qsTr('Proxy settings') |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
ProxyConfig { |
|
|
|
ProxyConfig { |
|
|
|
id: pc |
|
|
|
id: pc |
|
|
|
width: parent.width |
|
|
|
width: parent.width |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|