aboutsummaryrefslogtreecommitdiff
path: root/src/ui/mod.rs
blob: b7c11fb084d7a64b0d37e33800869531ccb34d7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use iced::widget::pane_grid::ResizeEvent;

pub mod graph;
pub mod pane;

#[derive(Debug, Clone)]
pub enum Message {
    InputChanged(String),
    UpdateFunction,
    UpdateScreen,
    Resized(ResizeEvent)
}