add keyboard support to modslayer

This commit is contained in:
Cvolton 2024-06-11 00:44:14 +02:00
parent b8ae37ed06
commit 2b53e8ae7d
No known key found for this signature in database
2 changed files with 22 additions and 0 deletions
loader/src/ui/mods

View file

@ -559,6 +559,27 @@ void ModsLayer::gotoTab(ModListSource* src) {
m_lists.at(m_currentSource)->updateState();
}
void ModsLayer::keyDown(enumKeyCodes key) {
auto list = m_lists.at(m_currentSource);
switch(key) {
case KEY_Left:
case CONTROLLER_Left:
if (m_currentSource->getPageCount() && list->getPage() > 0) {
list->gotoPage(list->getPage() - 1);
}
break;
case KEY_Right:
case CONTROLLER_Right:
if (m_currentSource->getPageCount() && list->getPage() < m_currentSource->getPageCount().value() - 1) {
list->gotoPage(list->getPage() + 1);
}
break;
default:
CCLayer::keyDown(key);
}
}
void ModsLayer::keyBackClicked() {
this->onBack(nullptr);
}

View file

@ -57,6 +57,7 @@ protected:
bool init();
void keyDown(enumKeyCodes key) override;
void keyBackClicked() override;
void setIDPopupClosed(SetIDPopup*, int value) override;