Trait gtk::HeaderBarExt [] [src]

pub trait HeaderBarExt {
    fn get_custom_title(&self) -> Option<Widget>;
    fn get_decoration_layout(&self) -> Option<String>;
    fn get_has_subtitle(&self) -> bool;
    fn get_show_close_button(&self) -> bool;
    fn get_subtitle(&self) -> Option<String>;
    fn get_title(&self) -> Option<String>;
    fn pack_end<P: IsA<Widget>>(&self, child: &P);
    fn pack_start<P: IsA<Widget>>(&self, child: &P);
    fn set_custom_title<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        title_widget: Q
    ); fn set_decoration_layout<'a, P: Into<Option<&'a str>>>(&self, layout: P); fn set_has_subtitle(&self, setting: bool); fn set_show_close_button(&self, setting: bool); fn set_subtitle<'a, P: Into<Option<&'a str>>>(&self, subtitle: P); fn set_title<'a, P: Into<Option<&'a str>>>(&self, title: P); fn get_property_custom_title(&self) -> Option<Widget>; fn set_property_custom_title<P: IsA<Widget> + IsA<Object> + SetValueOptional>(
        &self,
        custom_title: Option<&P>
    ); fn get_property_decoration_layout_set(&self) -> bool; fn set_property_decoration_layout_set(&self, decoration_layout_set: bool); fn get_property_show_close_button(&self) -> bool; fn set_property_show_close_button(&self, show_close_button: bool); fn get_property_spacing(&self) -> i32; fn set_property_spacing(&self, spacing: i32); fn get_property_subtitle(&self) -> Option<String>; fn set_property_subtitle(&self, subtitle: Option<&str>); fn get_property_title(&self) -> Option<String>; fn set_property_title(&self, title: Option<&str>); fn get_child_pack_type<T: IsA<Widget>>(&self, item: &T) -> PackType; fn set_child_pack_type<T: IsA<Widget>>(&self, item: &T, pack_type: PackType); fn get_child_position<T: IsA<Widget>>(&self, item: &T) -> i32; fn set_child_position<T: IsA<Widget>>(&self, item: &T, position: i32); }

Required Methods

Implementors