Add navigation option

This commit is contained in:
jpirnay
2026-05-23 19:49:38 +02:00
parent 3671bdba0b
commit 0f91bdaf78
6 changed files with 335 additions and 7 deletions
+5 -1
View File
@@ -42,6 +42,10 @@ struct PercentResult {
int percent = 0;
};
struct PrintedPageResult {
std::string label;
};
struct PageResult {
uint32_t page = 0;
};
@@ -76,7 +80,7 @@ struct StarredPageResult {
using ResultVariant =
std::variant<std::monostate, WifiResult, KeyboardResult, MenuResult, ChapterResult, PercentResult, PageResult,
SyncResult, NetworkModeResult, FootnoteResult, FilePathResult, StarredPageResult>;
SyncResult, NetworkModeResult, FootnoteResult, FilePathResult, StarredPageResult, PrintedPageResult>;
struct ActivityResult {
bool isCancelled = false;