mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
rename tab elements namespace
This commit is contained in:
parent
4e733d8997
commit
2986a475c1
29 changed files with 181 additions and 181 deletions
35
src/app/browser/main/tab/page.hpp
Normal file
35
src/app/browser/main/tab/page.hpp
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
#ifndef APP_BROWSER_MAIN_TAB_PAGE_HPP
|
||||
#define APP_BROWSER_MAIN_TAB_PAGE_HPP
|
||||
|
||||
#include <giomm/simpleactiongroup.h>
|
||||
#include <glibmm/refptr.h>
|
||||
#include <gtkmm/box.h>
|
||||
#include <sigc++/functors/mem_fun.h>
|
||||
|
||||
namespace app::browser::main::tab
|
||||
{
|
||||
namespace page
|
||||
{
|
||||
class Navbar;
|
||||
class Content;
|
||||
}
|
||||
|
||||
class Page : public Gtk::Box
|
||||
{
|
||||
private:
|
||||
|
||||
Glib::RefPtr<Gio::SimpleActionGroup> action_group;
|
||||
|
||||
page::Navbar * navbar;
|
||||
page::Content * content;
|
||||
|
||||
public:
|
||||
|
||||
Page();
|
||||
~Page();
|
||||
|
||||
void update();
|
||||
};
|
||||
}
|
||||
|
||||
#endif // APP_BROWSER_MAIN_TAB_PAGE_HPP
|
||||
Loading…
Add table
Add a link
Reference in a new issue