1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
//! Widget abstraction and some basic Widgets useful for creating basic building blocks of text
//! user interfaces.
//!
//! # Example:
//! ```no_run
//! use unsegen::base::*;
//! use unsegen::widget::*;
//! use unsegen::widget::builtin::*;
//! use std::io::stdout;
//!
//! struct MyWidget {
//! prompt: PromptLine,
//! buffer: LogViewer,
//! }
//!
//! impl MyWidget {
//! fn as_widget<'a>(&'a self) -> impl Widget + 'a {
//! VLayout::new().alternating(StyleModifier::new().invert(true))
//! .widget("Some text on top")
//! .widget(self.prompt.as_widget())
//! .widget(self.buffer.as_widget())
//! .widget("Some text below")
//! }
//! }
//!
//!
//! fn main() {
//! let stdout = stdout();
//! let mut term = Terminal::new(stdout.lock()).unwrap();
//! let mut widget = MyWidget {
//! prompt: PromptLine::with_prompt(" > ".to_owned()),
//! buffer: LogViewer::new(),
//! };
//!
//! loop {
//! // Put application logic here: read input, chain behavior, react to other stuff
//! {
//! let win = term.create_root_window();
//! widget.as_widget().draw(win, RenderingHints::new().active(true));
//! }
//! term.present();
//! }
//! }
//! ```
pub use *;
pub use *;
use *;
/// Count the number of grapheme clusters in the given string.
///
/// A thin convenience wrapper around unicode_segmentation.
/// Calculate the (monospace) width of the given string.
///
/// A thin convenience wrapper around unicode_width.