mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-12 22:47:15 +00:00
27 lines
530 B
QML
27 lines
530 B
QML
import QtQuick 2.0
|
|
import QtQuick.Controls 2.2
|
|
|
|
ItemDelegate {
|
|
property GridView grid
|
|
|
|
highlighted: grid.activeFocus && grid.currentItem === this
|
|
|
|
Keys.onLeftPressed: {
|
|
grid.moveCurrentIndexLeft()
|
|
}
|
|
Keys.onRightPressed: {
|
|
grid.moveCurrentIndexRight()
|
|
}
|
|
Keys.onDownPressed: {
|
|
grid.moveCurrentIndexDown()
|
|
}
|
|
Keys.onUpPressed: {
|
|
grid.moveCurrentIndexUp()
|
|
}
|
|
Keys.onReturnPressed: {
|
|
clicked()
|
|
}
|
|
Keys.onEnterPressed: {
|
|
clicked()
|
|
}
|
|
}
|