|
|
|
@ -1,8 +1,9 @@
@@ -1,8 +1,9 @@
|
|
|
|
|
#ifndef APP_BROWSER_MAIN_TAB_DATA_HPP |
|
|
|
|
#define APP_BROWSER_MAIN_TAB_DATA_HPP |
|
|
|
|
|
|
|
|
|
#include <gtkmm/box.h> |
|
|
|
|
#include <giomm/simpleactiongroup.h> |
|
|
|
|
#include <glibmm/refptr.h> |
|
|
|
|
#include <gtkmm/box.h> |
|
|
|
|
#include <sigc++/functors/mem_fun.h> |
|
|
|
|
|
|
|
|
|
namespace app::browser::main::tab |
|
|
|
@ -10,6 +11,7 @@ namespace app::browser::main::tab
@@ -10,6 +11,7 @@ namespace app::browser::main::tab
|
|
|
|
|
namespace data |
|
|
|
|
{ |
|
|
|
|
class Navbar; |
|
|
|
|
class Content; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
class Data : public Gtk::Box |
|
|
|
@ -19,11 +21,11 @@ namespace app::browser::main::tab
@@ -19,11 +21,11 @@ namespace app::browser::main::tab
|
|
|
|
|
Glib::RefPtr<Gio::SimpleActionGroup> action_group; |
|
|
|
|
|
|
|
|
|
data::Navbar * navbar; |
|
|
|
|
data::Content * content; |
|
|
|
|
|
|
|
|
|
public: |
|
|
|
|
|
|
|
|
|
Data(); |
|
|
|
|
|
|
|
|
|
~Data(); |
|
|
|
|
|
|
|
|
|
void update(); |
|
|
|
|