pub struct ColorPicker<T> {
pub color: Color,
pub on_input: Option<Box<dyn FnMut(&mut EventCx<'_, '_>, &mut T, Color)>>,
pub size: Option<f32>,
pub border_width: Option<f32>,
pub border_color: Option<Color>,
pub slider_width: Option<f32>,
pub lightness_color: Option<Color>,
pub alpha_color: Option<Color>,
}
Expand description
A color picker.
Fields§
§color: Color
The color of the color picker.
on_input: Option<Box<dyn FnMut(&mut EventCx<'_, '_>, &mut T, Color)>>
The on_input callback.
size: Option<f32>
The size of the color picker.
border_width: Option<f32>
The border width of the color picker.
border_color: Option<Color>
The border color of the color picker.
slider_width: Option<f32>
The width of the sliders.
lightness_color: Option<Color>
The color of the lightness slider.
alpha_color: Option<Color>
The color of the alpha slider.
Implementations§
Source§impl<T> ColorPicker<T>
impl<T> ColorPicker<T>
Sourcepub fn color(self, color: impl Into<Color>) -> ColorPicker<T>
pub fn color(self, color: impl Into<Color>) -> ColorPicker<T>
Set self.color
.
The color of the color picker.
Sourcepub fn size(self, size: impl Into<f32>) -> ColorPicker<T>
pub fn size(self, size: impl Into<f32>) -> ColorPicker<T>
Set self.size
.
The size of the color picker.
Sourcepub fn border_width(self, border_width: impl Into<f32>) -> ColorPicker<T>
pub fn border_width(self, border_width: impl Into<f32>) -> ColorPicker<T>
Set self.border_width
.
The border width of the color picker.
Sourcepub fn border_color(self, border_color: impl Into<Color>) -> ColorPicker<T>
pub fn border_color(self, border_color: impl Into<Color>) -> ColorPicker<T>
Set self.border_color
.
The border color of the color picker.
Sourcepub fn slider_width(self, slider_width: impl Into<f32>) -> ColorPicker<T>
pub fn slider_width(self, slider_width: impl Into<f32>) -> ColorPicker<T>
Set self.slider_width
.
The width of the sliders.
Sourcepub fn lightness_color(
self,
lightness_color: impl Into<Color>,
) -> ColorPicker<T>
pub fn lightness_color( self, lightness_color: impl Into<Color>, ) -> ColorPicker<T>
Set self.lightness_color
.
The color of the lightness slider.
Sourcepub fn alpha_color(self, alpha_color: impl Into<Color>) -> ColorPicker<T>
pub fn alpha_color(self, alpha_color: impl Into<Color>) -> ColorPicker<T>
Set self.alpha_color
.
The color of the alpha slider.
Source§impl<T> ColorPicker<T>
impl<T> ColorPicker<T>
Sourcepub fn new() -> ColorPicker<T>
pub fn new() -> ColorPicker<T>
Create a new ColorPicker
.
Trait Implementations§
Source§impl<T> Default for ColorPicker<T>
impl<T> Default for ColorPicker<T>
Source§fn default() -> ColorPicker<T>
fn default() -> ColorPicker<T>
Returns the “default value” for a type. Read more
Source§impl<T> Rebuild for ColorPicker<T>
impl<T> Rebuild for ColorPicker<T>
Source§fn rebuild(&self, cx: &mut RebuildCx<'_, '_>, old: &ColorPicker<T>)
fn rebuild(&self, cx: &mut RebuildCx<'_, '_>, old: &ColorPicker<T>)
Rebuild the view.
Source§impl<T> Stylable for ColorPicker<T>
impl<T> Stylable for ColorPicker<T>
Source§type Style = ColorPickerStyle
type Style = ColorPickerStyle
The style type.
Source§fn style(
&self,
style: &<ColorPicker<T> as Stylable>::Style,
) -> <ColorPicker<T> as Stylable>::Style
fn style( &self, style: &<ColorPicker<T> as Stylable>::Style, ) -> <ColorPicker<T> as Stylable>::Style
Style the object. Read more
Source§impl<T> View<T> for ColorPicker<T>
impl<T> View<T> for ColorPicker<T>
Source§type State = ColorPickerState
type State = ColorPickerState
The state of the view, see top-level documentation for more information.
Source§fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
_data: &mut T,
) -> <ColorPicker<T> as View<T>>::State
fn build( &mut self, cx: &mut BuildCx<'_, '_>, _data: &mut T, ) -> <ColorPicker<T> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
state: &mut <ColorPicker<T> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
_data: &mut T,
old: &ColorPicker<T>,
)
fn rebuild( &mut self, state: &mut <ColorPicker<T> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, _data: &mut T, old: &ColorPicker<T>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
state: &mut <ColorPicker<T> as View<T>>::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, state: &mut <ColorPicker<T> as View<T>>::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event, see top-level documentation for more information.
Auto Trait Implementations§
impl<T> Freeze for ColorPicker<T>
impl<T> !RefUnwindSafe for ColorPicker<T>
impl<T> !Send for ColorPicker<T>
impl<T> !Sync for ColorPicker<T>
impl<T> Unpin for ColorPicker<T>
impl<T> !UnwindSafe for ColorPicker<T>
Blanket Implementations§
Source§impl<T, V> AnyView<T> for V
impl<T, V> AnyView<T> for V
Source§fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
Build the view.
Source§fn dyn_rebuild(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &dyn AnyView<T>,
)
fn dyn_rebuild( &mut self, state: &mut Box<dyn Any>, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &dyn AnyView<T>, )
Rebuild the view.
Source§fn dyn_event(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn dyn_event( &mut self, state: &mut Box<dyn Any>, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event.
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