Struct gtk::builders::CellRendererSpinnerBuilder
source · [−]pub struct CellRendererSpinnerBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct CellRendererSpinner
objects.
Implementations
sourceimpl CellRendererSpinnerBuilder
impl CellRendererSpinnerBuilder
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new CellRendererSpinnerBuilder
.
sourcepub fn build(self) -> CellRendererSpinner
pub fn build(self) -> CellRendererSpinner
Build the CellRendererSpinner
.
pub fn active(self, active: bool) -> Self
sourcepub fn pulse(self, pulse: u32) -> Self
pub fn pulse(self, pulse: u32) -> Self
Pulse of the spinner. Increment this value to draw the next frame of the spinner animation. Usually, you would update this value in a timeout.
By default, the Spinner
widget draws one full cycle of the animation,
consisting of 12 frames, in 750 milliseconds.
sourcepub fn size(self, size: IconSize) -> Self
pub fn size(self, size: IconSize) -> Self
The IconSize
value that specifies the size of the rendered spinner.
pub fn cell_background(self, cell_background: &str) -> Self
sourcepub fn cell_background_rgba(self, cell_background_rgba: &RGBA) -> Self
pub fn cell_background_rgba(self, cell_background_rgba: &RGBA) -> Self
Cell background as a gdk::RGBA
pub fn cell_background_set(self, cell_background_set: bool) -> Self
pub fn height(self, height: i32) -> Self
pub fn is_expanded(self, is_expanded: bool) -> Self
pub fn is_expander(self, is_expander: bool) -> Self
pub fn mode(self, mode: CellRendererMode) -> Self
pub fn sensitive(self, sensitive: bool) -> Self
pub fn visible(self, visible: bool) -> Self
pub fn width(self, width: i32) -> Self
pub fn xalign(self, xalign: f32) -> Self
pub fn xpad(self, xpad: u32) -> Self
pub fn yalign(self, yalign: f32) -> Self
pub fn ypad(self, ypad: u32) -> Self
Trait Implementations
sourceimpl Clone for CellRendererSpinnerBuilder
impl Clone for CellRendererSpinnerBuilder
sourcefn clone(&self) -> CellRendererSpinnerBuilder
fn clone(&self) -> CellRendererSpinnerBuilder
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Default for CellRendererSpinnerBuilder
impl Default for CellRendererSpinnerBuilder
sourcefn default() -> CellRendererSpinnerBuilder
fn default() -> CellRendererSpinnerBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for CellRendererSpinnerBuilder
impl Send for CellRendererSpinnerBuilder
impl Sync for CellRendererSpinnerBuilder
impl Unpin for CellRendererSpinnerBuilder
impl UnwindSafe for CellRendererSpinnerBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more