pub trait FrameHeaderExt: 'static {
    // Required methods
    fn add_prefix(&self, priority: i32, child: &impl IsA<Widget>);
    fn add_suffix(&self, priority: i32, child: &impl IsA<Widget>);
    fn can_drop(&self, widget: &impl IsA<Widget>) -> bool;
    fn frame(&self) -> Option<Frame>;
    fn page_changed(&self, widget: Option<&impl IsA<Widget>>);
    fn set_frame(&self, frame: Option<&impl IsA<Frame>>);
    fn connect_frame_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

source

fn add_prefix(&self, priority: i32, child: &impl IsA<Widget>)

source

fn add_suffix(&self, priority: i32, child: &impl IsA<Widget>)

source

fn can_drop(&self, widget: &impl IsA<Widget>) -> bool

source

fn frame(&self) -> Option<Frame>

source

fn page_changed(&self, widget: Option<&impl IsA<Widget>>)

source

fn set_frame(&self, frame: Option<&impl IsA<Frame>>)

source

fn connect_frame_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

Implementors§