Trait gtk::prelude::DialogExt

source ·
pub trait DialogExt: IsA<Dialog> + Sealed + 'static {
Show 14 methods // Provided methods fn add_action_widget( &self, child: &impl IsA<Widget>, response_id: ResponseType ) { ... } fn add_button(&self, button_text: &str, response_id: ResponseType) -> Widget { ... } fn content_area(&self) -> Box { ... } fn header_bar(&self) -> Option<HeaderBar> { ... } fn response_for_widget(&self, widget: &impl IsA<Widget>) -> ResponseType { ... } fn widget_for_response(&self, response_id: ResponseType) -> Option<Widget> { ... } fn response(&self, response_id: ResponseType) { ... } fn run(&self) -> ResponseType { ... } fn set_default_response(&self, response_id: ResponseType) { ... } fn set_response_sensitive(&self, response_id: ResponseType, setting: bool) { ... } fn use_header_bar(&self) -> i32 { ... } fn connect_close<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... } fn emit_close(&self) { ... } fn connect_response<F: Fn(&Self, ResponseType) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn add_action_widget(&self, child: &impl IsA<Widget>, response_id: ResponseType)

source

fn add_button(&self, button_text: &str, response_id: ResponseType) -> Widget

source

fn content_area(&self) -> Box

source

fn header_bar(&self) -> Option<HeaderBar>

source

fn response_for_widget(&self, widget: &impl IsA<Widget>) -> ResponseType

source

fn widget_for_response(&self, response_id: ResponseType) -> Option<Widget>

source

fn response(&self, response_id: ResponseType)

source

fn run(&self) -> ResponseType

source

fn set_default_response(&self, response_id: ResponseType)

source

fn set_response_sensitive(&self, response_id: ResponseType, setting: bool)

source

fn use_header_bar(&self) -> i32

source

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

source

fn emit_close(&self)

source

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

Implementors§

source§

impl<O: IsA<Dialog>> DialogExt for O