1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | RowLayout {
Layout.fillWidth: true
CheckBox {
checked: connection.devTypeSet
onCheckedChanged: connection.devTypeSet = checked
}
Label {text: i18n.tr("Virtual device type:")}
QQC.ComboBox {
model: [
i18n.tr("TUN"),
i18n.tr("TAP"),
]
currentIndex: connection.devType
onCurrentIndexChanged: connection.devType = currentIndex
enabled: connection.devTypeSet
Layout.fillWidth: true
}
}
|