Yoda/src/app/browser/main.cpp

43 lines
484 B
C++
Raw Normal View History

2024-08-11 22:04:34 +03:00
#include "main.hpp"
#include "main/tab.hpp"
using namespace app::browser;
Main::Main()
{
// Init container
2024-08-12 14:24:28 +03:00
set_orientation(
Gtk::Orientation::VERTICAL
);
2024-08-11 22:04:34 +03:00
set_homogeneous(
true
);
// Init tabs
tab = new main::Tab();
append(
* tab
);
}
2024-08-12 09:45:22 +03:00
Main::~Main()
{
remove(
* tab
);
delete tab;
tab = nullptr;
}
2024-08-11 22:04:34 +03:00
void Main::tabAppend()
{
tab->append(
nullptr,
true,
true
);
};