Trait gtk::prelude::CellRendererSpinExt[][src]

pub trait CellRendererSpinExt: 'static {
    fn adjustment(&self) -> Option<Adjustment>;
fn set_adjustment<P: IsA<Adjustment>>(&self, adjustment: Option<&P>);
fn climb_rate(&self) -> f64;
fn set_climb_rate(&self, climb_rate: f64);
fn digits(&self) -> u32;
fn set_digits(&self, digits: u32);
fn connect_adjustment_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_climb_rate_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_digits_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }
Expand description

Trait containing all CellRendererSpin methods.

Implementors

CellRendererSpin

Required methods

The adjustment that holds the value of the spinbutton. This must be non-None for the cell renderer to be editable.

The adjustment that holds the value of the spinbutton. This must be non-None for the cell renderer to be editable.

The acceleration rate when you hold down a button.

The acceleration rate when you hold down a button.

The number of decimal places to display.

The number of decimal places to display.

Implementors