[][src]Struct fui::form::FormView

pub struct FormView { /* fields omitted */ }

Aggregates Fields and handles process of submitting (or canceling).

Methods

impl FormView[src]

pub fn new() -> Self[src]

Creates a new FormView with two buttons submit and cancel.

pub fn field<V: FormField + 'static>(self, field: V) -> Self[src]

Appends field to field list.

pub fn boxed_field(self, field: Box<dyn FormField>) -> Self[src]

Appends boxed field to field list.

pub fn set_on_submit<F>(&mut self, callback: F) where
    F: Fn(&mut Cursive, Value) + 'static, 
[src]

Sets the function to be called when submit is triggered.

pub fn on_submit<F>(self, callback: F) -> Self where
    F: Fn(&mut Cursive, Value) + 'static, 
[src]

Sets the function to be called when submit is triggered.

Chainable variant.

pub fn set_on_cancel<F>(&mut self, callback: F) where
    F: Fn(&mut Cursive) + 'static, 
[src]

Sets the function to be called when cancel is triggered.

pub fn on_cancel<F>(self, callback: F) -> Self where
    F: Fn(&mut Cursive) + 'static, 
[src]

Sets the function to be called when cancel is triggered.

Chainable variant.

pub fn fields2clap_args(&self) -> Vec<Arg>[src]

Translates form's fields to clap::Arg.

pub fn clap_arg_matches2value(&self, arg_matches: &ArgMatches) -> Value[src]

Translates clap::ArgMatches to serde_json::Value based on fields.

pub fn validate(&mut self) -> Result<Value, FormErrors>[src]

Validates form.

pub fn title(self, title: &str) -> Self[src]

Sets title of the form on the top of it.

pub fn get_fields(&self) -> &[Box<dyn FormField>][src]

Gets fields of FormView

pub fn get_field_value(&self, field_label: &str) -> Option<String>[src]

Gets value of a field with label equal to field_label

Returns first occurence when a label occures more than once.

Trait Implementations

impl<'a, '_, '_> From<&'a App<'_, '_>> for FormView[src]

impl ViewWrapper for FormView[src]

type V = Dialog

Type that this view wraps.

fn wrap_draw(&self, printer: &Printer)[src]

Wraps the draw method.

fn wrap_required_size(&mut self, req: XY<usize>) -> XY<usize>[src]

Wraps the required_size method.

fn wrap_layout(&mut self, size: XY<usize>)[src]

Wraps the layout method.

fn wrap_take_focus(&mut self, source: Direction) -> bool[src]

Wraps the take_focus method.

fn wrap_call_on_any(
    &mut self,
    selector: &Selector,
    callback: Box<dyn FnMut(&mut (dyn Any + 'static)) + 'a>
)
[src]

Wraps the find method.

fn wrap_focus_view(&mut self, selector: &Selector) -> Result<(), ()>[src]

Wraps the focus_view method.

fn wrap_needs_relayout(&self) -> bool[src]

Wraps the needs_relayout method.

fn wrap_important_area(&self, size: XY<usize>) -> Rect[src]

Wraps the important_area method.

Auto Trait Implementations

impl !Send for FormView

impl !Sync for FormView

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, 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.

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

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

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

impl<T> Scrollable for T where
    T: View
[src]

fn scrollable(self) -> ScrollView<Self>[src]

Wraps self in a ScrollView.

impl<T> Finder for T where
    T: View
[src]

fn call_on_id<V, F, R>(&mut self, id: &str, callback: F) -> Option<R> where
    F: FnOnce(&mut V) -> R,
    V: View + Any
[src]

Convenient method to use call_on with a view::Selector::Id.

fn find_id<V>(
    &mut self,
    id: &str
) -> Option<OwningHandle<OwningRef<Rc<RefCell<V>>, RefCell<V>>, RefMut<'static, V>>> where
    V: View + Any
[src]

Convenient method to find a view wrapped in an [IdView]. Read more

impl<T> With for T[src]

fn with<F>(self, f: F) -> Self where
    F: FnOnce(&mut Self), 
[src]

Calls the given closure on self.

fn try_with<E, F>(self, f: F) -> Result<Self, E> where
    F: FnOnce(&mut Self) -> Result<(), E>, 
[src]

Calls the given closure on self.

fn with_if<F>(self, condition: bool, f: F) -> Self where
    F: FnOnce(&mut Self), 
[src]

Calls the given closure if condition == true.

impl<T> View for T where
    T: ViewWrapper
[src]

impl<T> Boxable for T where
    T: View
[src]

fn boxed(self, width: SizeConstraint, height: SizeConstraint) -> BoxView<Self>[src]

Wraps self in a BoxView with the given size constraints.

fn fixed_size<S>(self, size: S) -> BoxView<Self> where
    S: Into<XY<usize>>, 
[src]

Wraps self into a fixed-size BoxView.

fn fixed_width(self, width: usize) -> BoxView<Self>[src]

Wraps self into a fixed-width BoxView.

fn fixed_height(self, height: usize) -> BoxView<Self>[src]

Wraps self into a fixed-width BoxView.

fn full_screen(self) -> BoxView<Self>[src]

Wraps self into a full-screen BoxView.

fn full_width(self) -> BoxView<Self>[src]

Wraps self into a full-width BoxView.

fn full_height(self) -> BoxView<Self>[src]

Wraps self into a full-height BoxView.

fn max_size<S>(self, size: S) -> BoxView<Self> where
    S: Into<XY<usize>>, 
[src]

Wraps self into a limited-size BoxView.

fn max_width(self, max_width: usize) -> BoxView<Self>[src]

Wraps self into a limited-width BoxView.

fn max_height(self, max_height: usize) -> BoxView<Self>[src]

Wraps self into a limited-height BoxView.

fn min_size<S>(self, size: S) -> BoxView<Self> where
    S: Into<XY<usize>>, 
[src]

Wraps self into a BoxView at least sized size.

fn min_width(self, min_width: usize) -> BoxView<Self>[src]

Wraps self in a BoxView at least min_width wide.

fn min_height(self, min_height: usize) -> BoxView<Self>[src]

Wraps self in a BoxView at least min_height tall.

impl<T> Identifiable for T where
    T: View
[src]

fn with_id<S>(self, id: S) -> IdView<Self> where
    S: Into<String>, 
[src]

Wraps this view into an IdView with the given id. Read more

impl<T> AnyView for T where
    T: View
[src]

fn as_any(&self) -> &(dyn Any + 'static)[src]

Downcast self to a Any.

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)[src]

Downcast self to a mutable Any.

impl<T> IntoBoxedView for T where
    T: View
[src]

impl<T> Erased for T