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

@ -0,0 +1,22 @@
#include "tab.hpp"
#include "gtkmm/label.h"
using namespace app::browser::main;
Tab::Tab()
{
set_scrollable(
SCROLLABLE
);
}
void Tab::append(
const char * request,
bool open,
bool focus
) {
append_page( // @TODO
* new Gtk::Label("data"),
* new Gtk::Label("tab")
);
};