mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
init base button class
This commit is contained in:
parent
3136b0b21c
commit
940c98f3c6
6 changed files with 59 additions and 0 deletions
|
|
@ -1,9 +1,11 @@
|
|||
#include "navbar.hpp"
|
||||
#include "navbar/base.hpp"
|
||||
|
||||
using namespace app::browser::main::tab::data;
|
||||
|
||||
Navbar::Navbar()
|
||||
{
|
||||
// Init container
|
||||
set_orientation(
|
||||
Gtk::Orientation::HORIZONTAL
|
||||
);
|
||||
|
|
@ -11,6 +13,13 @@ Navbar::Navbar()
|
|||
set_homogeneous(
|
||||
true
|
||||
);
|
||||
|
||||
// Init elements
|
||||
base = new navbar::Base();
|
||||
|
||||
append(
|
||||
* base
|
||||
);
|
||||
}
|
||||
|
||||
Navbar::~Navbar() = default;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue