init tab class

This commit is contained in:
yggverse 2024-08-05 03:52:02 +03:00
parent 3e24a6fb72
commit 3bcffc4326
5 changed files with 90 additions and 0 deletions

View file

@ -1,22 +1,36 @@
#ifndef APP_BROWSER_CONTAINER_H
#define APP_BROWSER_CONTAINER_H
// Dependencies
#include "../browser.h"
// Requirements
#include "container/tab.h"
namespace app
{
class Browser;
namespace browser
{
namespace container
{
class Tab;
}
class Container
{
public:
// GTK
GtkWidget *gtk;
// Defaults
const gint SPACING = 0;
// Requirements
container::Tab *tab;
Container(
Browser *browser
);