draft main tab features

This commit is contained in:
yggverse 2024-08-11 22:04:34 +03:00
parent aa4b15076b
commit ee890b9859
11 changed files with 142 additions and 27 deletions

View file

@ -1,41 +0,0 @@
#ifndef APP_BROWSER_PAGE_H
#define APP_BROWSER_PAGE_H
#include <gtkmm/notebook.h>
namespace app::browser
{
class Page : public Gtk::Notebook
{
public:
const bool SCROLLABLE = true;
const bool REORDERABLE = true;
class Navbar
{
public:
Navbar();
};
class Body
{
public:
Body();
};
Page();
void append(
char* request,
bool open = true,
bool focus = false
);
void update();
};
}
#endif // APP_BROWSER_PAGE_H