mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
draft main tab features
This commit is contained in:
parent
aa4b15076b
commit
ee890b9859
11 changed files with 142 additions and 27 deletions
28
src/app/browser/main.cpp
Normal file
28
src/app/browser/main.cpp
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
#include "main.hpp"
|
||||
#include "main/tab.hpp"
|
||||
|
||||
using namespace app::browser;
|
||||
|
||||
Main::Main()
|
||||
{
|
||||
// Init container
|
||||
set_homogeneous(
|
||||
true
|
||||
);
|
||||
|
||||
// Init tabs
|
||||
tab = new main::Tab();
|
||||
|
||||
append(
|
||||
* tab
|
||||
);
|
||||
}
|
||||
|
||||
void Main::tabAppend()
|
||||
{
|
||||
tab->append(
|
||||
nullptr,
|
||||
true,
|
||||
true
|
||||
);
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue