]> Pileus Git - lackey/blob - view/day.c
Fix some time keeping bugs
[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         /* Print Header */
40         mvwprintw(win, 0, 0, "%s, %s %d", dstr, mstr, DAY+1);
41         mvwprintw(win, 0, COLS-10, "%d-%02d-%02d", YEAR, MONTH, DAY+1);
42         mvwhline(win, 1, 0, ACS_HLINE, COLS);
43
44         /* Print times */
45         int start = 8;
46         for (int h = 0; h < (LINES-5)/4+1; h++)
47                 mvwprintw(win, 2+h*4, 0,"%02d:%02d", (start+h)%12, 0);
48         mvwvline(win, 2, 5, ACS_VLINE, LINES-4);
49 }
50
51 /* Day run */
52 int day_run(int key, mmask_t btn, int row, int col)
53 {
54         return 0;
55 }