meli/src/components/utilities.rs

1629 lines
62 KiB
Rust
Raw Normal View History

2018-08-07 15:01:15 +03:00
/*
* meli
2018-08-07 15:01:15 +03:00
*
* Copyright 2017-2018 Manos Pitsidianakis
*
* This file is part of meli.
*
* meli is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* meli is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with meli. If not, see <http://www.gnu.org/licenses/>.
*/
2018-07-18 10:42:52 +03:00
/*! Various useful components that can be used in a generic fashion.
2018-07-27 21:37:56 +03:00
*/
use super::*;
use text_processing::Reflow;
2018-07-11 17:07:51 +03:00
mod pager;
pub use self::pager::*;
mod widgets;
pub use self::widgets::*;
2018-07-11 17:07:51 +03:00
mod layouts;
pub use self::layouts::*;
2018-07-11 17:07:51 +03:00
mod dialogs;
pub use self::dialogs::*;
2020-07-04 15:59:09 +03:00
use crate::jobs::JobId;
use std::collections::HashSet;
2018-07-11 17:07:51 +03:00
2020-02-25 21:56:34 +02:00
#[derive(Default, Debug, Clone)]
pub struct SearchPattern {
pattern: String,
positions: Vec<(usize, usize)>,
cursor: usize,
movement: Option<PageMovement>,
}
2018-07-14 15:04:42 +03:00
/// Status bar.
#[derive(Debug)]
2018-07-14 15:04:42 +03:00
pub struct StatusBar {
container: Box<dyn Component>,
2018-07-14 15:04:42 +03:00
status: String,
status_message: String,
ex_buffer: Field,
ex_buffer_cmd_history_pos: Option<usize>,
2018-08-26 19:29:12 +03:00
display_buffer: String,
2018-07-15 01:27:13 +03:00
mode: UIMode,
mouse: bool,
2018-07-15 01:27:13 +03:00
height: usize,
2018-07-14 15:04:42 +03:00
dirty: bool,
2019-04-10 22:01:02 +03:00
id: ComponentId,
progress_spinner: ProgressSpinner,
in_progress_jobs: HashSet<JobId>,
done_jobs: HashSet<JobId>,
scroll_contexts: IndexMap<ComponentId, ScrollContext>,
auto_complete: AutoComplete,
cmd_history: Vec<String>,
2018-07-14 15:04:42 +03:00
}
impl fmt::Display for StatusBar {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "status bar")
}
}
2018-07-14 15:04:42 +03:00
impl StatusBar {
pub fn new(context: &Context, container: Box<dyn Component>) -> Self {
let mut progress_spinner = ProgressSpinner::new(20, context);
match context.settings.terminal.progress_spinner_sequence.as_ref() {
Some(conf::terminal::ProgressSpinnerSequence::Integer(k)) => {
progress_spinner.set_kind(*k);
}
Some(conf::terminal::ProgressSpinnerSequence::Custom {
ref frames,
ref interval_ms,
}) => {
progress_spinner.set_custom_kind(frames.clone(), *interval_ms);
}
None => {}
}
2018-07-14 15:04:42 +03:00
StatusBar {
2018-08-07 15:01:15 +03:00
container,
2018-07-15 01:27:13 +03:00
status: String::with_capacity(256),
status_message: String::with_capacity(256),
ex_buffer: Field::Text(UText::new(String::with_capacity(256)), None),
ex_buffer_cmd_history_pos: None,
2018-08-26 19:29:12 +03:00
display_buffer: String::with_capacity(8),
2018-07-14 15:04:42 +03:00
dirty: true,
2018-07-15 01:27:13 +03:00
mode: UIMode::Normal,
mouse: context.settings.terminal.use_mouse.is_true(),
2018-07-15 01:27:13 +03:00
height: 1,
2019-04-11 00:04:17 +03:00
id: ComponentId::new_v4(),
auto_complete: AutoComplete::new(Vec::new()),
progress_spinner,
in_progress_jobs: HashSet::default(),
done_jobs: HashSet::default(),
scroll_contexts: IndexMap::default(),
cmd_history: crate::command::history::old_cmd_history(),
2018-07-14 15:04:42 +03:00
}
}
2018-07-14 15:04:42 +03:00
fn draw_status_bar(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context) {
let mut attribute = crate::conf::value(context, "status.bar");
if !context.settings.terminal.use_color() {
attribute.attrs |= Attr::REVERSE;
}
let (x, y) = write_string_to_grid(
&self.status,
grid,
attribute.fg,
attribute.bg,
attribute.attrs,
area,
None,
);
for c in grid.row_iter(x..(get_x(bottom_right!(area)) + 1), y) {
grid[c]
.set_ch(' ')
.set_fg(attribute.fg)
.set_bg(attribute.bg)
.set_attrs(attribute.attrs);
}
let offset = self.status.find('|').unwrap_or_else(|| self.status.len());
2019-11-19 20:40:28 +02:00
if y < get_y(bottom_right!(area)) + 1 {
for x in get_x(upper_left!(area))
..std::cmp::min(
get_x(upper_left!(area)) + offset,
get_x(bottom_right!(area)),
)
{
grid[(x, y)].set_attrs(attribute.attrs | Attr::BOLD);
2019-11-19 20:40:28 +02:00
}
}
if let Some((
_,
ScrollContext {
shown_lines,
total_lines,
has_more_lines,
},
)) = self.scroll_contexts.last()
{
let s = format!(
"| {shown_percentage}% {line_desc}{shown_lines}/{total_lines}{has_more_lines}",
line_desc = if grid.ascii_drawing { "lines:" } else { "" },
shown_percentage = (*shown_lines as f32 / (*total_lines as f32) * 100.0) as usize,
shown_lines = *shown_lines,
total_lines = *total_lines,
has_more_lines = if *has_more_lines { "(+)" } else { "" }
);
write_string_to_grid(
&s,
grid,
attribute.fg,
attribute.bg,
attribute.attrs,
((x + 1, y), bottom_right!(area)),
None,
);
}
let (mut x, y) = bottom_right!(area);
if self.progress_spinner.is_active() {
x = x.saturating_sub(1 + self.progress_spinner.width);
}
if self.progress_spinner.is_dirty() {
self.progress_spinner.draw(
grid,
(
pos_dec(bottom_right!(area), (self.progress_spinner.width, 0)),
bottom_right!(area),
),
context,
);
}
for (idx, c) in self.display_buffer.chars().rev().enumerate() {
if let Some(cell) = grid.get_mut(x.saturating_sub(idx).saturating_sub(1), y) {
cell.set_ch(c);
} else {
break;
}
}
2018-08-26 19:29:12 +03:00
2018-07-14 15:04:42 +03:00
context.dirty_areas.push_back(area);
}
2020-01-27 17:32:12 +02:00
fn draw_command_bar(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context) {
clear_area(grid, area, crate::conf::value(context, "theme_default"));
let (_, y) = write_string_to_grid(
self.ex_buffer.as_str(),
2018-07-27 21:37:56 +03:00
grid,
Color::Byte(219),
Color::Byte(88),
Attr::DEFAULT,
2018-07-27 21:37:56 +03:00
area,
None,
2018-07-27 21:37:56 +03:00
);
if let Some(ref mut cell) = grid.get_mut(
pos_inc(upper_left!(area), (self.ex_buffer.cursor(), 0)).0,
y,
) {
cell.set_attrs(Attr::UNDERLINE);
}
change_colors(grid, area, Color::Byte(219), Color::Byte(88));
2018-07-15 01:27:13 +03:00
context.dirty_areas.push_back(area);
}
2018-07-11 17:07:51 +03:00
}
2018-07-14 15:04:42 +03:00
impl Component for StatusBar {
fn draw(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context) {
if !is_valid_area!(area) {
return;
}
2018-07-14 15:04:42 +03:00
let upper_left = upper_left!(area);
let bottom_right = bottom_right!(area);
2018-07-15 01:27:13 +03:00
2018-07-14 15:04:42 +03:00
let total_rows = get_y(bottom_right) - get_y(upper_left);
2018-07-15 01:27:13 +03:00
if total_rows <= self.height {
2018-07-14 15:04:42 +03:00
return;
}
2018-07-15 01:27:13 +03:00
let height = self.height;
2018-07-14 15:04:42 +03:00
2019-04-10 22:01:02 +03:00
self.container.draw(
2018-07-27 21:37:56 +03:00
grid,
(
upper_left,
(get_x(bottom_right), get_y(bottom_right) - height),
),
context,
);
2018-07-15 01:27:13 +03:00
self.dirty = false;
2018-07-27 21:37:56 +03:00
self.draw_status_bar(
grid,
(set_y(upper_left, get_y(bottom_right)), bottom_right),
context,
);
if self.mode != UIMode::Command && !self.is_dirty() {
return;
}
2018-07-15 01:27:13 +03:00
match self.mode {
2018-07-27 21:37:56 +03:00
UIMode::Normal => {}
UIMode::Command => {
self.draw_command_bar(
2018-07-27 21:37:56 +03:00
grid,
(
set_y(upper_left, get_y(bottom_right) - height + 1),
set_y(bottom_right, get_y(bottom_right) - height + 1),
),
context,
);
/* don't autocomplete for less than 3 characters */
if self.ex_buffer.as_str().split_graphemes().len() <= 2 {
return;
}
2020-05-10 21:14:49 +03:00
let mut unique_suggestions: HashSet<&str> = HashSet::default();
let mut suggestions: Vec<AutoCompleteEntry> = self
.cmd_history
.iter()
.rev()
.filter_map(|h| {
let sug = self.ex_buffer.as_str();
if h.starts_with(sug) && !unique_suggestions.contains(sug) {
unique_suggestions.insert(sug);
Some(h.clone().into())
} else {
None
}
})
.collect();
let command_completion_suggestions =
crate::command::command_completion_suggestions(self.ex_buffer.as_str());
suggestions.extend(command_completion_suggestions.iter().filter_map(|e| {
if !unique_suggestions.contains(e.as_str()) {
unique_suggestions.insert(e.as_str());
Some(e.clone().into())
} else {
None
}
}));
/*
suggestions.extend(crate::command::COMMAND_COMPLETION.iter().filter_map(|e| {
if e.0.starts_with(self.ex_buffer.as_str()) {
Some(e.into())
} else {
None
}
}));
*/
if let Some(p) = self
.ex_buffer
.as_str()
.split_whitespace()
.last()
.map(std::path::Path::new)
{
suggestions.extend(
debug!(debug!(p).complete(true))
.into_iter()
.map(|m| format!("{}{}", self.ex_buffer.as_str(), m).into()),
);
}
2019-06-19 19:39:23 +03:00
if suggestions.is_empty() && !self.auto_complete.suggestions().is_empty() {
self.auto_complete.set_suggestions(suggestions);
/* redraw self.container because we have got ridden of an autocomplete
* box, and it must be drawn over */
self.container.set_dirty(true);
return;
}
/* redraw self.container because we have less suggestions than before */
if suggestions.len() < self.auto_complete.suggestions().len() {
self.container.set_dirty(true);
}
suggestions.sort_by(|a, b| a.entry.cmp(&b.entry));
suggestions.dedup_by(|a, b| &a.entry == &b.entry);
if self.auto_complete.set_suggestions(suggestions) {
let len = self.auto_complete.suggestions().len() - 1;
self.auto_complete.set_cursor(len);
self.container.set_dirty(true);
}
let hist_height = std::cmp::min(15, self.auto_complete.suggestions().len());
let hist_area = if height < self.auto_complete.suggestions().len() {
let hist_area = (
(
get_x(upper_left),
std::cmp::min(
get_y(bottom_right) - height - hist_height + 1,
get_y(pos_dec(bottom_right, (0, height))),
),
),
pos_dec(bottom_right, (0, height)),
);
ScrollBar::default().set_show_arrows(false).draw(
grid,
hist_area,
context,
self.auto_complete.cursor(),
hist_height,
self.auto_complete.suggestions().len(),
);
change_colors(
grid,
hist_area,
Color::Byte(197), // DeepPink2,
Color::Byte(174), //LightPink3
);
context.dirty_areas.push_back(hist_area);
hist_area
} else {
(
(
get_x(upper_left),
std::cmp::min(
get_y(bottom_right) - height - hist_height + 1,
get_y(pos_dec(bottom_right, (0, height))),
),
),
pos_dec(bottom_right, (0, height)),
)
};
let offset = if hist_height
> (self.auto_complete.suggestions().len() - self.auto_complete.cursor())
{
self.auto_complete.suggestions().len() - hist_height
} else {
self.auto_complete.cursor()
};
clear_area(
grid,
hist_area,
crate::conf::value(context, "theme_default"),
);
if hist_height > 0 {
change_colors(
grid,
hist_area,
Color::Byte(88), // DarkRed,
Color::Byte(174), //LightPink3
);
}
for (y_offset, s) in self
.auto_complete
.suggestions()
.iter()
.skip(offset)
.take(hist_height)
.enumerate()
{
let (x, y) = write_string_to_grid(
s.as_str(),
grid,
Color::Byte(88), // DarkRed,
Color::Byte(174), //LightPink3
Attr::DEFAULT,
(
set_y(
upper_left!(hist_area),
get_y(bottom_right!(hist_area)) - hist_height + y_offset + 1,
),
bottom_right!(hist_area),
),
Some(get_x(upper_left!(hist_area))),
);
write_string_to_grid(
&s.description,
grid,
Color::White,
Color::Byte(174),
Attr::DEFAULT,
((x + 2, y), bottom_right!(hist_area)),
None,
);
if y_offset + offset == self.auto_complete.cursor() {
change_colors(
grid,
(
set_y(
upper_left!(hist_area),
get_y(bottom_right!(hist_area)) - hist_height + y_offset + 1,
),
set_y(
bottom_right!(hist_area),
get_y(bottom_right!(hist_area)) - hist_height + y_offset + 1,
),
),
Color::Byte(88), // DarkRed,
Color::Byte(173), //LightSalmon3
);
write_string_to_grid(
&s.as_str()[self.ex_buffer.as_str().len()..],
grid,
Color::Byte(97), // MediumPurple3,
Color::Byte(88), //LightPink3
Attr::DEFAULT,
(
(
get_x(upper_left)
+ self.ex_buffer.as_str().split_graphemes().len(),
get_y(bottom_right) - height + 1,
),
set_y(bottom_right, get_y(bottom_right) - height + 1),
),
None,
);
}
}
context.dirty_areas.push_back(hist_area);
2018-07-27 21:37:56 +03:00
}
_ => {}
2018-07-15 01:27:13 +03:00
}
2018-07-14 15:04:42 +03:00
}
2019-02-26 17:50:47 +02:00
fn process_event(&mut self, event: &mut UIEvent, context: &mut Context) -> bool {
2019-04-10 22:01:02 +03:00
if self.container.process_event(event, context) {
return true;
}
match event {
UIEvent::ConfigReload { old_settings: _ } => {
let mut progress_spinner = ProgressSpinner::new(20, context);
match context.settings.terminal.progress_spinner_sequence.as_ref() {
Some(conf::terminal::ProgressSpinnerSequence::Integer(k)) => {
progress_spinner.set_kind(*k);
}
Some(conf::terminal::ProgressSpinnerSequence::Custom {
ref frames,
ref interval_ms,
}) => {
progress_spinner.set_custom_kind(frames.clone(), *interval_ms);
}
None => {}
}
if self.progress_spinner.is_active() {
progress_spinner.start();
}
self.progress_spinner = progress_spinner;
self.mouse = context.settings.terminal.use_mouse.is_true();
self.set_dirty(true);
self.container.set_dirty(true);
}
2019-04-10 23:37:20 +03:00
UIEvent::ChangeMode(m) => {
let offset = self.status.find('|').unwrap_or_else(|| self.status.len());
self.status.replace_range(
..offset,
&format!(
"{} {}",
m,
if self.mouse {
context
.settings
.terminal
.mouse_flag
.as_ref()
.map(|s| s.as_str())
.unwrap_or("🖱️ ")
} else {
""
},
),
);
self.set_dirty(true);
self.container.set_dirty(true);
2018-08-07 15:01:15 +03:00
self.mode = *m;
2018-07-15 01:27:13 +03:00
match m {
UIMode::Normal => {
self.height = 1;
2018-08-07 16:14:06 +03:00
if !self.ex_buffer.is_empty() {
2019-04-10 23:37:20 +03:00
context
.replies
.push_back(UIEvent::Command(self.ex_buffer.as_str().to_string()));
}
2020-06-06 23:22:26 +03:00
if parse_command(&self.ex_buffer.as_str().as_bytes()).is_ok()
2019-07-06 12:47:27 +03:00
&& self.cmd_history.last().map(String::as_str)
!= Some(self.ex_buffer.as_str())
2019-07-06 12:47:27 +03:00
{
crate::command::history::log_cmd(self.ex_buffer.as_str().to_string());
2019-07-06 12:47:27 +03:00
self.cmd_history.push(self.ex_buffer.as_str().to_string());
2018-08-07 16:14:06 +03:00
}
self.ex_buffer.clear();
self.ex_buffer_cmd_history_pos.take();
2018-07-27 21:37:56 +03:00
}
UIMode::Command => {
2018-07-15 01:27:13 +03:00
self.height = 2;
2018-07-27 21:37:56 +03:00
}
_ => {
self.height = 1;
}
2018-07-15 01:27:13 +03:00
};
2018-07-27 21:37:56 +03:00
}
UIEvent::CmdInput(Key::Char('\t')) => {
if let Some(suggestion) = self.auto_complete.get_suggestion().or_else(|| {
if self.auto_complete.cursor() == 0 {
self.auto_complete
.suggestions()
.last()
.map(|e| e.entry.clone())
} else {
None
}
}) {
let mut utext = UText::new(suggestion);
let len = utext.as_str().len();
utext.set_cursor(len);
self.container.set_dirty(true);
self.set_dirty(true);
self.ex_buffer = Field::Text(utext, None);
}
}
UIEvent::CmdInput(Key::Char(c)) => {
2018-07-15 01:27:13 +03:00
self.dirty = true;
self.ex_buffer
.process_event(&mut UIEvent::InsertInput(Key::Char(*c)), context);
return true;
2018-07-27 21:37:56 +03:00
}
UIEvent::CmdInput(Key::Paste(s)) => {
2019-08-26 19:45:14 +03:00
self.dirty = true;
self.ex_buffer
.process_event(&mut UIEvent::InsertInput(Key::Paste(s.clone())), context);
return true;
}
UIEvent::CmdInput(Key::Ctrl('u')) => {
2018-08-07 16:14:06 +03:00
self.dirty = true;
self.ex_buffer.clear();
self.ex_buffer_cmd_history_pos.take();
return true;
2018-08-07 16:14:06 +03:00
}
UIEvent::CmdInput(Key::Up) => {
self.auto_complete.dec_cursor();
self.dirty = true;
}
UIEvent::CmdInput(Key::Down) => {
self.auto_complete.inc_cursor();
self.dirty = true;
}
UIEvent::CmdInput(Key::Left) => {
if let Field::Text(ref mut utext, _) = self.ex_buffer {
utext.cursor_dec();
} else {
unsafe {
std::hint::unreachable_unchecked();
}
}
self.dirty = true;
}
UIEvent::CmdInput(Key::Right) => {
if let Field::Text(ref mut utext, _) = self.ex_buffer {
utext.cursor_inc();
} else {
unsafe {
std::hint::unreachable_unchecked();
}
}
self.dirty = true;
}
UIEvent::CmdInput(Key::Ctrl('p')) => {
if self.cmd_history.is_empty() {
return true;
}
let pos = self.ex_buffer_cmd_history_pos.map(|p| p + 1).unwrap_or(0);
let pos = Some(std::cmp::min(pos, self.cmd_history.len().saturating_sub(1)));
if pos != self.ex_buffer_cmd_history_pos {
let mut utext = UText::new(
self.cmd_history[self.cmd_history.len().saturating_sub(1) - pos.unwrap()]
.clone(),
);
let len = utext.as_str().len();
utext.set_cursor(len);
self.container.set_dirty(true);
self.set_dirty(true);
self.ex_buffer = Field::Text(utext, None);
self.ex_buffer_cmd_history_pos = pos;
self.dirty = true;
}
return true;
}
UIEvent::CmdInput(Key::Ctrl('n')) => {
if self.cmd_history.is_empty() {
return true;
}
if Some(0) == self.ex_buffer_cmd_history_pos {
self.ex_buffer_cmd_history_pos = None;
self.ex_buffer.clear();
self.dirty = true;
} else if self.ex_buffer_cmd_history_pos.is_some() {
let pos = self.ex_buffer_cmd_history_pos.map(|p| p - 1);
let mut utext = UText::new(
self.cmd_history[self.cmd_history.len().saturating_sub(1) - pos.unwrap()]
.clone(),
);
let len = utext.as_str().len();
utext.set_cursor(len);
self.container.set_dirty(true);
self.set_dirty(true);
self.ex_buffer = Field::Text(utext, None);
self.ex_buffer_cmd_history_pos = pos;
self.dirty = true;
}
return true;
}
UIEvent::CmdInput(k @ Key::Backspace) | UIEvent::CmdInput(k @ Key::Ctrl(_)) => {
self.dirty = true;
self.ex_buffer
.process_event(&mut UIEvent::InsertInput(k.clone()), context);
return true;
}
UIEvent::CmdInput(Key::Esc) => {
2020-07-25 13:00:23 +03:00
self.ex_buffer.clear();
context
.replies
.push_back(UIEvent::ChangeMode(UIMode::Normal));
self.dirty = true;
2020-07-25 13:00:23 +03:00
return true;
}
2019-04-10 23:37:20 +03:00
UIEvent::Resize => {
2018-07-16 13:36:28 +03:00
self.dirty = true;
2018-07-27 21:37:56 +03:00
}
2019-04-10 23:37:20 +03:00
UIEvent::StatusEvent(StatusEvent::BufClear) => {
2018-08-26 19:29:12 +03:00
self.display_buffer.clear();
self.dirty = true;
}
2019-04-10 23:37:20 +03:00
UIEvent::StatusEvent(StatusEvent::BufSet(s)) => {
2018-08-26 19:29:12 +03:00
self.display_buffer = s.clone();
self.dirty = true;
}
UIEvent::StatusEvent(StatusEvent::UpdateStatus(ref mut s)) => {
self.status_message.clear();
self.status_message.push_str(s.as_str());
self.status = format!(
"{} {}| {}",
self.mode,
if self.mouse {
context
.settings
.terminal
.mouse_flag
.as_ref()
.map(|s| s.as_str())
.unwrap_or("🖱️ ")
} else {
""
},
&self.status_message,
);
self.dirty = true;
}
UIEvent::StatusEvent(StatusEvent::SetMouse(val)) => {
self.mouse = *val;
self.status = format!(
"{} {}| {}",
self.mode,
if self.mouse {
context
.settings
.terminal
.mouse_flag
.as_ref()
.map(|s| s.as_str())
.unwrap_or("🖱️ ")
} else {
""
},
&self.status_message,
);
self.dirty = true;
}
2020-07-24 22:06:19 +03:00
UIEvent::StatusEvent(StatusEvent::JobCanceled(ref job_id))
| UIEvent::StatusEvent(StatusEvent::JobFinished(ref job_id)) => {
self.done_jobs.insert(*job_id);
self.in_progress_jobs.remove(job_id);
if self.in_progress_jobs.is_empty() {
self.progress_spinner.stop();
}
self.progress_spinner.set_dirty(true);
}
UIEvent::StatusEvent(StatusEvent::NewJob(ref job_id))
if !self.done_jobs.contains(job_id) =>
{
if self.in_progress_jobs.is_empty() {
self.progress_spinner.start();
}
self.progress_spinner.set_dirty(true);
self.in_progress_jobs.insert(*job_id);
}
UIEvent::StatusEvent(StatusEvent::ScrollUpdate(ScrollUpdate::End(component_id))) => {
if self.scroll_contexts.remove(component_id).is_some() {
self.dirty = true;
}
return true;
}
UIEvent::StatusEvent(StatusEvent::ScrollUpdate(ScrollUpdate::Update {
id,
context,
})) => {
if self.scroll_contexts.insert(*id, *context) != Some(*context) {
self.dirty = true;
}
return true;
}
UIEvent::Timer(_) => {
if self.progress_spinner.process_event(event, context) {
return true;
}
}
2018-07-27 21:37:56 +03:00
_ => {}
2018-07-14 15:04:42 +03:00
}
2018-08-23 15:36:52 +03:00
false
2018-07-14 15:04:42 +03:00
}
2018-07-14 15:04:42 +03:00
fn is_dirty(&self) -> bool {
self.dirty || self.container.is_dirty() || self.progress_spinner.is_dirty()
2018-07-14 15:04:42 +03:00
}
fn set_dirty(&mut self, value: bool) {
self.dirty = value;
self.progress_spinner.set_dirty(value);
}
2019-03-02 19:25:11 +02:00
fn get_shortcuts(&self, context: &Context) -> ShortcutMaps {
self.container.get_shortcuts(context)
2019-03-02 19:25:11 +02:00
}
2019-04-10 22:01:02 +03:00
fn id(&self) -> ComponentId {
self.id
}
2019-04-10 22:01:02 +03:00
fn set_id(&mut self, id: ComponentId) {
self.id = id;
2018-08-23 15:36:52 +03:00
}
fn can_quit_cleanly(&mut self, context: &Context) -> bool {
self.container.can_quit_cleanly(context)
}
}
2018-08-03 13:46:08 +03:00
#[derive(Debug)]
pub struct Tabbed {
2019-03-25 13:59:29 +02:00
pinned: usize,
children: Vec<Box<dyn Component>>,
cursor_pos: usize,
2019-03-02 19:25:11 +02:00
show_shortcuts: bool,
2019-09-25 23:15:20 +03:00
help_screen_cursor: (usize, usize),
help_content: CellBuffer,
help_curr_views: ShortcutMaps,
2020-02-26 12:25:57 +02:00
help_search: Option<SearchPattern>,
theme_default: ThemeAttribute,
2019-03-14 12:10:29 +02:00
dirty: bool,
2019-04-10 22:01:02 +03:00
id: ComponentId,
}
impl Tabbed {
2020-02-26 16:23:02 +02:00
pub fn new(children: Vec<Box<dyn Component>>, context: &Context) -> Self {
2019-03-25 13:59:29 +02:00
let pinned = children.len();
2020-02-26 16:23:02 +02:00
let mut ret = Tabbed {
help_curr_views: children
.get(0)
.map(|c| c.get_shortcuts(context))
.unwrap_or_default(),
help_content: CellBuffer::default(),
help_screen_cursor: (0, 0),
help_search: None,
theme_default: crate::conf::value(context, "theme_default"),
pinned,
2019-04-10 22:01:02 +03:00
children,
cursor_pos: 0,
2019-03-02 19:25:11 +02:00
show_shortcuts: false,
2019-03-14 12:10:29 +02:00
dirty: true,
2019-04-11 00:04:17 +03:00
id: ComponentId::new_v4(),
2020-02-26 16:23:02 +02:00
};
ret.help_curr_views
.extend(ret.get_shortcuts(context).into_iter());
ret
}
fn draw_tabs(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context) {
2019-03-25 13:59:29 +02:00
let upper_left = upper_left!(area);
let bottom_right = bottom_right!(area);
2019-03-25 13:59:29 +02:00
let tab_bar_attribute = crate::conf::value(context, "tab.bar");
if self.children.is_empty() {
clear_area(grid, area, tab_bar_attribute);
return;
}
let tab_unfocused_attribute = crate::conf::value(context, "tab.unfocused");
let mut tab_focused_attribute = crate::conf::value(context, "tab.focused");
if !context.settings.terminal.use_color() {
tab_focused_attribute.attrs |= Attr::REVERSE;
}
2019-03-25 13:59:29 +02:00
let mut x = get_x(upper_left);
let y: usize = get_y(upper_left);
for (idx, c) in self.children.iter().enumerate() {
let ThemeAttribute { fg, bg, attrs } = if idx == self.cursor_pos {
tab_focused_attribute
} else {
tab_unfocused_attribute
};
let (x_, _y_) = write_string_to_grid(
&format!(" {} ", c),
grid,
fg,
bg,
attrs,
2019-03-25 13:59:29 +02:00
(set_x(upper_left, x), bottom_right!(area)),
None,
);
x = x_ + 1;
2019-03-25 13:59:29 +02:00
if idx == self.pinned.saturating_sub(1) {
x += 2;
}
if y != _y_ {
break;
}
if x > get_x(bottom_right) {
x = get_x(bottom_right);
break;
}
grid[(x_, _y_)]
.set_fg(tab_bar_attribute.fg)
.set_bg(tab_bar_attribute.bg)
.set_attrs(tab_bar_attribute.attrs);
}
let (cols, _) = grid.size();
let cslice: &mut [Cell] = grid;
let cslice_len = cslice.len();
2019-03-14 12:19:25 +02:00
for c in cslice[(y * cols) + x.saturating_sub(1)
..std::cmp::min((y * cols) + x.saturating_sub(1), cslice_len)]
.iter_mut()
{
c.set_ch(' ').set_bg(tab_unfocused_attribute.bg);
//.set_fg(tab_unfocused_attribute.bg)
//.set_bg(Color::Byte(7));
}
if self.cursor_pos == self.children.len() - 1 {
cslice[(y * cols) + x]
.set_ch('▍')
.set_fg(tab_unfocused_attribute.bg)
.set_bg(tab_unfocused_attribute.fg)
.set_attrs(tab_unfocused_attribute.attrs);
}
for c in grid.row_iter(x..cols, get_y(upper_left)) {
grid[c]
.set_fg(tab_bar_attribute.fg)
.set_bg(tab_bar_attribute.bg)
.set_attrs(tab_bar_attribute.attrs);
}
context.dirty_areas.push_back(area);
}
pub fn add_component(&mut self, new: Box<dyn Component>) {
2019-04-10 22:01:02 +03:00
self.children.push(new);
}
}
impl fmt::Display for Tabbed {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "tabs")
}
}
impl Component for Tabbed {
fn draw(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context) {
2019-03-14 12:10:29 +02:00
if self.dirty {
2019-03-14 12:19:25 +02:00
clear_area(
grid,
(
upper_left!(area),
set_x(upper_left!(area), get_x(bottom_right!(area))),
),
crate::conf::value(context, "tab.bar"),
2019-03-14 12:19:25 +02:00
);
2019-09-25 23:15:20 +03:00
context.dirty_areas.push_back((
upper_left!(area),
set_x(upper_left!(area), get_x(bottom_right!(area))),
));
2019-03-14 12:10:29 +02:00
}
2019-09-25 23:15:20 +03:00
/* If children are dirty but self isn't and the shortcuts panel is visible, it will get
* overwritten. */
let must_redraw_shortcuts: bool = self.show_shortcuts && !self.dirty && self.is_dirty();
/* children should be drawn after the shortcuts/help panel lest they overwrite the panel on
* the grid. the drawing order is determined by the dirty_areas queue which is LIFO */
if self.children.len() > 1 {
self.draw_tabs(
grid,
(
upper_left!(area),
set_x(upper_left!(area), get_x(bottom_right!(area))),
),
context,
);
let y = get_y(upper_left!(area));
self.children[self.cursor_pos].draw(
grid,
(set_y(upper_left!(area), y + 1), bottom_right!(area)),
context,
);
} else {
self.children[self.cursor_pos].draw(grid, area, context);
}
2019-03-02 19:25:11 +02:00
2019-09-25 23:15:20 +03:00
if (self.show_shortcuts && self.dirty) || must_redraw_shortcuts {
2019-11-18 22:20:18 +02:00
let mut children_maps = self.children[self.cursor_pos].get_shortcuts(context);
let our_map = self.get_shortcuts(context);
children_maps.extend(our_map.into_iter());
2019-09-25 23:15:20 +03:00
if children_maps.is_empty() {
return;
}
if (children_maps == self.help_curr_views) && must_redraw_shortcuts {
let dialog_area = align_area(
area,
/* add box perimeter padding */
pos_inc(self.help_content.size(), (2, 2)),
/* vertical */
Alignment::Center,
/* horizontal */
Alignment::Center,
);
context.dirty_areas.push_back(dialog_area);
clear_area(grid, dialog_area, self.theme_default);
let inner_area = create_box(grid, dialog_area);
let (x, y) = write_string_to_grid(
"shortcuts",
grid,
self.theme_default.fg,
self.theme_default.bg,
self.theme_default.attrs | Attr::BOLD,
(
pos_inc(upper_left!(dialog_area), (2, 0)),
bottom_right!(dialog_area),
),
None,
);
write_string_to_grid(
"Press ? to close",
grid,
self.theme_default.fg,
self.theme_default.bg,
self.theme_default.attrs | Attr::ITALICS,
((x + 2, y), bottom_right!(dialog_area)),
None,
);
2019-09-25 23:15:20 +03:00
let (width, height) = self.help_content.size();
let (cols, rows) = (width!(inner_area), height!(inner_area));
2019-09-25 23:15:20 +03:00
copy_area(
grid,
&self.help_content,
inner_area,
2019-09-25 23:15:20 +03:00
(
(
std::cmp::min(
(width - 1).saturating_sub(cols),
self.help_screen_cursor.0,
),
std::cmp::min(
(height - 1).saturating_sub(rows),
self.help_screen_cursor.1,
),
),
(
std::cmp::min(self.help_screen_cursor.0 + cols, width - 1),
std::cmp::min(self.help_screen_cursor.1 + rows, height - 1),
),
),
);
if height.wrapping_div(rows + 1) > 0 || width.wrapping_div(cols + 1) > 0 {
context
.replies
.push_back(UIEvent::StatusEvent(StatusEvent::ScrollUpdate(
ScrollUpdate::Update {
id: self.id,
context: ScrollContext {
shown_lines: std::cmp::min(
(height).saturating_sub(rows + 1),
self.help_screen_cursor.1,
) + rows,
total_lines: height,
has_more_lines: false,
},
},
)));
ScrollBar::default().set_show_arrows(true).draw(
grid,
(
pos_inc(upper_left!(inner_area), (width!(inner_area), 0)),
bottom_right!(inner_area),
),
context,
/* position */
std::cmp::min((height).saturating_sub(rows + 1), self.help_screen_cursor.1),
/* visible_rows */
rows,
/* length */
height,
);
} else {
context
.replies
.push_back(UIEvent::StatusEvent(StatusEvent::ScrollUpdate(
ScrollUpdate::End(self.id),
)));
}
2019-09-25 23:15:20 +03:00
self.dirty = false;
return;
}
let mut max_length = 6;
2020-03-04 14:11:00 +02:00
let mut max_width =
"Press ? to close, use COMMAND \"search\" to find shortcuts".len() + 3;
for (desc, shortcuts) in children_maps.iter() {
2019-09-25 23:15:20 +03:00
max_length += shortcuts.len() + 3;
max_width = std::cmp::max(
max_width,
std::cmp::max(
desc.len(),
shortcuts
.values()
.map(|v| v.to_string().len() + 5)
.max()
.unwrap_or(0),
2019-09-25 23:15:20 +03:00
),
);
}
self.help_content =
CellBuffer::new_with_context(max_width, max_length + 2, None, context);
2020-03-04 14:11:00 +02:00
self.help_content.set_growable(true);
write_string_to_grid(
"use COMMAND \"search\" to find shortcuts",
&mut self.help_content,
self.theme_default.fg,
self.theme_default.bg,
self.theme_default.attrs,
((2, 1), (max_width.saturating_sub(2), max_length - 1)),
None,
);
2020-03-04 14:11:00 +02:00
let mut idx = 2;
for (desc, shortcuts) in children_maps.iter() {
2019-03-14 12:19:25 +02:00
write_string_to_grid(
2019-09-25 23:15:20 +03:00
desc,
&mut self.help_content,
self.theme_default.fg,
self.theme_default.bg,
self.theme_default.attrs,
2019-09-25 23:15:20 +03:00
((2, 2 + idx), (max_width.saturating_sub(2), max_length - 1)),
None,
2019-03-14 12:19:25 +02:00
);
idx += 2;
for (k, v) in shortcuts {
let (x, y) = write_string_to_grid(
&format!("{:1$}", v, max_width),
2019-09-25 23:15:20 +03:00
&mut self.help_content,
self.theme_default.fg,
self.theme_default.bg,
self.theme_default.attrs | Attr::BOLD,
2019-09-25 23:15:20 +03:00
((2, 2 + idx), (max_width.saturating_sub(2), max_length - 1)),
None,
);
write_string_to_grid(
&k,
2019-09-25 23:15:20 +03:00
&mut self.help_content,
self.theme_default.fg,
self.theme_default.bg,
self.theme_default.attrs,
2019-09-25 23:15:20 +03:00
((x + 2, y), (max_width.saturating_sub(2), max_length - 1)),
None,
);
idx += 1;
}
idx += 1;
2019-03-14 12:19:25 +02:00
}
self.help_curr_views = children_maps;
let dialog_area = align_area(
area,
/* add box perimeter padding */
pos_inc(self.help_content.size(), (2, 2)),
/* vertical */
Alignment::Center,
/* horizontal */
Alignment::Center,
);
context.dirty_areas.push_back(dialog_area);
clear_area(grid, dialog_area, self.theme_default);
let inner_area = create_box(grid, dialog_area);
let (x, y) = write_string_to_grid(
"shortcuts",
grid,
self.theme_default.fg,
self.theme_default.bg,
self.theme_default.attrs | Attr::BOLD,
(
pos_inc(upper_left!(dialog_area), (2, 0)),
bottom_right!(dialog_area),
),
None,
);
write_string_to_grid(
"Press ? to close",
grid,
self.theme_default.fg,
self.theme_default.bg,
self.theme_default.attrs | Attr::ITALICS,
((x + 2, y), bottom_right!(dialog_area)),
None,
);
let (width, height) = self.help_content.size();
let (cols, rows) = (width!(inner_area), height!(inner_area));
2020-02-26 12:25:57 +02:00
if let Some(ref mut search) = self.help_search {
use crate::melib::text_processing::search::KMP;
search.positions = self
.help_content
.kmp_search(&search.pattern)
.into_iter()
.map(|offset| (offset / width, offset % width))
.collect::<Vec<(usize, usize)>>();
let results_attr = crate::conf::value(context, "pager.highlight_search");
let results_current_attr =
crate::conf::value(context, "pager.highlight_search_current");
search.cursor =
std::cmp::min(search.positions.len().saturating_sub(1), search.cursor);
for (i, (y, x)) in search.positions.iter().enumerate() {
for c in self
.help_content
.row_iter(*x..*x + search.pattern.grapheme_len(), *y)
{
if i == search.cursor {
self.help_content[c]
.set_fg(results_current_attr.fg)
.set_bg(results_current_attr.bg)
.set_attrs(results_current_attr.attrs);
} else {
self.help_content[c]
.set_fg(results_attr.fg)
.set_bg(results_attr.bg)
.set_attrs(results_attr.attrs);
}
}
}
if !search.positions.is_empty() {
if let Some(mvm) = search.movement.take() {
match mvm {
PageMovement::Home => {
if self.help_screen_cursor.1 > search.positions[search.cursor].0 {
self.help_screen_cursor.1 = search.positions[search.cursor].0;
}
if self.help_screen_cursor.1 + rows
< search.positions[search.cursor].0
{
self.help_screen_cursor.1 = search.positions[search.cursor].0;
}
}
PageMovement::Up(_) => {
if self.help_screen_cursor.1 > search.positions[search.cursor].0 {
self.help_screen_cursor.1 = search.positions[search.cursor].0;
}
}
PageMovement::Down(_) => {
if self.help_screen_cursor.1 + rows
< search.positions[search.cursor].0
{
self.help_screen_cursor.1 = search.positions[search.cursor].0;
}
}
_ => {}
}
}
}
}
/* trim cursor if it's bigger than the help screen */
self.help_screen_cursor = (
std::cmp::min((width).saturating_sub(cols), self.help_screen_cursor.0),
std::cmp::min((height).saturating_sub(rows), self.help_screen_cursor.1),
);
if cols == 0 || rows == 0 {
return;
}
/* In this case we will be scrolling, so show the user how to do it */
if height.wrapping_div(rows + 1) > 0 || width.wrapping_div(cols + 1) > 0 {
write_string_to_grid(
"Use Up, Down, Left, Right to scroll.",
&mut self.help_content,
self.theme_default.fg,
self.theme_default.bg,
self.theme_default.attrs | Attr::ITALICS,
((2, 2), (max_width.saturating_sub(2), max_length - 1)),
None,
);
}
2019-09-25 23:15:20 +03:00
copy_area(
grid,
&self.help_content,
inner_area,
2019-09-25 23:15:20 +03:00
(
(
std::cmp::min((width - 1).saturating_sub(cols), self.help_screen_cursor.0),
std::cmp::min((height - 1).saturating_sub(rows), self.help_screen_cursor.1),
),
(
std::cmp::min(self.help_screen_cursor.0 + cols, width - 1),
std::cmp::min(self.help_screen_cursor.1 + rows, height - 1),
),
),
);
if height.wrapping_div(rows + 1) > 0 || width.wrapping_div(cols + 1) > 0 {
context
.replies
.push_back(UIEvent::StatusEvent(StatusEvent::ScrollUpdate(
ScrollUpdate::Update {
id: self.id,
context: ScrollContext {
shown_lines: std::cmp::min(
(height).saturating_sub(rows),
self.help_screen_cursor.1,
) + rows,
total_lines: height,
has_more_lines: false,
},
},
)));
ScrollBar::default().set_show_arrows(true).draw(
grid,
(
pos_inc(upper_left!(inner_area), (width!(inner_area), 0)),
bottom_right!(inner_area),
),
context,
/* position */
std::cmp::min((height).saturating_sub(rows), self.help_screen_cursor.1),
/* visible_rows */
rows,
/* length */
height,
);
} else {
context
.replies
.push_back(UIEvent::StatusEvent(StatusEvent::ScrollUpdate(
ScrollUpdate::End(self.id),
)));
}
2019-03-02 19:25:11 +02:00
}
2019-09-25 23:15:20 +03:00
self.dirty = false;
}
2020-02-26 12:25:57 +02:00
fn process_event(&mut self, mut event: &mut UIEvent, context: &mut Context) -> bool {
2020-02-26 16:23:02 +02:00
let shortcuts = &self.help_curr_views;
2020-02-26 12:25:57 +02:00
match &mut event {
UIEvent::ConfigReload { old_settings: _ } => {
self.theme_default = crate::conf::value(context, "theme_default");
self.set_dirty(true);
}
2020-02-26 12:25:57 +02:00
UIEvent::Input(Key::Alt(no)) if *no >= '1' && *no <= '9' => {
let no = *no as usize - '1' as usize;
if no < self.children.len() && self.cursor_pos != no % self.children.len() {
self.children[self.cursor_pos]
.process_event(&mut UIEvent::VisibilityChange(false), context);
2019-10-14 12:04:42 +03:00
self.cursor_pos = no % self.children.len();
2020-02-26 16:23:02 +02:00
let mut children_maps = self.children[self.cursor_pos].get_shortcuts(context);
children_maps.extend(self.get_shortcuts(context));
self.help_curr_views = children_maps;
2019-10-14 12:04:42 +03:00
context
.replies
.push_back(UIEvent::StatusEvent(StatusEvent::UpdateStatus(
self.children[self.cursor_pos].get_status(context),
2019-10-14 12:04:42 +03:00
)));
self.set_dirty(true);
2019-10-14 12:04:42 +03:00
}
return true;
}
UIEvent::Input(ref key) if shortcut!(key == shortcuts["general"]["next_tab"]) => {
self.children[self.cursor_pos]
.process_event(&mut UIEvent::VisibilityChange(false), context);
self.cursor_pos = (self.cursor_pos + 1) % self.children.len();
2020-02-26 16:23:02 +02:00
let mut children_maps = self.children[self.cursor_pos].get_shortcuts(context);
children_maps.extend(self.get_shortcuts(context));
self.help_curr_views = children_maps;
context
.replies
.push_back(UIEvent::StatusEvent(StatusEvent::UpdateStatus(
self.children[self.cursor_pos].get_status(context),
)));
self.set_dirty(true);
return true;
}
UIEvent::Input(ref key) if shortcut!(key == shortcuts["general"]["toggle_help"]) => {
2019-09-25 23:15:20 +03:00
if self.show_shortcuts {
/* children below the shortcut overlay must be redrawn */
self.set_dirty(true);
context
.replies
.push_back(UIEvent::StatusEvent(StatusEvent::ScrollUpdate(
ScrollUpdate::End(self.id),
)));
2019-09-25 23:15:20 +03:00
}
2019-03-02 19:25:11 +02:00
self.show_shortcuts = !self.show_shortcuts;
2019-09-25 23:15:20 +03:00
self.dirty = true;
2019-03-02 19:25:11 +02:00
return true;
}
UIEvent::Action(Tab(New(ref mut e))) if e.is_some() => {
2019-02-26 17:50:47 +02:00
self.add_component(e.take().unwrap());
self.children[self.cursor_pos]
.process_event(&mut UIEvent::VisibilityChange(false), context);
2019-02-26 17:50:47 +02:00
self.cursor_pos = self.children.len() - 1;
self.children[self.cursor_pos].set_dirty(true);
2020-02-26 16:23:02 +02:00
let mut children_maps = self.children[self.cursor_pos].get_shortcuts(context);
children_maps.extend(self.get_shortcuts(context));
self.help_curr_views = children_maps;
2019-02-26 17:50:47 +02:00
return true;
}
2019-04-10 23:37:20 +03:00
UIEvent::Action(Tab(Close)) => {
2019-03-25 13:59:29 +02:00
if self.pinned > self.cursor_pos {
return true;
}
2019-04-10 22:01:02 +03:00
let id = self.children[self.cursor_pos].id();
self.children[self.cursor_pos].kill(id, context);
2020-02-26 16:23:02 +02:00
let mut children_maps = self.children[self.cursor_pos].get_shortcuts(context);
children_maps.extend(self.get_shortcuts(context));
self.help_curr_views = children_maps;
self.set_dirty(true);
return true;
}
2019-04-10 23:37:20 +03:00
UIEvent::Action(Tab(Kill(id))) => {
2019-03-25 13:59:29 +02:00
if self.pinned > self.cursor_pos {
return true;
}
2020-02-26 12:25:57 +02:00
if let Some(c_idx) = self.children.iter().position(|x| x.id() == *id) {
self.children[c_idx]
.process_event(&mut UIEvent::VisibilityChange(false), context);
self.children.remove(c_idx);
2019-04-11 00:04:28 +03:00
self.cursor_pos = 0;
self.set_dirty(true);
2020-02-26 16:23:02 +02:00
let mut children_maps = self.children[self.cursor_pos].get_shortcuts(context);
children_maps.extend(self.get_shortcuts(context));
self.help_curr_views = children_maps;
return true;
} else {
2019-05-01 19:20:33 +03:00
debug!(
2019-04-10 22:01:02 +03:00
"DEBUG: Child component with id {:?} not found.\nList: {:?}",
2019-02-21 15:44:26 +02:00
id, self.children
);
}
}
2020-02-26 18:36:52 +02:00
UIEvent::Action(Action::Listing(ListingAction::Search(pattern)))
2020-02-26 12:25:57 +02:00
if self.show_shortcuts =>
{
self.help_search = Some(SearchPattern {
pattern: pattern.to_string(),
positions: vec![],
cursor: 0,
movement: Some(PageMovement::Home),
});
self.dirty = true;
return true;
}
UIEvent::Input(Key::Char('n')) if self.show_shortcuts && self.help_search.is_some() => {
if let Some(ref mut search) = self.help_search {
search.movement = Some(PageMovement::Down(1));
search.cursor += 1;
} else {
unsafe {
std::hint::unreachable_unchecked();
}
}
self.dirty = true;
return true;
}
UIEvent::Input(Key::Char('N')) if self.show_shortcuts && self.help_search.is_some() => {
if let Some(ref mut search) = self.help_search {
search.movement = Some(PageMovement::Up(1));
search.cursor = search.cursor.saturating_sub(1);
} else {
unsafe {
std::hint::unreachable_unchecked();
}
}
self.dirty = true;
return true;
}
UIEvent::Input(Key::Esc) if self.show_shortcuts && self.help_search.is_some() => {
self.help_search = None;
self.dirty = true;
return true;
}
2019-09-25 23:15:20 +03:00
UIEvent::Resize => {
self.dirty = true;
}
2020-02-26 16:23:02 +02:00
UIEvent::Input(ref key)
if self.show_shortcuts
&& shortcut!(
key == shortcuts[super::listing::Listing::DESCRIPTION]["search"]
) =>
{
context
.replies
.push_back(UIEvent::CmdInput(Key::Paste("search ".to_string())));
2020-02-26 16:23:02 +02:00
context
.replies
.push_back(UIEvent::ChangeMode(UIMode::Command));
2020-02-26 16:23:02 +02:00
return true;
}
UIEvent::Input(ref key) if self.show_shortcuts => {
match key {
_ if shortcut!(key == shortcuts["general"]["scroll_up"]) => {
2019-09-25 23:15:20 +03:00
self.help_screen_cursor.1 = self.help_screen_cursor.1.saturating_sub(1);
}
_ if shortcut!(key == shortcuts["general"]["scroll_down"]) => {
2019-09-25 23:15:20 +03:00
self.help_screen_cursor.1 = self.help_screen_cursor.1 + 1;
}
_ if shortcut!(key == shortcuts["general"]["scroll_left"]) => {
2019-09-25 23:15:20 +03:00
self.help_screen_cursor.0 = self.help_screen_cursor.0.saturating_sub(1);
}
_ if shortcut!(key == shortcuts["general"]["scroll_right"]) => {
2019-09-25 23:15:20 +03:00
self.help_screen_cursor.0 = self.help_screen_cursor.0 + 1;
}
_ => {
/* ignore, don't pass to components below the shortcut panel */
return false;
}
}
self.dirty = true;
return true;
}
_ => {}
}
let c = self.cursor_pos;
if let UIEvent::Input(_) | UIEvent::CmdInput(_) | UIEvent::EmbedInput(_) = event {
self.children[c].process_event(event, context)
} else {
self.children[c].process_event(event, context)
|| self.children.iter_mut().enumerate().any(|(idx, child)| {
if idx == c {
return false;
}
child.process_event(event, context)
})
}
}
fn is_dirty(&self) -> bool {
2019-03-14 12:10:29 +02:00
self.dirty || self.children[self.cursor_pos].is_dirty()
}
fn set_dirty(&mut self, value: bool) {
self.dirty = value;
self.children[self.cursor_pos].set_dirty(value);
}
2019-04-10 22:01:02 +03:00
fn id(&self) -> ComponentId {
self.id
}
fn set_id(&mut self, id: ComponentId) {
self.id = id;
}
2019-11-18 22:20:18 +02:00
fn get_shortcuts(&self, context: &Context) -> ShortcutMaps {
let mut map = ShortcutMaps::default();
map.insert("general", context.settings.shortcuts.general.key_values());
map
}
fn can_quit_cleanly(&mut self, context: &Context) -> bool {
for (i, c) in self.children.iter_mut().enumerate() {
if !c.can_quit_cleanly(context) {
self.cursor_pos = i;
self.set_dirty(true);
return false;
}
}
true
}
2018-08-03 13:46:08 +03:00
}
2019-02-15 09:06:42 +02:00
2019-12-27 15:20:02 +02:00
#[derive(Debug, Clone, PartialEq)]
pub struct RawBuffer {
pub buf: CellBuffer,
2019-12-27 15:20:02 +02:00
title: Option<String>,
cursor: (usize, usize),
dirty: bool,
}
impl fmt::Display for RawBuffer {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
Display::fmt("Raw buffer", f)
}
}
impl Component for RawBuffer {
fn draw(&mut self, grid: &mut CellBuffer, area: Area, context: &mut Context) {
if self.dirty {
let (width, height) = self.buf.size();
let (cols, rows) = (width!(area), height!(area));
self.cursor = (
std::cmp::min(width.saturating_sub(cols), self.cursor.0),
std::cmp::min(height.saturating_sub(rows), self.cursor.1),
);
clear_area(grid, area, crate::conf::value(context, "theme_default"));
copy_area(
grid,
&self.buf,
area,
(
(
std::cmp::min((width - 1).saturating_sub(cols), self.cursor.0),
std::cmp::min((height - 1).saturating_sub(rows), self.cursor.1),
),
(
std::cmp::min(self.cursor.0 + cols, width - 1),
std::cmp::min(self.cursor.1 + rows, height - 1),
),
),
);
context.dirty_areas.push_back(area);
self.dirty = false;
}
}
fn process_event(&mut self, event: &mut UIEvent, _context: &mut Context) -> bool {
match *event {
UIEvent::Input(Key::Left) => {
self.cursor.0 = self.cursor.0.saturating_sub(1);
self.dirty = true;
true
}
UIEvent::Input(Key::Right) => {
self.cursor.0 = self.cursor.0 + 1;
self.dirty = true;
true
}
UIEvent::Input(Key::Up) => {
self.cursor.1 = self.cursor.1.saturating_sub(1);
self.dirty = true;
true
}
UIEvent::Input(Key::Down) => {
self.cursor.1 = self.cursor.1 + 1;
self.dirty = true;
true
}
_ => false,
}
}
fn is_dirty(&self) -> bool {
self.dirty
}
fn set_dirty(&mut self, value: bool) {
self.dirty = value;
}
fn id(&self) -> ComponentId {
ComponentId::nil()
}
}
impl RawBuffer {
2019-12-27 15:20:02 +02:00
pub fn new(buf: CellBuffer, title: Option<String>) -> Self {
RawBuffer {
buf,
2019-12-27 15:20:02 +02:00
title,
dirty: true,
cursor: (0, 0),
}
}
2019-12-27 15:20:02 +02:00
pub fn title(&self) -> &str {
self.title
.as_ref()
.map(String::as_str)
.unwrap_or("untitled")
}
}