pub trait MenuBarExt: 'static {
    fn get_child_pack_direction(&self) -> PackDirection;
    fn get_pack_direction(&self) -> PackDirection;
    fn set_child_pack_direction(&self, child_pack_dir: PackDirection);
    fn set_pack_direction(&self, pack_dir: PackDirection);
    fn connect_property_child_pack_direction_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; fn connect_property_pack_direction_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors