mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 01:01:00 -04:00
add keyboard support to modslayer
This commit is contained in:
parent
b8ae37ed06
commit
2b53e8ae7d
2 changed files with 22 additions and 0 deletions
loader/src/ui/mods
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -57,6 +57,7 @@ protected:
|
|||
|
||||
bool init();
|
||||
|
||||
void keyDown(enumKeyCodes key) override;
|
||||
void keyBackClicked() override;
|
||||
void setIDPopupClosed(SetIDPopup*, int value) override;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue