Struct gtk::builders::CellRendererPixbufBuilder
source · [−]pub struct CellRendererPixbufBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct CellRendererPixbuf
objects.
Implementations
sourceimpl CellRendererPixbufBuilder
impl CellRendererPixbufBuilder
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new CellRendererPixbufBuilder
.
sourcepub fn build(self) -> CellRendererPixbuf
pub fn build(self) -> CellRendererPixbuf
Build the CellRendererPixbuf
.
sourcepub fn gicon(self, gicon: &impl IsA<Icon>) -> Self
pub fn gicon(self, gicon: &impl IsA<Icon>) -> Self
The GIcon representing the icon to display. If the icon theme is changed, the image will be updated automatically.
sourcepub fn icon_name(self, icon_name: &str) -> Self
pub fn icon_name(self, icon_name: &str) -> Self
The name of the themed icon to display. This property only has an effect if not overridden by “stock_id” or “pixbuf” properties.
pub fn pixbuf(self, pixbuf: &Pixbuf) -> Self
pub fn pixbuf_expander_closed(self, pixbuf_expander_closed: &Pixbuf) -> Self
pub fn pixbuf_expander_open(self, pixbuf_expander_open: &Pixbuf) -> Self
pub fn stock_detail(self, stock_detail: &str) -> Self
sourcepub fn stock_size(self, stock_size: u32) -> Self
pub fn stock_size(self, stock_size: u32) -> Self
The IconSize
value that specifies the size of the rendered icon.
pub fn surface(self, surface: &Surface) -> Self
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 CellRendererPixbufBuilder
impl Clone for CellRendererPixbufBuilder
sourcefn clone(&self) -> CellRendererPixbufBuilder
fn clone(&self) -> CellRendererPixbufBuilder
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 CellRendererPixbufBuilder
impl Default for CellRendererPixbufBuilder
sourcefn default() -> CellRendererPixbufBuilder
fn default() -> CellRendererPixbufBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for CellRendererPixbufBuilder
impl !Send for CellRendererPixbufBuilder
impl !Sync for CellRendererPixbufBuilder
impl Unpin for CellRendererPixbufBuilder
impl UnwindSafe for CellRendererPixbufBuilder
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