summaryrefslogtreecommitdiffstats
path: root/src/tuice/component/base/carousel.rs
blob: 2790e37217ed5d6b03953b5f2e1128c6576a1b12 (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 Carousel {}

impl<Message> TmpComponent<Message> for Carousel {
    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
    }
}