use gtk::Button;
pub struct Bookmark {
widget: Button,
}
impl Bookmark {
pub fn new() -> Self {
Self {
widget: Button::builder()
.icon_name("starred-symbolic")
.tooltip_text("Bookmark")
.sensitive(false)
.build(),
}
}
pub fn update(&self) {
}
pub fn widget(&self) -> &Button {
&self.widget
}
}