pub struct GenericUi<'a, W: ParamWidget> { /* private fields */ }
Expand description

A list of scrollable widgets for every paramter in a Params object. The ParamWidget type determines what widget to use for this.

TODO: There’s no way to configure the individual widgets.

Implementations§

source§

impl<'a, W> GenericUi<'a, W>where W: ParamWidget,

source

pub fn new(state: &'a mut State<W>, params: Arc<dyn Params>) -> Self

Creates a new GenericUi for all provided parameters.

source

pub fn width(self, width: Length) -> Self

Sets the width of the GenericUi.

source

pub fn height(self, height: Length) -> Self

Sets the height of the GenericUi.

source

pub fn max_width(self, width: u32) -> Self

Sets the maximum width of the GenericUi.

source

pub fn max_height(self, height: u32) -> Self

Sets the maximum height of the GenericUi.

source

pub fn pad_scrollbar(self) -> Self

Include additional room on the right for the scroll bar.

source§

impl<'a, W: ParamWidget> GenericUi<'a, W>

source

pub fn map<Message, F>(self, f: F) -> Element<'a, Message>where Message: 'static, F: Fn(ParamMessage) -> Message + 'static,

Convert this GenericUi into an [Element] with the correct message. You should have a variant on your own message type that wraps around ParamMessage so you can forward those messages to IcedEditor::handle_param_message().

Trait Implementations§

source§

impl<'a, W> From<GenericUi<'a, W>> for Element<'a, ParamMessage>where W: ParamWidget,

source§

fn from(widget: GenericUi<'a, W>) -> Self

Converts to this type from the input type.
source§

impl<'a, W> Widget<ParamMessage, Renderer<Backend>> for GenericUi<'a, W>where W: ParamWidget,

source§

fn width(&self) -> Length

Returns the width of the [Widget].
source§

fn height(&self) -> Length

Returns the height of the [Widget].
source§

fn layout(&self, renderer: &Renderer, limits: &Limits) -> Node

Returns the Node of the [Widget]. Read more
source§

fn draw( &self, renderer: &mut Renderer, style: &Style, layout: Layout<'_>, cursor_position: Point, viewport: &Rectangle )

Draws the [Widget] using the associated Renderer.
source§

fn on_event( &mut self, event: Event, layout: Layout<'_>, cursor_position: Point, renderer: &Renderer, clipboard: &mut dyn Clipboard, shell: &mut Shell<'_, ParamMessage> ) -> Status

Processes a runtime [Event]. Read more
§

fn mouse_interaction( &self, _layout: Layout<'_>, _cursor_position: Point, _viewport: &Rectangle<f32>, _renderer: &Renderer ) -> Interaction

Returns the current [mouse::Interaction] of the [Widget]. Read more
§

fn overlay( &mut self, _layout: Layout<'_>, _renderer: &Renderer ) -> Option<Element<'_, Message, Renderer>>

Returns the overlay of the [Widget], if there is any.

Auto Trait Implementations§

§

impl<'a, W> !RefUnwindSafe for GenericUi<'a, W>

§

impl<'a, W> Send for GenericUi<'a, W>where W: Send, <W as ParamWidget>::State: Send,

§

impl<'a, W> Sync for GenericUi<'a, W>where W: Sync, <W as ParamWidget>::State: Send + Sync,

§

impl<'a, W> Unpin for GenericUi<'a, W>where W: Unpin,

§

impl<'a, W> !UnwindSafe for GenericUi<'a, W>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T, U> ToSample<U> for Twhere U: FromSample<T>,

§

fn to_sample_(self) -> U

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> Any for Twhere T: Any,

§

impl<S, T> Duplex<S> for Twhere T: FromSample<S> + ToSample<S>,

§

impl<T> MaybeSend for Twhere T: Send,