draft tab actions

This commit is contained in:
yggverse 2024-08-14 07:56:34 +03:00
parent ebd2b843a4
commit 579ebfa037
4 changed files with 72 additions and 14 deletions

View file

@ -2,6 +2,8 @@
#define APP_BROWSER_MAIN_TAB_DATA_HPP
#include <gtkmm/box.h>
#include <giomm/simpleactiongroup.h>
#include <sigc++/functors/mem_fun.h>
namespace app::browser::main::tab
{
@ -14,6 +16,8 @@ namespace app::browser::main::tab
{
private:
Glib::RefPtr<Gio::SimpleActionGroup> action_group;
data::Navbar * navbar;
public:
@ -21,6 +25,8 @@ namespace app::browser::main::tab
Data();
~Data();
void update();
};
}