- Fix device freeze at end-of-book by deferring EndOfBookMenuActivity creation from render() to loop() (avoids RenderLock deadlock) in EpubReaderActivity and XtcReaderActivity - Add initialSkipRelease to BookManageMenuActivity to prevent stale Confirm release from triggering actions when opened via long-press - Add initialSkipRelease to MyLibraryActivity for long-press Browse Files -> archive navigation - Thread skip-release through HomeActivity callback and main.cpp - Fix HomeActivity stale cover buffer after archive/delete by fully resetting render state (freeCoverBuffer, firstRenderDone, etc.) - Swap short/long-press actions in .archive context: short-press opens manage menu, long-press unarchives and opens the book - Add deferred open pattern (pendingOpenPath) to wait for Confirm release before navigating to reader after unarchive - Add BookManager::cleanupEmptyArchiveDirs() to remove empty parent directories after unarchive/delete inside .archive - Add optional unarchivedPath output parameter to BookManager::unarchiveBook - Restyle EndOfBookMenuActivity to standard list layout with proper header, margins, and button hints matching other screens - Change EndOfBookMenuActivity back button hint to "« Back" - Add Table of Contents option to EndOfBookMenuActivity Co-authored-by: Cursor <cursoragent@cursor.com>
65 lines
2.7 KiB
C++
65 lines
2.7 KiB
C++
#pragma once
|
|
#include <functional>
|
|
#include <vector>
|
|
|
|
#include "../ActivityWithSubactivity.h"
|
|
#include "./MyLibraryActivity.h"
|
|
#include "util/ButtonNavigator.h"
|
|
|
|
struct RecentBook;
|
|
struct Rect;
|
|
|
|
class HomeActivity final : public ActivityWithSubactivity {
|
|
ButtonNavigator buttonNavigator;
|
|
int selectorIndex = 0;
|
|
bool recentsLoading = false;
|
|
bool recentsLoaded = false;
|
|
bool firstRenderDone = false;
|
|
bool hasOpdsUrl = false;
|
|
bool coverRendered = false; // Track if cover has been rendered once
|
|
bool coverBufferStored = false; // Track if cover buffer is stored
|
|
uint8_t* coverBuffer = nullptr; // HomeActivity's own buffer for cover image
|
|
std::vector<RecentBook> recentBooks;
|
|
|
|
// Long-press state
|
|
bool ignoreNextConfirmRelease = false;
|
|
static constexpr unsigned long LONG_PRESS_MS = 700;
|
|
|
|
const std::function<void(const std::string& path)> onSelectBook;
|
|
const std::function<void()> onMyLibraryOpen;
|
|
const std::function<void(const std::string& path, bool initialSkipRelease)> onMyLibraryOpenWithPath;
|
|
const std::function<void()> onRecentsOpen;
|
|
const std::function<void()> onSettingsOpen;
|
|
const std::function<void()> onFileTransferOpen;
|
|
const std::function<void()> onOpdsBrowserOpen;
|
|
|
|
int getMenuItemCount() const;
|
|
bool storeCoverBuffer(); // Store frame buffer for cover image
|
|
bool restoreCoverBuffer(); // Restore frame buffer from stored cover
|
|
void freeCoverBuffer(); // Free the stored cover buffer
|
|
void loadRecentBooks(int maxBooks);
|
|
void loadRecentCovers(int coverHeight);
|
|
void openManageMenu(const std::string& bookPath);
|
|
|
|
public:
|
|
explicit HomeActivity(GfxRenderer& renderer, MappedInputManager& mappedInput,
|
|
const std::function<void(const std::string& path)>& onSelectBook,
|
|
const std::function<void()>& onMyLibraryOpen,
|
|
const std::function<void(const std::string& path, bool initialSkipRelease)>& onMyLibraryOpenWithPath,
|
|
const std::function<void()>& onRecentsOpen,
|
|
const std::function<void()>& onSettingsOpen, const std::function<void()>& onFileTransferOpen,
|
|
const std::function<void()>& onOpdsBrowserOpen)
|
|
: ActivityWithSubactivity("Home", renderer, mappedInput),
|
|
onSelectBook(onSelectBook),
|
|
onMyLibraryOpen(onMyLibraryOpen),
|
|
onMyLibraryOpenWithPath(onMyLibraryOpenWithPath),
|
|
onRecentsOpen(onRecentsOpen),
|
|
onSettingsOpen(onSettingsOpen),
|
|
onFileTransferOpen(onFileTransferOpen),
|
|
onOpdsBrowserOpen(onOpdsBrowserOpen) {}
|
|
void onEnter() override;
|
|
void onExit() override;
|
|
void loop() override;
|
|
void render(Activity::RenderLock&&) override;
|
|
};
|