[][src]Struct imgui::ColorPicker

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

Builder for a color picker widget.

Examples

let cp = ColorPicker::new(im_str!("color_picker"), &mut color);
if cp.build(&ui) {
  println!("A color was picked");
}

Methods

impl<'a> ColorPicker<'a>[src]

pub fn new<T: Into<EditableColor<'a>>>(
    label: &'a ImStr,
    value: T
) -> ColorPicker<'a>
[src]

Constructs a new color picker builder.

pub fn flags(self, flags: ColorEditFlags) -> 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 options(self, value: bool) -> Self[src]

Enables/disables toggling of the options menu when right-clicking on inputs or the small preview.

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 input_mode(self, input_mode: ColorEditInputMode) -> Self[src]

Sets the data format for input and output data.

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

Enables/disables displaying the value as RGB.

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

Enables/disables displaying the value as HSV.

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

Enables/disables displaying the value as hex.

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: &'a [f32; 4]) -> Self[src]

Sets the shown reference color.

pub fn build(self, _: &Ui) -> bool[src]

Builds the color picker.

Returns true if the color value was changed.

Trait Implementations

impl<'a> Debug for ColorPicker<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for ColorPicker<'a>

impl<'a> Sync for ColorPicker<'a>

impl<'a> Send for ColorPicker<'a>

impl<'a> !UnwindSafe for ColorPicker<'a>

impl<'a> RefUnwindSafe for ColorPicker<'a>

Blanket Implementations

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

impl<T> From<T> for 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]