[][src]Struct imgui::ColorPicker

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

Builder for a color picker widget.

Methods

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

pub fn new(_: &Ui<'ui>, label: &'p ImStr, value: EditableColor<'p>) -> Self[src]

Constructs a new color picker 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 small_preview(self, value: bool) -> Self[src]

Enables/disables the colored square preview next to the inputs.

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

Enables/disables the input sliders/text widgets.

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

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

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

Enables/disables display of the inline text label (the label is in any case forwarded to the tooltip and picker).

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

Enables/disables the bigger color preview on the right side of the picker.

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

Enables/disables the vertical alpha bar/gradient in the color picker.

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

Sets the preview style.

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

Enables/disables the RGB inputs.

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

Enables/disables the HSV inputs.

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

Enables/disables the HEX input.

pub fn mode(self, mode: ColorPickerMode) -> Self[src]

Sets the hue/saturation/value editor mode.

pub fn format(self, format: ColorFormat) -> Self[src]

Sets the formatting style of color components.

pub fn reference_color(self, ref_color: &'p [f32; 4]) -> Self[src]

Sets the shown reference color.

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

Builds the color picker.

Auto Trait Implementations

impl<'ui, 'p> Send for ColorPicker<'ui, 'p>

impl<'ui, 'p> Sync for ColorPicker<'ui, 'p>

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.