2016-10-27 17:34:45 +00:00
|
|
|
use unicode_width::UnicodeWidthStr;
|
|
|
|
|
|
|
|
use widgets::{Block, Widget};
|
|
|
|
use buffer::Buffer;
|
|
|
|
use layout::Rect;
|
|
|
|
use style::Color;
|
|
|
|
use symbols::line;
|
|
|
|
|
|
|
|
pub struct Tabs<'a> {
|
|
|
|
block: Option<Block<'a>>,
|
|
|
|
titles: &'a [&'a str],
|
|
|
|
selected: usize,
|
|
|
|
color: Color,
|
2016-11-02 16:08:52 +00:00
|
|
|
background_color: Color,
|
|
|
|
highlight_color: Color,
|
2016-10-27 17:34:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Default for Tabs<'a> {
|
|
|
|
fn default() -> Tabs<'a> {
|
|
|
|
Tabs {
|
|
|
|
block: None,
|
|
|
|
titles: &[],
|
|
|
|
selected: 0,
|
|
|
|
color: Color::Reset,
|
2016-11-02 16:08:52 +00:00
|
|
|
background_color: Color::Reset,
|
|
|
|
highlight_color: Color::Reset,
|
2016-10-27 17:34:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Tabs<'a> {
|
|
|
|
pub fn block(&mut self, block: Block<'a>) -> &mut Tabs<'a> {
|
|
|
|
self.block = Some(block);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn titles(&mut self, titles: &'a [&'a str]) -> &mut Tabs<'a> {
|
|
|
|
self.titles = titles;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn select(&mut self, selected: usize) -> &mut Tabs<'a> {
|
|
|
|
self.selected = selected;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn color(&mut self, color: Color) -> &mut Tabs<'a> {
|
|
|
|
self.color = color;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-11-02 16:08:52 +00:00
|
|
|
pub fn background_color(&mut self, color: Color) -> &mut Tabs<'a> {
|
|
|
|
self.background_color = color;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2016-10-27 17:34:45 +00:00
|
|
|
pub fn highlight_color(&mut self, color: Color) -> &mut Tabs<'a> {
|
|
|
|
self.highlight_color = color;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> Widget for Tabs<'a> {
|
2016-11-02 18:16:53 +00:00
|
|
|
fn draw(&self, area: &Rect, buf: &mut Buffer) {
|
2016-11-02 16:08:52 +00:00
|
|
|
|
2016-10-27 17:34:45 +00:00
|
|
|
let tabs_area = match self.block {
|
|
|
|
Some(b) => {
|
2016-11-02 18:16:53 +00:00
|
|
|
b.draw(area, buf);
|
2016-10-27 17:34:45 +00:00
|
|
|
b.inner(area)
|
|
|
|
}
|
|
|
|
None => *area,
|
|
|
|
};
|
2016-11-02 16:08:52 +00:00
|
|
|
|
2016-10-27 17:34:45 +00:00
|
|
|
if tabs_area.height < 1 {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-11-02 16:08:52 +00:00
|
|
|
if self.background_color != Color::Reset {
|
|
|
|
self.background(&tabs_area, buf, self.background_color);
|
|
|
|
}
|
|
|
|
|
2016-10-27 17:34:45 +00:00
|
|
|
let mut x = tabs_area.left();
|
|
|
|
for (title, color) in self.titles.iter().enumerate().map(|(i, t)| if i == self.selected {
|
|
|
|
(t, self.highlight_color)
|
|
|
|
} else {
|
|
|
|
(t, self.color)
|
|
|
|
}) {
|
|
|
|
x += 1;
|
|
|
|
if x > tabs_area.right() {
|
|
|
|
break;
|
|
|
|
} else {
|
2016-11-02 16:08:52 +00:00
|
|
|
buf.set_string(x, tabs_area.top(), title, color, self.background_color);
|
2016-10-27 17:34:45 +00:00
|
|
|
x += title.width() as u16 + 1;
|
2016-11-02 16:08:52 +00:00
|
|
|
if x >= tabs_area.right() {
|
2016-10-27 17:34:45 +00:00
|
|
|
break;
|
|
|
|
} else {
|
|
|
|
buf.set_cell(x,
|
|
|
|
tabs_area.top(),
|
|
|
|
line::VERTICAL,
|
2016-11-02 16:08:52 +00:00
|
|
|
self.color,
|
|
|
|
self.background_color);
|
2016-10-27 17:34:45 +00:00
|
|
|
x += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|