Trait gtk::prelude::HeaderBarExt[][src]

pub trait HeaderBarExt: 'static {
    fn get_custom_title(&self) -> Option<Widget>;
fn get_decoration_layout(&self) -> Option<GString>;
fn get_has_subtitle(&self) -> bool;
fn get_show_close_button(&self) -> bool;
fn get_subtitle(&self) -> Option<GString>;
fn get_title(&self) -> Option<GString>;
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_decoration_layout_set(&self) -> bool;
fn set_property_decoration_layout_set(&self, decoration_layout_set: bool);
fn get_property_spacing(&self) -> i32;
fn set_property_spacing(&self, spacing: i32);
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);
fn connect_property_custom_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_decoration_layout_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_decoration_layout_set_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_has_subtitle_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_show_close_button_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_spacing_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_subtitle_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_custom_title(&self) -> Option<Widget>[src]

fn get_decoration_layout(&self) -> Option<GString>[src]

fn get_has_subtitle(&self) -> bool[src]

fn get_show_close_button(&self) -> bool[src]

fn get_subtitle(&self) -> Option<GString>[src]

fn get_title(&self) -> Option<GString>[src]

fn pack_end<P: IsA<Widget>>(&self, child: &P)[src]

fn pack_start<P: IsA<Widget>>(&self, child: &P)[src]

fn set_custom_title<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(
    &self,
    title_widget: Q
)
[src]

fn set_decoration_layout<'a, P: Into<Option<&'a str>>>(&self, layout: P)[src]

fn set_has_subtitle(&self, setting: bool)[src]

fn set_show_close_button(&self, setting: bool)[src]

fn set_subtitle<'a, P: Into<Option<&'a str>>>(&self, subtitle: P)[src]

fn set_title<'a, P: Into<Option<&'a str>>>(&self, title: P)[src]

fn get_property_decoration_layout_set(&self) -> bool[src]

fn set_property_decoration_layout_set(&self, decoration_layout_set: bool)[src]

fn get_property_spacing(&self) -> i32[src]

fn set_property_spacing(&self, spacing: i32)[src]

fn get_child_pack_type<T: IsA<Widget>>(&self, item: &T) -> PackType[src]

fn set_child_pack_type<T: IsA<Widget>>(&self, item: &T, pack_type: PackType)[src]

fn get_child_position<T: IsA<Widget>>(&self, item: &T) -> i32[src]

fn set_child_position<T: IsA<Widget>>(&self, item: &T, position: i32)[src]

fn connect_property_custom_title_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_decoration_layout_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_decoration_layout_set_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_has_subtitle_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_show_close_button_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_spacing_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_subtitle_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_title_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<HeaderBar>> HeaderBarExt for O[src]

Loading content...