Trait gtk::prelude::AboutDialogExt
[−]
[src]
pub trait AboutDialogExt { fn add_credit_section(&self, section_name: &str, people: &[&str]); fn get_artists(&self) -> Vec<String>; fn get_authors(&self) -> Vec<String>; fn get_comments(&self) -> Option<String>; fn get_copyright(&self) -> Option<String>; fn get_documenters(&self) -> Vec<String>; fn get_license(&self) -> Option<String>; fn get_license_type(&self) -> License; fn get_logo(&self) -> Option<Pixbuf>; fn get_logo_icon_name(&self) -> Option<String>; fn get_program_name(&self) -> Option<String>; fn get_translator_credits(&self) -> Option<String>; fn get_version(&self) -> Option<String>; fn get_website(&self) -> Option<String>; fn get_website_label(&self) -> Option<String>; fn get_wrap_license(&self) -> bool; fn set_artists(&self, artists: &[&str]); fn set_authors(&self, authors: &[&str]); fn set_comments<'a, P: Into<Option<&'a str>>>(&self, comments: P); fn set_copyright<'a, P: Into<Option<&'a str>>>(&self, copyright: P); fn set_documenters(&self, documenters: &[&str]); fn set_license<'a, P: Into<Option<&'a str>>>(&self, license: P); fn set_license_type(&self, license_type: License); fn set_logo<'a, P: Into<Option<&'a Pixbuf>>>(&self, logo: P); fn set_logo_icon_name<'a, P: Into<Option<&'a str>>>(&self, icon_name: P); fn set_program_name(&self, name: &str); fn set_translator_credits<'a, P: Into<Option<&'a str>>>(
&self,
translator_credits: P
); fn set_version<'a, P: Into<Option<&'a str>>>(&self, version: P); fn set_website<'a, P: Into<Option<&'a str>>>(&self, website: P); fn set_website_label<'a, P: Into<Option<&'a str>>>(&self, website_label: P); fn set_wrap_license(&self, wrap_license: bool); fn connect_activate_link<F: Fn(&Self, &str) -> Inhibit + 'static>(
&self,
f: F
) -> u64; }
Required Methods
fn add_credit_section(&self, section_name: &str, people: &[&str])
fn get_artists(&self) -> Vec<String>
fn get_comments(&self) -> Option<String>
fn get_copyright(&self) -> Option<String>
fn get_documenters(&self) -> Vec<String>
fn get_license(&self) -> Option<String>
fn get_license_type(&self) -> License
fn get_logo(&self) -> Option<Pixbuf>
fn get_logo_icon_name(&self) -> Option<String>
fn get_program_name(&self) -> Option<String>
fn get_translator_credits(&self) -> Option<String>
fn get_version(&self) -> Option<String>
fn get_website(&self) -> Option<String>
fn get_website_label(&self) -> Option<String>
fn get_wrap_license(&self) -> bool
fn set_artists(&self, artists: &[&str])
fn set_comments<'a, P: Into<Option<&'a str>>>(&self, comments: P)
fn set_copyright<'a, P: Into<Option<&'a str>>>(&self, copyright: P)
fn set_documenters(&self, documenters: &[&str])
fn set_license<'a, P: Into<Option<&'a str>>>(&self, license: P)
fn set_license_type(&self, license_type: License)
fn set_logo<'a, P: Into<Option<&'a Pixbuf>>>(&self, logo: P)
fn set_logo_icon_name<'a, P: Into<Option<&'a str>>>(&self, icon_name: P)
fn set_program_name(&self, name: &str)
fn set_translator_credits<'a, P: Into<Option<&'a str>>>(
&self,
translator_credits: P
)
&self,
translator_credits: P
)
fn set_version<'a, P: Into<Option<&'a str>>>(&self, version: P)
fn set_website<'a, P: Into<Option<&'a str>>>(&self, website: P)
fn set_website_label<'a, P: Into<Option<&'a str>>>(&self, website_label: P)
fn set_wrap_license(&self, wrap_license: bool)
fn connect_activate_link<F: Fn(&Self, &str) -> Inhibit + 'static>(
&self,
f: F
) -> u64
&self,
f: F
) -> u64
Implementors
impl<O: IsA<AboutDialog> + IsA<Object>> AboutDialogExt for O