ミラー元
https://github.com/Dejvino/lilybook.git
前回の同期 2025-07-03 18:02:23 +00:00
23 行
479 B
C++
23 行
479 B
C++
#include "AppMode.h"
|
|
#include "reader/Typesetter.h"
|
|
#include "reader/TextStorage.h"
|
|
#include "reader/PagePrinter.h"
|
|
|
|
class ReaderMode : public AppMode
|
|
{
|
|
public:
|
|
virtual void start();
|
|
virtual void loop();
|
|
virtual void finish();
|
|
|
|
private:
|
|
long bookmark = 0;
|
|
long bookmark_max = 0;
|
|
Typesetter typesetter;
|
|
PagePrinter pagePrinter;
|
|
TextStorage textStorage;
|
|
TextReader* textReader = NULL;
|
|
Page* pageLast = NULL;
|
|
Page* pageCurrent = NULL;
|
|
};
|