init update navigation button

This commit is contained in:
yggverse 2024-08-13 09:05:59 +03:00
parent bc73c831c1
commit fb54cc4431
7 changed files with 76 additions and 9 deletions

View file

@ -8,13 +8,20 @@ namespace app::browser::main::tab::data
namespace navbar
{
class Base;
class Update;
}
class Navbar : public Gtk::Box
{
private:
// Defaults
const int SPACING = 8;
const int MARGIN = 8;
// Components
navbar::Base * base;
navbar::Update * update;
public: