Yoda 0.3.0

Yoda - Browser for Gemini protocol
use gtk::Button;

pub struct Bookmark {
    widget: Button,
}

impl Bookmark {
    // Construct
    pub fn new() -> Self {
        Self {
            widget: Button::builder()
                .icon_name("starred-symbolic")
                .tooltip_text("Bookmark")
                .sensitive(false)
                .build(),
        }
    }

    // Actions
    pub fn update(&self) {
        // @TODO
    }

    // Getters
    pub fn widget(&self) -> &Button {
        &self.widget
    }
}