31 lines
560 B
QML
31 lines
560 B
QML
import QtQuick 2.6
|
|
import QtQuick.Layouts 1.0
|
|
import QtQuick.Controls 2.1
|
|
|
|
import "../controls"
|
|
|
|
WizardComponent {
|
|
valid: true
|
|
last: true
|
|
|
|
function apply() {
|
|
wizard_data['autoconnect'] = !sc.auto_connect
|
|
wizard_data['server'] = sc.address
|
|
}
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
spacing: constants.paddingLarge
|
|
|
|
Label {
|
|
text: qsTr('Server settings')
|
|
}
|
|
|
|
ServerConfig {
|
|
id: sc
|
|
width: parent.width
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|
|
}
|