ori::prelude

Trait View

Source
pub trait View<T = ()>
where T: ?Sized,
{ type State; // Required methods fn build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Self::State; fn rebuild( &mut self, state: &mut Self::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Self, ); fn event( &mut self, state: &mut Self::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool; fn layout( &mut self, state: &mut Self::State, cx: &mut LayoutCx<'_, '_>, data: &mut T, space: Space, ) -> Size; fn draw( &mut self, state: &mut Self::State, cx: &mut DrawCx<'_, '_>, data: &mut T, ); }
Expand description

A single UI component.

This trait is implemented by all UI components. The user interface is built by composing these components into a view-tree. This operation should be fast, as it is performed very often.

A view also has an associated state type, that is persistent across view-trees. When calling View::build, the view will build it’s state. A view containing another view must also store it’s child’s state. This is usually done by wrapping it in a tuple (MyState, State).

In case a view contains another view the contents should always be wrapped in either PodState or SeqState. If this is not done strange issues are very likely to occur.

For information on styling see style.

View has four primary methods:

  • View::rebuild is called after a new view-tree has been built, on the new tree. The view can then compare itself to the old tree and update it’s state accordingly. When a view differs from the old tree, it should call RebuildCx::layout or RebuildCx::draw when applicable. This can be quite tedius to write out, so the Rebuild derive macro can be used to generate this code.
  • View::event is called when an event occurs. The should then handle the event and return whether it handled it. Command events can be send using BaseCx::cmd.
  • View::layout is called when the view needs to be laid out. A leaf view should compute it’s own size in accordance with the given Space, and return it. A container view should pass an appropriate Space to it’s contents and the compute it’s own size based on the contents’ size(s).
  • View::draw is called when the view needs to be drawn.

For examples see the implementation of views like Button or Checkbox.

Required Associated Types§

Source

type State

The state of the view, see top-level documentation for more information.

Required Methods§

Source

fn build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Self::State

Build the view state, see top-level documentation for more information.

Source

fn rebuild( &mut self, state: &mut Self::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Self, )

Rebuild the view state, see top-level documentation for more information.

Source

fn event( &mut self, state: &mut Self::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool

Handle an event, see top-level documentation for more information.

Source

fn layout( &mut self, state: &mut Self::State, cx: &mut LayoutCx<'_, '_>, data: &mut T, space: Space, ) -> Size

Layout the view, see top-level documentation for more information.

Source

fn draw( &mut self, state: &mut Self::State, cx: &mut DrawCx<'_, '_>, data: &mut T, )

Draw the view, see top-level documentation for more information.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T> View<T> for ()

Source§

type State = ()

Source§

fn build( &mut self, _cx: &mut BuildCx<'_, '_>, _data: &mut T, ) -> <() as View<T>>::State

Source§

fn rebuild( &mut self, _state: &mut <() as View<T>>::State, _cx: &mut RebuildCx<'_, '_>, _data: &mut T, _old: &(), )

Source§

fn event( &mut self, _state: &mut <() as View<T>>::State, _cx: &mut EventCx<'_, '_>, _data: &mut T, _event: &Event, ) -> bool

Source§

fn layout( &mut self, _state: &mut <() as View<T>>::State, _cx: &mut LayoutCx<'_, '_>, _data: &mut T, space: Space, ) -> Size

Source§

fn draw( &mut self, _state: &mut <() as View<T>>::State, _cx: &mut DrawCx<'_, '_>, _data: &mut T, )

Source§

impl<T> View<T> for Box<dyn AnyView<T>>

Source§

type State = Box<dyn Any>

Source§

fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Box<dyn AnyView<T>> as View<T>>::State

Source§

fn rebuild( &mut self, state: &mut <Box<dyn AnyView<T>> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Box<dyn AnyView<T>>, )

Source§

fn event( &mut self, state: &mut <Box<dyn AnyView<T>> as View<T>>::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool

Source§

fn layout( &mut self, state: &mut <Box<dyn AnyView<T>> as View<T>>::State, cx: &mut LayoutCx<'_, '_>, data: &mut T, space: Space, ) -> Size

Source§

fn draw( &mut self, state: &mut <Box<dyn AnyView<T>> as View<T>>::State, cx: &mut DrawCx<'_, '_>, data: &mut T, )

Source§

impl<T, V> View<T> for Option<V>
where V: View<T>,

Source§

type State = Option<<V as View<T>>::State>

Source§

fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Option<V> as View<T>>::State

Source§

fn rebuild( &mut self, state: &mut <Option<V> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Option<V>, )

Source§

fn event( &mut self, state: &mut <Option<V> as View<T>>::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool

Source§

fn layout( &mut self, state: &mut <Option<V> as View<T>>::State, cx: &mut LayoutCx<'_, '_>, data: &mut T, space: Space, ) -> Size

Source§

fn draw( &mut self, state: &mut <Option<V> as View<T>>::State, cx: &mut DrawCx<'_, '_>, data: &mut T, )

Source§

impl<T, V, E> View<T> for Result<V, E>
where V: View<T>, E: View<T>,

Source§

type State = Result<<V as View<T>>::State, <E as View<T>>::State>

Source§

fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Result<V, E> as View<T>>::State

Source§

fn rebuild( &mut self, state: &mut <Result<V, E> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Result<V, E>, )

Source§

fn event( &mut self, state: &mut <Result<V, E> as View<T>>::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool

Source§

fn layout( &mut self, state: &mut <Result<V, E> as View<T>>::State, cx: &mut LayoutCx<'_, '_>, data: &mut T, space: Space, ) -> Size

Source§

fn draw( &mut self, state: &mut <Result<V, E> as View<T>>::State, cx: &mut DrawCx<'_, '_>, data: &mut T, )

Implementors§

Source§

impl<F, V, T> View<T> for Decorate<F, V, T>
where F: View<T>, V: View<T>,

Source§

type State = DecorateState<F, V, T>

Source§

impl<S, T, V> View<T> for WithState<S, T, V>
where V: View<(S, T)>,

Source§

type State = (Pod<V>, S, PodState<(S, T), V>)

Source§

impl<T> View<T> for Checkbox

Source§

impl<T> View<T> for ColorPicker<T>

Source§

type State = ColorPickerState

Source§

impl<T> View<T> for Image

Source§

impl<T> View<T> for Painter<T>

Source§

impl<T> View<T> for Slider<T>

Source§

impl<T> View<T> for Text

Source§

impl<T> View<T> for TextInput<T>

Source§

type State = TextInputState

Source§

impl<T, H, V> View<T> for Collapsing<T, H, V>
where H: View<T>, V: View<T>,

Source§

type State = CollapsingState<T, H, V>

Source§

impl<T, U, V> View<T> for Focus<T, U, V>
where V: View<U>,

Source§

type State = <V as View<U>>::State

Source§

impl<T, V> View<T> for Aligned<V>
where V: View<T>,

Source§

type State = PodState<T, V>

Source§

impl<T, V> View<T> for Aspect<V>
where V: View<T>,

Source§

type State = PodState<T, V>

Source§

impl<T, V> View<T> for BuildHandler<T, V>
where V: View<T>,

Source§

type State = <V as View<T>>::State

Source§

impl<T, V> View<T> for Button<V>
where V: View<T>,

Source§

type State = (ButtonState, PodState<T, V>)

Source§

impl<T, V> View<T> for Constrain<V>
where V: View<T>,

Source§

type State = <V as View<T>>::State

Source§

impl<T, V> View<T> for Container<V>
where V: View<T>,

Source§

impl<T, V> View<T> for CursorSetter<V>
where V: View<T>,

Source§

type State = <V as View<T>>::State

Source§

impl<T, V> View<T> for DrawHandler<T, V>
where V: View<T>,

Source§

type State = <V as View<T>>::State

Source§

impl<T, V> View<T> for EventHandler<T, V>
where V: View<T>,

Source§

type State = <V as View<T>>::State

Source§

impl<T, V> View<T> for Flexible<V>
where V: View<T>,

Source§

type State = <V as View<T>>::State

Source§

impl<T, V> View<T> for Opaque<V>
where V: View,

Source§

type State = <V as View>::State

Source§

impl<T, V> View<T> for Pad<V>
where V: View<T>,

Source§

type State = PodState<T, V>

Source§

impl<T, V> View<T> for Pod<V>
where V: View<T>,

Source§

type State = PodState<T, V>

Source§

impl<T, V> View<T> for RebuildHandler<T, V>
where V: View<T>,

Source§

type State = <V as View<T>>::State

Source§

impl<T, V> View<T> for Scroll<V>
where V: View<T>,

Source§

type State = (ScrollState, PodState<T, V>)

Source§

impl<T, V> View<T> for Stack<V>
where V: ViewSeq<T>,

Source§

type State = (StackState, SeqState<T, V>)

Source§

impl<T, V> View<T> for Tooltip<V>
where V: View<T>,

Source§

type State = (TooltipState, PodState<T, V>)

Source§

impl<T, V> View<T> for Transform<V>
where V: View<T>,

Source§

type State = PodState<T, V>

Source§

impl<T, V> View<T> for Trigger<V>
where V: View<T>,

Source§

type State = <V as View<T>>::State

Source§

impl<T, V> View<T> for Wrap<V>
where V: ViewSeq<T>,

Source§

type State = (WrapState, SeqState<T, V>)

Source§

impl<T, V> View<T> for ZStack<V>
where V: ViewSeq<T>,

Source§

type State = SeqState<T, V>

Source§

impl<T, V, D> View<T> for Memo<T, V, D>
where V: View<T>, D: PartialEq,

Source§

type State = MemoState<T, V, D>

Source§

impl<T, V, F> View<T> for Builder<F>
where V: View<T>, F: FnOnce(&mut BuildCx<'_, '_>, &mut T) -> V,

Source§

type State = (Pod<V>, PodState<T, V>)

Source§

impl<T, V, F> View<T> for Clickable<T, V, F>
where V: View<T>, F: FnMut(&mut EventCx<'_, '_>, &mut T) + 'static,

Source§

type State = PodState<T, V>

Source§

impl<T, V, F> View<T> for Suspense<V, F>
where V: View<T>, F: Future + Send + 'static, <F as Future>::Output: View<T> + Send,

Source§

type State = SuspenseState<T, F, V>

Source§

impl<T, V, P> View<T> for Popup<V, P>
where V: View<T>, P: View<T>,

Source§

type State = (PodState<T, V>, PodState<T, P>)

Source§

impl<T, V, S> View<T> for Animate<T, V, S>
where V: View<T>, S: Default,

Source§

type State = AnimateState<V, S, T>

Source§

impl<V, T> View<T> for Layout<V, T>
where V: View<T>,

Source§

type State = LayoutState<V, T>