Trait gtk::ScaleButtonExt[][src]

pub trait ScaleButtonExt: 'static {
    fn get_adjustment(&self) -> Adjustment;
fn get_minus_button(&self) -> Option<Button>;
fn get_plus_button(&self) -> Option<Button>;
fn get_popup(&self) -> Option<Widget>;
fn get_value(&self) -> f64;
fn set_adjustment<P: IsA<Adjustment>>(&self, adjustment: &P);
fn set_icons(&self, icons: &[&str]);
fn set_value(&self, value: f64);
fn get_property_icons(&self) -> Vec<GString>;
fn get_property_size(&self) -> IconSize;
fn set_property_size(&self, size: IconSize);
fn connect_popdown<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_popdown(&self);
fn connect_popup<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn emit_popup(&self);
fn connect_value_changed<F: Fn(&Self, f64) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_adjustment_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_icons_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_size_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_value_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_adjustment(&self) -> Adjustment[src]

fn get_minus_button(&self) -> Option<Button>[src]

fn get_plus_button(&self) -> Option<Button>[src]

fn get_popup(&self) -> Option<Widget>[src]

fn get_value(&self) -> f64[src]

fn set_adjustment<P: IsA<Adjustment>>(&self, adjustment: &P)[src]

fn set_icons(&self, icons: &[&str])[src]

fn set_value(&self, value: f64)[src]

fn get_property_icons(&self) -> Vec<GString>[src]

fn get_property_size(&self) -> IconSize[src]

fn set_property_size(&self, size: IconSize)[src]

fn connect_popdown<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId[src]

fn emit_popdown(&self)[src]

fn connect_popup<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId[src]

fn emit_popup(&self)[src]

fn connect_value_changed<F: Fn(&Self, f64) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_adjustment_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_icons_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_size_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_value_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<ScaleButton>> ScaleButtonExt for O[src]

Loading content...