Trait gtk::prelude::SpinButtonSignals
[−]
[src]
pub trait SpinButtonSignals { fn connect_change_value<F>(&self, change_value_func: F) -> u64
where
F: Fn(&SpinButton, ScrollType) + 'static; fn connect_input<F>(&self, input_func: F) -> u64
where
F: Fn(&SpinButton) -> Option<Result<f64, ()>> + 'static; fn connect_output<F>(&self, output_func: F) -> u64
where
F: Fn(&SpinButton) -> Inhibit + 'static; fn connect_value_changed<F>(&self, value_changed_func: F) -> u64
where
F: Fn(&SpinButton) + 'static; fn connect_wrapped<F>(&self, wrapped_func: F) -> u64
where
F: Fn(&SpinButton) + 'static; }
Required Methods
fn connect_change_value<F>(&self, change_value_func: F) -> u64 where
F: Fn(&SpinButton, ScrollType) + 'static,
F: Fn(&SpinButton, ScrollType) + 'static,
fn connect_input<F>(&self, input_func: F) -> u64 where
F: Fn(&SpinButton) -> Option<Result<f64, ()>> + 'static,
F: Fn(&SpinButton) -> Option<Result<f64, ()>> + 'static,
fn connect_output<F>(&self, output_func: F) -> u64 where
F: Fn(&SpinButton) -> Inhibit + 'static,
F: Fn(&SpinButton) -> Inhibit + 'static,
fn connect_value_changed<F>(&self, value_changed_func: F) -> u64 where
F: Fn(&SpinButton) + 'static,
F: Fn(&SpinButton) + 'static,
fn connect_wrapped<F>(&self, wrapped_func: F) -> u64 where
F: Fn(&SpinButton) + 'static,
F: Fn(&SpinButton) + 'static,
Implementors
impl SpinButtonSignals for SpinButton