|
|
|
@ -6,14 +6,19 @@ use tui::widgets::{Block, Borders, Widget};
|
|
|
|
|
|
|
|
|
|
impl Component for Info {
|
|
|
|
|
fn render(&self, viewport: Rect, surface: &mut Surface, cx: &mut Context) {
|
|
|
|
|
let block = Block::default().title(self.title).borders(Borders::ALL);
|
|
|
|
|
let style = cx.editor.theme.get("ui.popup");
|
|
|
|
|
let block = Block::default()
|
|
|
|
|
.title(self.title)
|
|
|
|
|
.borders(Borders::ALL)
|
|
|
|
|
.border_style(style);
|
|
|
|
|
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 = Rect::new(viewport.width - w, viewport.height - h - 2, w, h);
|
|
|
|
|
surface.clear_with(area, style);
|
|
|
|
|
let Rect { x, y, .. } = block.inner(area);
|
|
|
|
|
for (y, line) in (y..).zip(self.text.lines()) {
|
|
|
|
|
surface.set_string(x, y, line, Style::default());
|
|
|
|
|
surface.set_string(x, y, line, style);
|
|
|
|
|
}
|
|
|
|
|
block.render(area, surface);
|
|
|
|
|
}
|
|
|
|
|