Some next TinyDB Screen work.

To-Do: Figure out how to handle that info stuff from the arrays.
This commit is contained in:
VoltZ
2019-11-12 17:45:00 +01:00
parent 9100258f9e
commit 1a50afbbed
7 changed files with 207 additions and 5 deletions
+8
View File
@@ -34,8 +34,16 @@ class TinyDB : public Screen
public:
void Draw(void) const override;
void Logic(u32 hDown, u32 hHeld, touchPosition touch) override;
TinyDB();
private:
void execute();
mutable int selection = 0;
int screenPos = 0;
int listMode = 0;
mutable int screenPosList = 0;
int keyRepeatDelay = 0;
int fastMode = false;
};
#endif