blob: 0886930a7e14dba1dc1a6c458bedbce44f309d8f (
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
28
29
30
|
use std::default::Default;
use std::sync::mpsc::Receiver;
use notify::{DebouncedEvent, INotifyWatcher};
use crate::habit::HabitWrapper;
mod impl_self;
mod impl_view;
mod message;
pub struct StatusLine(String, String);
pub use message::{Message, MessageKind};
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,
message: Message,
}
impl Default for App {
fn default() -> Self {
App::new()
}
}
|