pub trait GtkSocketExt: 'static {
    fn add_id(&self, window: Window);
    fn get_id(&self) -> Window;
    fn get_plug_window(&self) -> Option<Window>;
    fn connect_plug_added<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_plug_removed<F: Fn(&Self) -> bool + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors