mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
init main tab container
This commit is contained in:
parent
9550e6f795
commit
9039c7b2c9
@ -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;
|
||||
}
|
6
src/app/browser/main/tab.rs
Normal file
6
src/app/browser/main/tab.rs
Normal file
@ -0,0 +1,6 @@
|
||||
use gtk::Notebook;
|
||||
|
||||
pub fn new() -> Notebook
|
||||
{
|
||||
return Notebook::builder().build();
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user