Trait sourceview5::prelude::NativeDialogExt
source · pub trait NativeDialogExt: IsA<NativeDialog> + Sealed + 'static {
Show 16 methods
// Provided methods
fn destroy(&self) { ... }
fn is_modal(&self) -> bool { ... }
fn title(&self) -> Option<GString> { ... }
fn transient_for(&self) -> Option<Window> { ... }
fn is_visible(&self) -> bool { ... }
fn hide(&self) { ... }
fn set_modal(&self, modal: bool) { ... }
fn set_title(&self, title: &str) { ... }
fn set_transient_for(&self, parent: Option<&impl IsA<Window>>) { ... }
fn show(&self) { ... }
fn set_visible(&self, visible: bool) { ... }
fn connect_response<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, ResponseType) + 'static { ... }
fn connect_modal_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_title_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_transient_for_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_visible_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn destroy(&self)
fn is_modal(&self) -> bool
fn title(&self) -> Option<GString>
fn transient_for(&self) -> Option<Window>
fn is_visible(&self) -> bool
fn hide(&self)
fn set_modal(&self, modal: bool)
fn set_title(&self, title: &str)
fn set_transient_for(&self, parent: Option<&impl IsA<Window>>)
fn show(&self)
fn set_visible(&self, visible: bool)
fn connect_response<F>(&self, f: F) -> SignalHandlerId
fn connect_modal_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_title_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_transient_for_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_visible_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.