init main tab container

This commit is contained in:
yggverse 2024-09-18 22:07:52 +03:00
parent 9550e6f795
commit 9039c7b2c9
2 changed files with 16 additions and 1 deletions

View File

@ -1,8 +1,17 @@
#[path = "main/tab.rs"] mod tab;
use gtk::Box;
use gtk::prelude::BoxExt;
pub fn new() -> Box
{
return Box::builder().orientation(
let main = Box::builder().orientation(
gtk::Orientation::Vertical
).build();
main.append(
&tab::new()
);
return main;
}

View File

@ -0,0 +1,6 @@
use gtk::Notebook;
pub fn new() -> Notebook
{
return Notebook::builder().build();
}