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

@ -11,8 +11,19 @@ namespace lib
namespace app
{
namespace browser
{
class Header;
class Main;
}
class Browser : public Gtk::ApplicationWindow
{
private:
app::browser::Header * header;
app::browser::Main * main;
public:
const char * TITLE = _("Yoda");
@ -24,6 +35,8 @@ namespace app
const lib::Database & db
);
void mainTabAppend();
void debug();
};
}