cursive/src/views/text_view.rs

273 lines
7.9 KiB
Rust
Raw Normal View History

2016-07-14 06:25:54 +00:00
use Printer;
2016-10-02 22:22:29 +00:00
use With;
use XY;
use align::*;
2016-10-02 22:22:29 +00:00
use direction::Direction;
use event::*;
2016-07-04 23:04:32 +00:00
use unicode_width::UnicodeWidthStr;
2016-10-02 22:22:29 +00:00
use utils::{LinesIterator, Row};
use vec::Vec2;
2017-01-21 19:44:40 +00:00
use view::{SizeCache, View, ScrollBase, ScrollStrategy};
2016-07-13 04:01:11 +00:00
/// A simple view showing a fixed text
pub struct TextView {
content: String,
rows: Vec<Row>,
align: Align,
2016-07-17 00:08:17 +00:00
// If `false`, disable scrolling.
scrollable: bool,
2016-06-28 05:10:59 +00:00
// ScrollBase make many scrolling-related things easier
scrollbase: ScrollBase,
2017-01-21 19:44:40 +00:00
scroll_strategy: ScrollStrategy,
2016-07-13 04:01:11 +00:00
last_size: Option<XY<SizeCache>>,
width: Option<usize>,
}
2015-05-25 08:24:40 +00:00
// If the last character is a newline, strip it.
fn strip_last_newline(content: &mut String) {
if content.ends_with('\n') {
content.pop().unwrap();
}
}
impl TextView {
/// Creates a new TextView with the given content.
pub fn new<S: Into<String>>(content: S) -> Self {
let mut content = content.into();
strip_last_newline(&mut content);
TextView {
content: content,
rows: Vec::new(),
2016-07-17 00:08:17 +00:00
scrollable: true,
scrollbase: ScrollBase::new(),
2017-01-21 19:44:40 +00:00
scroll_strategy: ScrollStrategy::KeepRow,
align: Align::top_left(),
last_size: None,
width: None,
}
}
2016-07-17 00:08:17 +00:00
/// Enable or disable the view's scrolling capabilities.
///
/// When disabled, the view will never attempt to scroll
/// (and will always ask for the full height).
pub fn set_scrollable(&mut self, scrollable: bool) {
self.scrollable = scrollable;
}
/// Enable or disable the view's scrolling capabilities.
///
/// When disabled, the view will never attempt to scroll
/// (and will always ask for the full height).
///
/// Chainable variant.
pub fn scrollable(self, scrollable: bool) -> Self {
self.with(|s| s.set_scrollable(scrollable))
}
2015-06-03 22:36:51 +00:00
/// Sets the horizontal alignment for this view.
pub fn h_align(mut self, h: HAlign) -> Self {
self.align.h = h;
self
}
2015-06-03 22:36:51 +00:00
/// Sets the vertical alignment for this view.
pub fn v_align(mut self, v: VAlign) -> Self {
self.align.v = v;
self
}
2015-06-03 22:36:51 +00:00
/// Sets the alignment for this view.
pub fn align(mut self, a: Align) -> Self {
self.align = a;
self
}
/// Center the text horizontally and vertically inside the view.
pub fn center(mut self) -> Self {
self.align = Align::center();
self
}
2015-05-23 23:46:38 +00:00
/// Replace the text in this view.
pub fn set_content<S: Into<String>>(&mut self, content: S) {
let mut content = content.into();
strip_last_newline(&mut content);
self.content = content;
self.invalidate();
2015-05-23 17:33:29 +00:00
}
2015-05-23 23:46:38 +00:00
/// Returns the current text in this view.
pub fn get_content(&self) -> &str {
&self.content
}
fn is_cache_valid(&self, size: Vec2) -> bool {
match self.last_size {
None => false,
2016-07-13 04:01:11 +00:00
Some(ref last) => last.x.accept(size.x) && last.y.accept(size.y),
}
}
2017-01-21 19:44:40 +00:00
/// Defines the way scrolling is adjusted on content or size change.
///
/// The scroll strategy defines how the scrolling position is adjusted
/// when the size of the view or the content change.
///
/// It is reset to `ScrollStrategy::KeepRow` whenever the user scrolls
/// manually.
pub fn set_scroll_strategy(&mut self, strategy: ScrollStrategy) {
self.scroll_strategy = strategy;
}
/// Defines the way scrolling is adjusted on content or size change.
///
/// Chainable variant.
pub fn scroll_strategy(self, strategy: ScrollStrategy) -> Self {
self.with(|s| s.set_scroll_strategy(strategy))
}
fn adjust_scroll(&mut self) {
match self.scroll_strategy {
ScrollStrategy::StickToTop => self.scrollbase.scroll_top(),
ScrollStrategy::StickToBottom => self.scrollbase.scroll_bottom(),
ScrollStrategy::KeepRow => (),
};
}
fn compute_rows(&mut self, size: Vec2) {
if !self.is_cache_valid(size) {
2016-07-17 05:05:28 +00:00
self.last_size = None;
// Recompute
2016-07-17 05:05:28 +00:00
if size.x == 0 {
// Nothing we can do at this poing.
return;
}
self.rows = LinesIterator::new(&self.content, size.x).collect();
let mut scrollbar = 0;
2016-07-17 00:08:17 +00:00
if self.scrollable && self.rows.len() > size.y {
scrollbar = 2;
2016-07-17 05:05:28 +00:00
if size.x < scrollbar {
// Again, this is a lost cause.
return;
}
// If we're too high, include a scrollbar
self.rows = LinesIterator::new(&self.content,
size.x - scrollbar)
.collect();
2016-07-17 05:05:28 +00:00
if self.rows.is_empty() && !self.content.is_empty() {
return;
}
}
2016-07-17 00:08:17 +00:00
// Desired width, including the scrollbar.
self.width = self.rows
.iter()
.map(|row| row.width)
.max()
.map(|w| w + scrollbar);
2016-07-13 04:01:11 +00:00
// Our resulting size.
2016-07-17 00:08:17 +00:00
// We can't go lower, width-wise.
let mut my_size = Vec2::new(self.width.unwrap_or(0),
self.rows.len());
if self.scrollable && my_size.y > size.y {
my_size.y = size.y;
}
2016-07-17 05:05:28 +00:00
// println_stderr!("my: {:?} | si: {:?}", my_size, size);
2016-07-13 08:19:05 +00:00
self.last_size = Some(SizeCache::build(my_size, size));
2017-01-21 19:44:40 +00:00
self.scrollbase.set_heights(size.y, self.rows.len());
self.adjust_scroll();
}
}
// Invalidates the cache, so next call will recompute everything.
fn invalidate(&mut self) {
self.last_size = None;
}
}
2015-05-15 22:00:20 +00:00
impl View for TextView {
fn draw(&self, printer: &Printer) {
let h = self.rows.len();
let offset = self.align.v.get_offset(h, printer.size.y);
let printer =
&printer.sub_printer(Vec2::new(0, offset), printer.size, true);
self.scrollbase.draw(printer, |printer, i| {
let row = &self.rows[i];
let text = &self.content[row.start..row.end];
2016-07-04 23:04:32 +00:00
let l = text.width();
let x = self.align.h.get_offset(l, printer.size.x);
2016-03-15 22:37:57 +00:00
printer.print((x, 0), text);
});
2015-05-26 05:35:50 +00:00
}
fn on_event(&mut self, event: Event) -> EventResult {
if !self.scrollbase.scrollable() {
2015-05-26 05:35:50 +00:00
return EventResult::Ignored;
}
match event {
2016-06-28 05:40:11 +00:00
Event::Key(Key::Home) => self.scrollbase.scroll_top(),
Event::Key(Key::End) => self.scrollbase.scroll_bottom(),
Event::Key(Key::Up) if self.scrollbase.can_scroll_up() => {
self.scrollbase.scroll_up(1)
}
2016-06-28 05:40:11 +00:00
Event::Key(Key::Down) if self.scrollbase
.can_scroll_down() => self.scrollbase.scroll_down(1),
2016-06-28 05:40:11 +00:00
Event::Key(Key::PageDown) => self.scrollbase.scroll_down(10),
Event::Key(Key::PageUp) => self.scrollbase.scroll_up(10),
2015-05-26 05:35:50 +00:00
_ => return EventResult::Ignored,
}
2017-01-21 19:44:40 +00:00
// We just scrolled manually, so reset the scroll strategy.
self.scroll_strategy = ScrollStrategy::KeepRow;
2016-06-28 05:40:11 +00:00
EventResult::Consumed(None)
}
fn needs_relayout(&self) -> bool {
2016-07-13 04:01:11 +00:00
self.last_size.is_none()
}
fn get_min_size(&mut self, size: Vec2) -> Vec2 {
self.compute_rows(size);
2016-07-17 00:08:17 +00:00
// This is what we'd like
let mut ideal = Vec2::new(self.width.unwrap_or(0), self.rows.len());
if self.scrollable && ideal.y > size.y {
ideal.y = size.y;
}
ideal
}
fn take_focus(&mut self, _: Direction) -> bool {
self.scrollbase.scrollable()
}
fn layout(&mut self, size: Vec2) {
// Compute the text rows.
self.compute_rows(size);
self.scrollbase.set_heights(size.y, self.rows.len());
}
}