pub trait MenuToolButtonExt: 'static {
    fn get_menu(&self) -> Option<Widget>;
    fn set_arrow_tooltip_markup(&self, markup: &str);
    fn set_arrow_tooltip_text(&self, text: &str);
    fn set_menu<P: IsA<Widget>>(&self, menu: &P);
    fn connect_show_menu<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
    fn connect_property_menu_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors