Trait cosmic::app::ApplicationExt
source · pub trait ApplicationExt: Application {
// Required methods
fn drag(&mut self) -> Task<Self::Message>;
fn maximize(&mut self) -> Task<Self::Message>;
fn minimize(&mut self) -> Task<Self::Message>;
fn title(&self, id: Id) -> &str;
fn set_window_title(&mut self, title: String, id: Id) -> Task<Self::Message>;
fn view_main(&self) -> Element<'_, Message<Self::Message>>;
// Provided methods
fn set_context_title(&mut self, title: String) { ... }
fn set_show_context(&mut self, show: bool) { ... }
fn set_header_title(&mut self, title: String) { ... }
}
Expand description
Methods automatically derived for all types implementing Application
.
Required Methods§
Provided Methods§
sourcefn set_context_title(&mut self, title: String)
fn set_context_title(&mut self, title: String)
Set the context drawer title.
sourcefn set_show_context(&mut self, show: bool)
fn set_show_context(&mut self, show: bool)
Set the context drawer visibility.
sourcefn set_header_title(&mut self, title: String)
fn set_header_title(&mut self, title: String)
Set the header bar title.
Object Safety§
This trait is not object safe.