mod widget;
use widget::Widget;
use gtk::prelude::IsA;
use std::rc::Rc;
pub struct Unsupported {
widget: Rc<Widget>,
}
impl Unsupported {
pub fn new() -> Self {
Self {
widget: Rc::new(Widget::new()),
}
}
pub fn present(&self, parent: Option<&impl IsA<gtk::Widget>>) {
self.widget.present(parent)
}
}