]> Pileus Git - lackey/blob - view/day.c
More interactive views
[lackey] / view / day.c
1 /*
2  * Copyright (C) 2012 Andy Spencer <andy753421@gmail.com>
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include <string.h>
19 #include <ncurses.h>
20
21 #include "main.h"
22 #include "util.h"
23
24 /* Static data */
25 static WINDOW *win;
26
27 /* Day init */
28 void day_init(WINDOW *_win)
29 {
30         win = _win;
31 }
32
33 /* Day draw */
34 void day_draw(void)
35 {
36         const char *mstr = month_to_string(MONTH);
37         const char *dstr = day_to_string(day_of_week(YEAR, MONTH, DAY));
38
39         /* Clear */
40         werase(win);
41
42         /* Print Header */
43         mvwprintw(win, 0, 0, "%s, %s %d", dstr, mstr, DAY+1);
44         mvwprintw(win, 0, COLS-10, "%d-%02d-%02d", YEAR, MONTH, DAY+1);
45         mvwhline(win, 1, 0, ACS_HLINE, COLS);
46
47         /* Print times */
48         int start = 8;
49         for (int h = 0; h < (LINES-5)/4+1; h++)
50                 mvwprintw(win, 2+h*4, 0,"%02d:%02d", (start+h)%12, 0);
51         mvwvline(win, 2, 5, ACS_VLINE, LINES-4);
52 }
53
54 /* Day run */
55 int day_run(int key, mmask_t btn, int row, int col)
56 {
57         int days = 0;
58         switch (key)
59         {
60                 case 'h': days = -1; break;
61                 case 'l': days =  1; break;
62                 case 'i': days = -7; break;
63                 case 'o': days =  7; break;
64         }
65         if (days) {
66                 add_days(&YEAR, &MONTH, &DAY, days);
67                 day_draw();
68                 wrefresh(win);
69         }
70         return 0;
71 }