mirror of https://github.com/YGGverse/Yoda.git
yggverse
3 months ago
4 changed files with 36 additions and 0 deletions
@ -0,0 +1,16 @@
@@ -0,0 +1,16 @@
|
||||
#include "navbar.hpp" |
||||
|
||||
using namespace app::browser::main::tab::data; |
||||
|
||||
Navbar::Navbar() |
||||
{ |
||||
set_orientation( |
||||
Gtk::Orientation::HORIZONTAL |
||||
); |
||||
|
||||
set_homogeneous( |
||||
true |
||||
); |
||||
} |
||||
|
||||
Navbar::~Navbar() = default; |
@ -0,0 +1,18 @@
@@ -0,0 +1,18 @@
|
||||
#ifndef APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HPP |
||||
#define APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HPP |
||||
|
||||
#include <gtkmm/box.h> |
||||
|
||||
namespace app::browser::main::tab::data |
||||
{ |
||||
class Navbar : public Gtk::Box |
||||
{ |
||||
public: |
||||
|
||||
Navbar(); |
||||
|
||||
~Navbar(); |
||||
}; |
||||
} |
||||
|
||||
#endif // APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HPP
|
Loading…
Reference in new issue