2016-07-29 06:05:08 +00:00
|
|
|
//! Base elements required to build views.
|
2016-07-14 03:52:24 +00:00
|
|
|
//!
|
|
|
|
//! Views are the main building blocks of your UI.
|
|
|
|
//!
|
|
|
|
//! A view can delegate part or all of its responsabilities to child views,
|
|
|
|
//! forming a view tree. The root of this tree is a `StackView` handled
|
|
|
|
//! directly by the `Cursive` element.
|
|
|
|
//!
|
|
|
|
//! # Layout
|
|
|
|
//!
|
|
|
|
//! The layout phase is when the size and location of each view is computed.
|
|
|
|
//!
|
|
|
|
//! Each view is given an area of the screen by the `View::layout()` method.
|
|
|
|
//! With this, the view is free to plan its content, including calling
|
|
|
|
//! `View::layout()` on its own children.
|
|
|
|
//!
|
|
|
|
//! In order to determine how much space should be given each child, parents
|
2017-01-24 06:52:29 +00:00
|
|
|
//! can use `View::required_size()` on them.
|
2016-07-14 03:52:24 +00:00
|
|
|
//!
|
|
|
|
//! ### Contracts
|
|
|
|
//!
|
|
|
|
//! When building new Views, you should respect these contracts:
|
|
|
|
//!
|
|
|
|
//! * By default, `View::layout()` should be called before any call to
|
|
|
|
//! `View::draw()` with the same available size. The only exceptions is
|
|
|
|
//! when both following conditions are met:
|
2016-07-15 03:27:15 +00:00
|
|
|
//! * The available size has not changed since the last call to
|
|
|
|
//! `View::layout()`
|
2016-07-14 03:52:24 +00:00
|
|
|
//! * `View::needs_relayout()` returns `false`
|
|
|
|
//!
|
|
|
|
//! In this case, it is safe to omit the call to `View::layout()`.
|
|
|
|
//!
|
2017-01-24 06:52:29 +00:00
|
|
|
//! * The value returned by `required_size` should be an actually viable size,
|
2016-07-14 03:52:24 +00:00
|
|
|
//! no matter what the request is. This means calling `View::layout()` with
|
2017-01-24 06:52:29 +00:00
|
|
|
//! a size returned by `required_size` is **never** an error.
|
2019-10-30 16:04:45 +00:00
|
|
|
//!
|
|
|
|
//! # Focus
|
|
|
|
//!
|
|
|
|
//! In most layouts, a single view is active at any given time. This focus may
|
|
|
|
//! change in response to events (for example presing the Tab key often moves
|
|
|
|
//! to the next item).
|
|
|
|
//!
|
|
|
|
//! This focus system involves two mechanics:
|
|
|
|
//! * Individual views can decide whether they can be focused or not, through
|
|
|
|
//! the `View::take_focus()` method. For example, unless disabled, a `Button`
|
|
|
|
//! would accept focus (and return `true` from `take_focus()`), but a simple
|
|
|
|
//! `TextView` or a divider would not (they would return `false`).
|
|
|
|
//! * View groups like `LinearLayout` listen to events ignored by their
|
|
|
|
//! children, and change their focus accordingly. For example, if the `Tab`
|
|
|
|
//! key is pressed but the currently focused child of the `LinearLayout`
|
|
|
|
//! ignores this event, then the `LinearLayout` will attempt to focus the
|
|
|
|
//! next child. If no child accept the focus, then it will ignore the event
|
|
|
|
//! as well.
|
|
|
|
//!
|
|
|
|
//! # Scrolling
|
|
|
|
//!
|
|
|
|
//! Most views do not scroll by themselves; instead, they should be wrapped in
|
|
|
|
//! a `ScrollView` to enable scrolling. The `ScrollView` will pretend that the
|
|
|
|
//! wrapped view has been given a large enough area to fit entirely, but in
|
|
|
|
//! reality only a part of that will be visible.
|
|
|
|
//!
|
|
|
|
//! The wrapped view can ignore this and just draw itself as usual: the
|
|
|
|
//! `Printer` will transparently translate the calls, and print commands
|
|
|
|
//! outside of the visible area will simply be ignored.
|
|
|
|
//!
|
|
|
|
//! In some cases however it may be interesting for the nested view to know
|
|
|
|
//! about this, maybe to avoid computing parts of the view that are not
|
|
|
|
//! visible. `Printer::output_size` and `Printer::content_offset` can be used
|
|
|
|
//! to find out what part of the view should actually be printed.
|
|
|
|
//!
|
|
|
|
//! ## Important Area
|
|
|
|
//!
|
|
|
|
//! Sometimes, the wrapped view needs to communicate back to the `ScrollView`
|
|
|
|
//! what part of the view is really important and should be kept visible.
|
|
|
|
//!
|
|
|
|
//! For example, imagine a vertical list of buttons. When the user selects the
|
|
|
|
//! next button, we want to scroll down a bit so the button becomes visible if
|
|
|
|
//! it wasn't. To achieve this, the vertical `LinearLayout` communicates its
|
|
|
|
//! "important area" (the currently active button) to the parent `ScrollView`,
|
|
|
|
//! and the `ScrollView` makes sure that this area stays in view.
|
2015-05-15 19:16:58 +00:00
|
|
|
|
2016-07-02 03:23:58 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod view_wrapper;
|
2015-06-08 03:58:10 +00:00
|
|
|
|
2016-07-02 02:19:43 +00:00
|
|
|
// Essentials components
|
2018-03-14 22:11:27 +00:00
|
|
|
mod any;
|
|
|
|
mod finder;
|
2018-03-16 23:09:47 +00:00
|
|
|
mod margins;
|
2018-06-11 06:29:10 +00:00
|
|
|
mod position;
|
2016-08-04 04:55:41 +00:00
|
|
|
mod size_cache;
|
|
|
|
mod size_constraint;
|
2018-06-11 06:29:10 +00:00
|
|
|
mod view_path;
|
2019-03-04 18:31:36 +00:00
|
|
|
mod view_trait;
|
2016-07-02 02:19:43 +00:00
|
|
|
|
|
|
|
// Helper bases
|
2018-06-11 06:29:10 +00:00
|
|
|
mod identifiable;
|
2020-01-06 19:51:50 +00:00
|
|
|
mod resizable;
|
2019-10-08 22:33:33 +00:00
|
|
|
#[macro_use]
|
2019-03-05 00:51:22 +00:00
|
|
|
pub mod scroll;
|
2019-03-11 18:52:58 +00:00
|
|
|
|
2019-03-05 00:51:22 +00:00
|
|
|
mod scroll_base;
|
2018-06-27 00:40:15 +00:00
|
|
|
mod scrollable;
|
2015-05-16 00:56:38 +00:00
|
|
|
|
2018-03-14 20:58:57 +00:00
|
|
|
mod into_boxed_view;
|
|
|
|
|
2018-03-14 22:11:27 +00:00
|
|
|
pub use self::any::AnyView;
|
|
|
|
pub use self::finder::{Finder, Selector};
|
2016-10-02 22:22:29 +00:00
|
|
|
pub use self::identifiable::Identifiable;
|
2018-03-14 22:11:27 +00:00
|
|
|
pub use self::into_boxed_view::IntoBoxedView;
|
2018-03-16 23:09:47 +00:00
|
|
|
pub use self::margins::Margins;
|
2016-07-10 02:05:51 +00:00
|
|
|
pub use self::position::{Offset, Position};
|
2020-01-06 19:51:50 +00:00
|
|
|
pub use self::resizable::Resizable;
|
2019-03-08 03:06:23 +00:00
|
|
|
pub use self::scroll::ScrollStrategy;
|
|
|
|
pub use self::scroll_base::ScrollBase;
|
2018-06-27 00:40:15 +00:00
|
|
|
pub use self::scrollable::Scrollable;
|
2016-08-04 04:55:41 +00:00
|
|
|
pub use self::size_cache::SizeCache;
|
|
|
|
pub use self::size_constraint::SizeConstraint;
|
2015-06-08 03:58:10 +00:00
|
|
|
pub use self::view_path::ViewPath;
|
2019-03-04 18:31:36 +00:00
|
|
|
pub use self::view_trait::View;
|
2015-06-08 03:58:10 +00:00
|
|
|
pub use self::view_wrapper::ViewWrapper;
|
2020-01-06 19:51:50 +00:00
|
|
|
|
|
|
|
#[deprecated(note = "Boxable is being renamed to Resizable")]
|
|
|
|
pub use self::resizable::Resizable as Boxable;
|