170 lines
4.8 KiB
QML
170 lines
4.8 KiB
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import QtQuick.Layouts
|
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
import PageEnum 1.0
|
|
import ProtocolEnum 1.0
|
|
|
|
import "../Controls2"
|
|
import "../Controls2/TextTypes"
|
|
|
|
|
|
ListView {
|
|
id: menuContent
|
|
|
|
property var rootWidth
|
|
property var selectedText
|
|
|
|
property bool a: true
|
|
|
|
width: rootWidth
|
|
height: contentItem.height // TODO: It should be fixed size, not content item height
|
|
|
|
clip: true
|
|
// interactive: false
|
|
|
|
// property FlickableType parentFlickable
|
|
// property var lastItemTabClicked
|
|
|
|
// property int currentFocusIndex: 0
|
|
|
|
snapMode: ListView.SnapToItem
|
|
|
|
// ScrollBar.vertical: ScrollBar {}
|
|
|
|
property bool isFocusable: true
|
|
|
|
Keys.onTabPressed: {
|
|
console.debug("--> Tab is pressed on HomeContainersListView: ", objectName)
|
|
FocusController.nextKeyTabItem()
|
|
}
|
|
|
|
Keys.onBacktabPressed: {
|
|
console.debug("--> Shift+Tab is pressed on HomeContainersListView: ", objectName)
|
|
FocusController.previousKeyTabItem()
|
|
}
|
|
|
|
Keys.onRightPressed: {
|
|
FocusController.nextKeyTabItem()
|
|
}
|
|
|
|
Keys.onLeftPressed: {
|
|
FocusController.previousKeyTabItem()
|
|
}
|
|
|
|
// activeFocusOnTab: true
|
|
// onActiveFocusChanged: {
|
|
// console.log("===========================")
|
|
// positionViewAtEnd()
|
|
// parentFlickable.ensureVisible(this.itemAtIndex(6))
|
|
// if (activeFocus) {
|
|
// this.currentFocusIndex = 0
|
|
// this.itemAtIndex(currentFocusIndex).forceActiveFocus()
|
|
// }
|
|
// }
|
|
|
|
// Keys.onTabPressed: {
|
|
// if (currentFocusIndex < this.count - 1) {
|
|
// currentFocusIndex += 1
|
|
// this.itemAtIndex(currentFocusIndex).forceActiveFocus()
|
|
// } else {
|
|
// currentFocusIndex = 0
|
|
// if (lastItemTabClicked && typeof lastItemTabClicked === "function") {
|
|
// lastItemTabClicked()
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
// onVisibleChanged: {
|
|
// if (visible) {
|
|
// currentFocusIndex = 0
|
|
// focusItem.forceActiveFocus()
|
|
// }
|
|
// }
|
|
|
|
// Item {
|
|
// id: focusItem
|
|
// }
|
|
|
|
// onCurrentFocusIndexChanged: {
|
|
// if (parentFlickable) {
|
|
// parentFlickable.ensureVisible(this.itemAtIndex(currentFocusIndex))
|
|
// }
|
|
// }
|
|
|
|
ButtonGroup {
|
|
id: containersRadioButtonGroup
|
|
}
|
|
|
|
delegate: Item {
|
|
implicitWidth: rootWidth
|
|
implicitHeight: content.implicitHeight
|
|
|
|
ColumnLayout {
|
|
id: content
|
|
|
|
anchors.fill: parent
|
|
anchors.rightMargin: 16
|
|
anchors.leftMargin: 16
|
|
|
|
VerticalRadioButton {
|
|
id: containerRadioButton
|
|
|
|
Layout.fillWidth: true
|
|
|
|
text: name
|
|
descriptionText: description
|
|
|
|
ButtonGroup.group: containersRadioButtonGroup
|
|
|
|
imageSource: "qrc:/images/controls/download.svg"
|
|
showImage: !isInstalled
|
|
|
|
checkable: isInstalled && !ConnectionController.isConnected
|
|
checked: proxyDefaultServerContainersModel.mapToSource(index) === ServersModel.getDefaultServerData("defaultContainer")
|
|
|
|
onClicked: {
|
|
if (ConnectionController.isConnected && isInstalled) {
|
|
PageController.showNotificationMessage(qsTr("Unable change protocol while there is an active connection"))
|
|
return
|
|
}
|
|
|
|
if (checked) {
|
|
containersDropDown.closeTriggered() // TODO: containersDropDown is outside this file
|
|
ServersModel.setDefaultContainer(ServersModel.defaultIndex, proxyDefaultServerContainersModel.mapToSource(index))
|
|
} else {
|
|
ContainersModel.setProcessedContainerIndex(proxyDefaultServerContainersModel.mapToSource(index))
|
|
InstallController.setShouldCreateServer(false)
|
|
PageController.goToPage(PageEnum.PageSetupWizardProtocolSettings)
|
|
containersDropDown.closeTriggered()
|
|
}
|
|
}
|
|
|
|
MouseArea {
|
|
anchors.fill: containerRadioButton
|
|
cursorShape: Qt.PointingHandCursor
|
|
enabled: false
|
|
}
|
|
|
|
Keys.onEnterPressed: {
|
|
if (checkable) {
|
|
checked = true
|
|
}
|
|
containerRadioButton.clicked()
|
|
}
|
|
Keys.onReturnPressed: {
|
|
if (checkable) {
|
|
checked = true
|
|
}
|
|
containerRadioButton.clicked()
|
|
}
|
|
}
|
|
|
|
DividerType {
|
|
Layout.fillWidth: true
|
|
}
|
|
}
|
|
}
|
|
}
|