[][src]Trait gtk::prelude::NativeDialogExt

pub trait NativeDialogExt: 'static {
    fn destroy(&self);
fn get_modal(&self) -> bool;
fn get_title(&self) -> Option<GString>;
fn get_transient_for(&self) -> Option<Window>;
fn get_visible(&self) -> bool;
fn hide(&self);
fn run(&self) -> i32;
fn set_modal(&self, modal: bool);
fn set_title(&self, title: &str);
fn set_transient_for<'a, P: IsA<Window> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        parent: Q
    );
fn show(&self);
fn set_property_visible(&self, visible: bool);
fn connect_response<F: Fn(&Self, ResponseType) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_modal_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_title_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_transient_for_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_visible_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn destroy(&self)

fn get_modal(&self) -> bool

fn get_title(&self) -> Option<GString>

fn get_transient_for(&self) -> Option<Window>

fn get_visible(&self) -> bool

fn hide(&self)

fn run(&self) -> i32

fn set_modal(&self, modal: bool)

fn set_title(&self, title: &str)

fn set_transient_for<'a, P: IsA<Window> + 'a, Q: Into<Option<&'a P>>>(
    &self,
    parent: Q
)

fn show(&self)

fn set_property_visible(&self, visible: bool)

fn connect_response<F: Fn(&Self, ResponseType) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_modal_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

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

fn connect_property_transient_for_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_visible_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Loading content...

Implementors

impl<O: IsA<NativeDialog>> NativeDialogExt for O[src]

Loading content...