Trait gtk::ColorButtonExt
[−]
[src]
pub trait ColorButtonExt {
fn get_title(&self) -> Option<String>;
fn set_title(&self, title: &str);
fn get_property_alpha(&self) -> u32;
fn set_property_alpha(&self, alpha: u32);
fn connect_color_set<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_alpha_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
fn connect_property_rgba_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_use_alpha_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}
Required Methods
fn get_title(&self) -> Option<String>
fn set_title(&self, title: &str)
fn get_property_alpha(&self) -> u32
fn set_property_alpha(&self, alpha: u32)
fn connect_color_set<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_property_alpha_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_rgba_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
fn connect_property_use_alpha_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
Implementors
impl<O: IsA<ColorButton> + IsA<Object>> ColorButtonExt for O