pub struct CellRendererSpinnerBuilder { /* private fields */ }๐Deprecated: Since 4.10
Expand description
A builder-pattern type to construct CellRendererSpinner objects.
Implementationsยง
Sourceยงimpl CellRendererSpinnerBuilder
impl CellRendererSpinnerBuilder
Sourcepub fn active(self, active: bool) -> Self
๐Deprecated: Since 4.10
pub fn active(self, active: bool) -> Self
Whether the spinner is active (ie. shown) in the cell
Sourcepub fn pulse(self, pulse: u32) -> Self
๐Deprecated: Since 4.10
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
๐Deprecated: Since 4.10
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: impl Into<GString>) -> Self
๐Deprecated: Since 4.10
Sourcepub fn cell_background_rgba(self, cell_background_rgba: &RGBA) -> Self
๐Deprecated: Since 4.10
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
๐Deprecated: Since 4.10
pub fn height(self, height: i32) -> Self
๐Deprecated: Since 4.10
pub fn is_expanded(self, is_expanded: bool) -> Self
๐Deprecated: Since 4.10
pub fn is_expander(self, is_expander: bool) -> Self
๐Deprecated: Since 4.10
pub fn mode(self, mode: CellRendererMode) -> Self
๐Deprecated: Since 4.10
pub fn sensitive(self, sensitive: bool) -> Self
๐Deprecated: Since 4.10
pub fn visible(self, visible: bool) -> Self
๐Deprecated: Since 4.10
pub fn width(self, width: i32) -> Self
๐Deprecated: Since 4.10
pub fn xalign(self, xalign: f32) -> Self
๐Deprecated: Since 4.10
pub fn xpad(self, xpad: u32) -> Self
๐Deprecated: Since 4.10
pub fn yalign(self, yalign: f32) -> Self
๐Deprecated: Since 4.10
pub fn ypad(self, ypad: u32) -> Self
๐Deprecated: Since 4.10
Sourcepub fn build(self) -> CellRendererSpinner
๐Deprecated: Since 4.10
pub fn build(self) -> CellRendererSpinner
Build the CellRendererSpinner.
Auto Trait Implementationsยง
impl Freeze for CellRendererSpinnerBuilder
impl RefUnwindSafe for CellRendererSpinnerBuilder
impl !Send for CellRendererSpinnerBuilder
impl !Sync for CellRendererSpinnerBuilder
impl Unpin for CellRendererSpinnerBuilder
impl UnwindSafe for CellRendererSpinnerBuilder
Blanket Implementationsยง
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more