[][src]Struct imgui::ColorButton

#[must_use]
pub struct ColorButton<'ui, 'p> { /* fields omitted */ }

Builder for a color button widget.

Methods

impl<'ui, 'p> ColorButton<'ui, 'p>[src]

pub fn new(_: &Ui<'ui>, desc_id: &'p ImStr, color: [f32; 4]) -> Self[src]

Constructs a new color button builder.

pub fn flags(self, flags: ImGuiColorEditFlags) -> Self[src]

Replaces all current settings with the given flags.

pub fn alpha(self, value: bool) -> Self[src]

Enables/disables the use of the alpha component.

pub fn tooltip(self, value: bool) -> Self[src]

Enables/disables the tooltip that appears when hovering the preview.

pub fn preview(self, preview: ColorPreview) -> Self[src]

Sets the preview style.

pub fn size(self, size: [f32; 2]) -> Self[src]

Sets the button size.

Use 0.0 for width and/or height to use the default size.

pub fn build(self) -> bool[src]

Builds the color button.

Auto Trait Implementations

impl<'ui, 'p> !Send for ColorButton<'ui, 'p>

impl<'ui, 'p> Unpin for ColorButton<'ui, 'p>

impl<'ui, 'p> !Sync for ColorButton<'ui, 'p>

impl<'ui, 'p> !UnwindSafe for ColorButton<'ui, 'p>

impl<'ui, 'p> !RefUnwindSafe for ColorButton<'ui, 'p>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]