You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helix/helix-term/src/ui/info.rs

31 lines
1.1 KiB
Rust

3 years ago
use crate::compositor::{Component, Context};
use helix_view::graphics::Rect;
3 years ago
use helix_view::info::Info;
use tui::buffer::Buffer as Surface;
use tui::widgets::{Block, Borders, Widget};
impl Component for Info {
fn render(&self, viewport: Rect, surface: &mut Surface, cx: &mut Context) {
let style = cx.editor.theme.get("ui.popup");
let block = Block::default()
.title(self.title.as_str())
.borders(Borders::ALL)
.border_style(style);
3 years ago
let Info { width, height, .. } = self;
let (w, h) = (*width + 2, *height + 2);
// -2 to subtract command line + statusline. a bit of a hack, because of splits.
let area = viewport.intersection(Rect::new(
viewport.width.saturating_sub(w),
viewport.height.saturating_sub(h + 2),
w,
h,
));
surface.clear_with(area, style);
let Rect { x, y, .. } = block.inner(area);
3 years ago
for (y, line) in (y..).zip(self.text.lines()) {
surface.set_string(x, y, line, style);
3 years ago
}
block.render(area, surface);
}
}