mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
36 lines
758 B
C++
36 lines
758 B
C++
#ifndef _WORD_WRAP_VIEW_H_
|
|
#define _WORD_WRAP_VIEW_H_
|
|
|
|
#include <apps/global_preferences.h>
|
|
#include <escher.h>
|
|
|
|
namespace Reader
|
|
{
|
|
|
|
struct BookSave {
|
|
int offset;
|
|
KDColor color;
|
|
};
|
|
|
|
class WordWrapTextView : public PointerTextView {
|
|
public:
|
|
WordWrapTextView();
|
|
void drawRect(KDContext * ctx, KDRect rect) const override;
|
|
void setText(const char*, int length);
|
|
void nextPage();
|
|
void previousPage();
|
|
BookSave getBookSave() const;
|
|
void setBookSave(BookSave save);
|
|
private:
|
|
bool updateTextColorForward(const char * colorStart) const;
|
|
bool updateTextColorBackward(const char * colorStart) const;
|
|
static const int k_margin = 10;
|
|
int m_pageOffset;
|
|
mutable int m_nextPageOffset;
|
|
int m_length;
|
|
mutable KDColor m_textColor;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |