Yoda/src/app/browser/main.rs

17 lines
254 B
Rust
Raw Normal View History

2024-09-18 22:07:52 +03:00
#[path = "main/tab.rs"] mod tab;
2024-09-18 20:33:29 +03:00
use gtk::Box;
2024-09-18 22:07:52 +03:00
use gtk::prelude::BoxExt;
2024-09-18 20:33:29 +03:00
pub fn new() -> Box
{
2024-09-18 22:07:52 +03:00
let main = Box::builder().orientation(
2024-09-18 20:33:29 +03:00
gtk::Orientation::Vertical
).build();
2024-09-18 22:07:52 +03:00
main.append(
&tab::new()
);
return main;
2024-09-18 20:33:29 +03:00
}