aboutsummaryrefslogtreecommitdiff
path: root/src/header.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/header.h')
-rw-r--r--src/header.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/header.h b/src/header.h
new file mode 100644
index 0000000..fd88fe5
--- /dev/null
+++ b/src/header.h
@@ -0,0 +1,31 @@
+#pragma once
+#include <gtkmm.h>
+
+class Mods;
+class ReaderView;
+
+class Header : public Gtk::HeaderBar
+{
+public:
+ Header(ReaderView *reader, Gtk::Window *window);
+ virtual ~Header();
+
+ void updateButtons(void);
+ void updateMenus(void);
+ ReaderView *reader;
+ void showMods(void);
+ void showText(void);
+
+protected:
+ //Buttons
+ Gtk::Button back;
+ Gtk::Button forward;
+ Gtk::MenuButton book;
+ Gtk::MenuButton menu;
+ //Menus
+ Gtk::PopoverMenu bookMenu;
+ Gtk::PopoverMenu menuMenu;
+
+ Mods *mods;
+ Gtk::Window *window;
+};