]> Pileus Git - lackey/blob - src/screen.h
Add basic screen layout stuff
[lackey] / src / screen.h
1 /* Screen functions */
2 void screen_init(void);
3 void screen_draw(void);
4 int  screen_run(int);
5
6 /* View init functions */
7 void day_init(void);
8 void week_init(void);
9 void month_init(void);
10 void year_init(void);
11 void todo_init(void);
12 void notes_init(void);
13 void settings_init(void);
14 void help_init(void);
15
16 /* View draw functions */
17 void day_draw(void);
18 void week_draw(void);
19 void month_draw(void);
20 void year_draw(void);
21 void todo_draw(void);
22 void notes_draw(void);
23 void settings_draw(void);
24 void help_draw(void);
25
26 /* View run functions */
27 int day_run(int);
28 int week_run(int);
29 int month_run(int);
30 int year_run(int);
31 int todo_run(int);
32 int notes_run(int);
33 int settings_run(int);
34 int help_run(int);