#pragma once #include class ReaderView : public Gtk::Frame { public: ReaderView(); virtual ~ReaderView(); void setChapter(unsigned int chapter); unsigned int getChapter(void); unsigned int getChapterMax(void); void setBook(std::string book); std::string getBook(void); std::string getBookFull(void); std::vector getAllBooks(void); void refresh(void); protected: Gtk::TextView text; };