pub trait FrameHeaderImplExt: ObjectSubclass {
    // Required methods
    fn parent_page_changed(&self, widget: Option<&Widget>);
    fn parent_can_drop(&self, widget: &Widget) -> bool;
    fn parent_add_prefix(&self, priority: i32, widget: &Widget);
    fn parent_add_suffix(&self, priority: i32, widget: &Widget);
}

Required Methods§

source

fn parent_page_changed(&self, widget: Option<&Widget>)

source

fn parent_can_drop(&self, widget: &Widget) -> bool

source

fn parent_add_prefix(&self, priority: i32, widget: &Widget)

source

fn parent_add_suffix(&self, priority: i32, widget: &Widget)

Implementors§