summaryrefslogtreecommitdiffstats
path: root/src/tuice/component/base/block.rs
blob: d1a7e2b9cbbcae0759957b09b429f961b1469b43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use tui::{backend::Backend, layout::Rect, Frame};

use crate::tuice::{DrawContext, Event, Status, TmpComponent};

pub struct Block {}

impl<Message> TmpComponent<Message> for Block {
    fn draw<B>(&mut self, _context: DrawContext<'_>, _frame: &mut Frame<'_, B>)
    where
        B: Backend,
    {
        todo!()
    }

    fn on_event(&mut self, _area: Rect, _event: Event, _messages: &mut Vec<Message>) -> Status {
        Status::Ignored
    }
}