aboutsummaryrefslogtreecommitdiff
path: root/readerview.h
diff options
context:
space:
mode:
Diffstat (limited to 'readerview.h')
-rw-r--r--readerview.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/readerview.h b/readerview.h
deleted file mode 100644
index 0ea631e..0000000
--- a/readerview.h
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma once
-#include <gtkmm.h>
-
-class Sword;
-
-class ReaderView : public Gtk::Frame
-{
-public:
- ReaderView();
- virtual ~ReaderView();
-
- void setChapter(int chapter);
- int getChapter(void);
- int getChapterMax(void);
- void setBook(std::string book);
- std::string getBook(void);
- std::string getBookFull(void);
- std::vector<std::string> getAllBooks(void);
-
- void setVersion(std::string version);
- std::string getVersion(void);
- std::vector<std::string> getAllVersions(void);
-
- void refresh(void);
-
- std::vector<std::string> modsUpdated(void);
-
-protected:
- Sword *sword;
- Gtk::TextView text;
- struct config *conf;
-};