Browse: Home and End move to 1st and last entry
This commit is contained in:
parent
b3cdf92238
commit
792c259714
3 changed files with 29 additions and 6 deletions
|
@ -350,6 +350,7 @@ bool FileBrowser::BrowsableList::CheckBrowseNavigation()
|
||||||
{
|
{
|
||||||
dirty |= views[index].CheckBrowseNavigation(index != 0);
|
dirty |= views[index].CheckBrowseNavigation(index != 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
// check for keys a-z
|
// check for keys a-z
|
||||||
if (inputMappings->BrowseLetter())
|
if (inputMappings->BrowseLetter())
|
||||||
{
|
{
|
||||||
|
@ -389,7 +390,18 @@ bool FileBrowser::BrowsableList::CheckBrowseNavigation()
|
||||||
dirty |= 1;
|
dirty |= 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (inputMappings->BrowseHome())
|
||||||
|
{
|
||||||
|
currentIndex = 0;
|
||||||
|
SetCurrent();
|
||||||
|
dirty |= 1;
|
||||||
|
}
|
||||||
|
else if (inputMappings->BrowseEnd())
|
||||||
|
{
|
||||||
|
currentIndex = numberOfEntriesMinus1;
|
||||||
|
SetCurrent();
|
||||||
|
dirty |= 1;
|
||||||
|
}
|
||||||
return dirty;
|
return dirty;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -152,7 +152,6 @@ bool InputMappings::CheckKeyboardBrowseMode()
|
||||||
|
|
||||||
keyboardFlags = 0;
|
keyboardFlags = 0;
|
||||||
|
|
||||||
// TODO: add KEY_HOME and KEY_END
|
|
||||||
if (keyboard->KeyHeld(KEY_ESC))
|
if (keyboard->KeyHeld(KEY_ESC))
|
||||||
SetKeyboardFlag(ESC_FLAG);
|
SetKeyboardFlag(ESC_FLAG);
|
||||||
else if (keyboard->KeyHeld(KEY_ENTER))
|
else if (keyboard->KeyHeld(KEY_ENTER))
|
||||||
|
@ -181,10 +180,10 @@ bool InputMappings::CheckKeyboardBrowseMode()
|
||||||
else
|
else
|
||||||
SetKeyboardFlag(PAGEDOWN_FLAG);
|
SetKeyboardFlag(PAGEDOWN_FLAG);
|
||||||
}
|
}
|
||||||
//else if (keyboard->KeyHeld(KEY_HOME))
|
else if (keyboard->KeyHeld(KEY_HOME))
|
||||||
// SetKeyboardFlag(PAGEUP_LCD_FLAG);
|
SetKeyboardFlag(HOME_FLAG);
|
||||||
//else if (keyboard->KeyHeld(KEY_END))
|
else if (keyboard->KeyHeld(KEY_END))
|
||||||
// SetKeyboardFlag(PAGEDOWN_LCD_FLAG);
|
SetKeyboardFlag(END_FLAG);
|
||||||
else if (keyboard->KeyHeld(KEY_N) && keyboard->KeyEitherAlt() )
|
else if (keyboard->KeyHeld(KEY_N) && keyboard->KeyEitherAlt() )
|
||||||
SetKeyboardFlag(NEWD64_FLAG);
|
SetKeyboardFlag(NEWD64_FLAG);
|
||||||
else if (keyboard->KeyHeld(KEY_A) && keyboard->KeyEitherAlt() )
|
else if (keyboard->KeyHeld(KEY_A) && keyboard->KeyEitherAlt() )
|
||||||
|
|
|
@ -42,6 +42,8 @@
|
||||||
#define FAKERESET_FLAG (1 << 16)
|
#define FAKERESET_FLAG (1 << 16)
|
||||||
#define WRITEPROTECT_FLAG (1 << 17)
|
#define WRITEPROTECT_FLAG (1 << 17)
|
||||||
#define LETTER_FLAG (1 << 18)
|
#define LETTER_FLAG (1 << 18)
|
||||||
|
#define HOME_FLAG (1 << 19)
|
||||||
|
#define END_FLAG (1 << 20)
|
||||||
// dont exceed 32!!
|
// dont exceed 32!!
|
||||||
|
|
||||||
const unsigned NumberKeys[33] =
|
const unsigned NumberKeys[33] =
|
||||||
|
@ -208,6 +210,16 @@ public:
|
||||||
return KeyboardFlag(LETTER_FLAG);
|
return KeyboardFlag(LETTER_FLAG);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline bool BrowseHome()
|
||||||
|
{
|
||||||
|
return KeyboardFlag(HOME_FLAG);
|
||||||
|
}
|
||||||
|
|
||||||
|
inline bool BrowseEnd()
|
||||||
|
{
|
||||||
|
return KeyboardFlag(END_FLAG);
|
||||||
|
}
|
||||||
|
|
||||||
inline unsigned getKeyboardNumber() { return keyboardNumber; }
|
inline unsigned getKeyboardNumber() { return keyboardNumber; }
|
||||||
inline char getKeyboardLetter() { return (char) keyboardLetter; }
|
inline char getKeyboardLetter() { return (char) keyboardLetter; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue