cursive/src/view/id_view.rs

41 lines
995 B
Rust
Raw Normal View History

2015-05-23 17:33:29 +00:00
use std::any::Any;
2016-06-28 05:10:59 +00:00
use view::{Selector, View, ViewWrapper};
2015-05-23 17:33:29 +00:00
/// Wrapper view that allows to select its content with a fixed string id.
pub struct IdView<T: View> {
view: T,
id: String,
}
impl<T: View> IdView<T> {
/// Wraps the given view. It will be selectable with the given id.
pub fn new(id: &str, view: T) -> Self {
IdView {
view: view,
id: id.to_string(),
}
}
}
2016-06-25 23:36:22 +00:00
impl<T: View + Any> ViewWrapper for IdView<T> {
2015-05-23 17:33:29 +00:00
wrap_impl!(&self.view);
fn wrap_find(&mut self, selector: &Selector) -> Option<&mut Any> {
match selector {
&Selector::Id(id) if id == self.id => Some(&mut self.view),
s => self.view.find(s),
}
}
}
/// Makes a view wrappable in an `IdView`.
pub trait Identifiable: View + Sized {
/// Wraps this view into an IdView with the given id.
fn with_id(self, id: &str) -> IdView<Self> {
IdView::new(id, self)
}
}
2016-07-25 20:39:10 +00:00
impl<T: View> Identifiable for T {}