aboutsummaryrefslogtreecommitdiff
path: root/src/app/mod.rs
blob: f00c93622152ff68f6f0cf414fb9263b262044ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use std::default::Default;
use std::sync::mpsc::Receiver;

use notify::{DebouncedEvent, INotifyWatcher};

use crate::habit::HabitWrapper;

mod impl_self;
mod impl_view;

pub struct StatusLine(String, String);

pub struct App {
    // holds app data
    habits: Vec<Box<dyn HabitWrapper>>,

    _file_watcher: INotifyWatcher,
    file_event_recv: Receiver<DebouncedEvent>,
    focus: usize,
    view_month_offset: u32,
}

impl Default for App {
    fn default() -> Self {
        App::new()
    }
}