Yoda 0.1.0

Yoda - Browser for Gemini protocol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[path = "browser/header.rs"] mod header;
#[path = "browser/main.rs"] mod main;

use gtk4 as gtk;
use gtk::{Application, ApplicationWindow};

pub fn new(app: &Application) -> ApplicationWindow
{
    return ApplicationWindow::builder().application(app)
                                       .default_width(640)
                                       .default_height(480)
                                     //.titlebar(&header::new())
                                       .child(&main::new())
                                       .build();
}