]> Pileus Git - lackey/blob - views/week.c
1fe5e17ec33ce1e665da0c23dc0dea0af24a522a
[lackey] / views / week.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 #define _XOPEN_SOURCE_EXTENDED
19
20 #include <ncurses.h>
21
22 #include "util.h"
23 #include "date.h"
24 #include "cal.h"
25 #include "view.h"
26
27 /* Static data */
28 static int     line;
29 static WINDOW *win;
30 static WINDOW *times;
31 static WINDOW *body;
32
33 /* Week init */
34 void week_init(WINDOW *_win)
35 {
36         win   = _win; //    lines    cols    y  x
37         times = derwin(win, LINES-2,      5, 0, 0);
38         body  = derwin(win, LINES-2, COLS-5, 0, 5);
39         line  = 10*4; // 10:00
40 }
41
42 /* Week size */
43 void week_size(int rows, int cols)
44 {
45         int hdr = 3-COMPACT;
46         wmvresize(times, hdr, 0, rows-hdr,      5);
47         wmvresize(body,  hdr, 5, rows-hdr, cols-5);
48 }
49
50 /* Week draw */
51 void week_draw(void)
52 {
53         int x = 6;
54         int y = 3 - COMPACT;
55         const float hstep = (float)(COLS-x)/7.0;
56
57         /* Get start of week */
58         year_t  year  = YEAR;
59         month_t month = MONTH;
60         day_t   day   = DAY;
61         int shift = day_of_week(year, month, day);
62         add_days(&year, &month, &day, -shift);
63
64         /* For today */
65         int l = ROUND((shift+0)*hstep);
66         int r = ROUND((shift+1)*hstep);
67
68         /* Print Header */
69         int rev = COMPACT ? A_REVERSE | A_BOLD : 0;
70         wattron(win, rev);
71         mvwprintw(win, 0, 0, "%-*s",  COLS, month_to_str(MONTH));
72         mvwprintw(win, 1, 0, "%-0*d", COLS, YEAR);
73         wattroff(win, rev);
74         mvwhline(win, 0, x+l, ' ', r-l-1);
75         mvwhline(win, 1, x+l, ' ', r-l-1);
76         wattron(win, rev);
77         for (int d = 0; d < 7; d++) {
78                 const char *str = hstep >= 10 ? day_to_string(d) : day_to_str(d);
79                 if (d == shift) wattrset(win, A_BOLD);
80                 mvwprintw(win, 0, x+ROUND(d*hstep), "%s", str);
81                 mvwprintw(win, 1, x+ROUND(d*hstep), "%02d/%02d", month+1, day+1);
82                 if (d == shift) wattrset(win, rev);
83                 add_days(&year, &month, &day, 1);
84         }
85         wattroff(win, rev);
86
87         /* Resize body */
88         wshrink(times, y-!COMPACT);
89         wshrink(body,  y-!COMPACT);
90         /* Print times */
91         mvwprintw(times, !COMPACT, 0, "%02d:%02d", ((line/4)-1)%12+1, (line*15)%60);
92         for (int h = 0; h < 24; h++)
93                 mvwprintw(times, !COMPACT+h*4-line, 0, "%02d:%02d", (h-1)%12+1, 0);
94
95         /* Print events */
96         event_t *event = EVENTS;
97         add_days(&year, &month, &day, -7);
98         for (int d = 0; d <  7; d++, add_days(&year,&month,&day,1))
99         for (int h = 0; h < 24; h++)
100         for (int m = 0; m < 60; m+=15)
101         while (event && before(&event->start,
102                         year, month, day, h+(m+15)/60, (m+15)%60)) {
103                 if (!before(&event->start, year, month, day, h, m)) {
104                         int y = h*4 + m/15 - line + !COMPACT;
105                         int x = ROUND(d*hstep) + 1;
106                         int h = (get_mins(&event->start, &event->end)-1)/15+1;
107                         int w = ROUND((d+1)*hstep) - x;
108                         event_box(body, event, y, x, h, w);
109                 }
110                 event = event->next;
111         }
112
113         /* Print header lines */
114         if (!COMPACT)
115                 mvwhline(win, y-1, 0, ACS_HLINE, COLS);
116
117         /* Print day lines */
118         for (int d = 0; d < 7; d++)
119                 mvwvline(body, !COMPACT, ROUND(d*hstep), ACS_VLINE, LINES-y-2+COMPACT);
120         mvwvline_set(body, 0, l, WACS_T_VLINE, LINES-y-1+COMPACT);
121         mvwvline_set(body, 0, r, WACS_T_VLINE, LINES-y-1+COMPACT);
122         for (int h = (line+3)/4; h < 24; h++) {
123                 mvwadd_wch(body, h*4-line+!COMPACT, l, WACS_T_LTEE);
124                 mvwadd_wch(body, h*4-line+!COMPACT, r, WACS_T_RTEE);
125         }
126         if (!COMPACT)
127                 mvwhline(body, 0, l, ACS_BLOCK, r-l+1);
128 }
129
130 /* Week run */
131 int week_run(int key, mmask_t btn, int row, int col)
132 {
133         int days = 0, ref = 0;
134         switch (key)
135         {
136                 case 'h': ref = 1; days = -1; break;
137                 case 'l': ref = 1; days =  1; break;
138                 case 'i': ref = 1; days = -7; break;
139                 case 'o': ref = 1; days =  7; break;
140                 case 'k': ref = 1; line--;    break;
141                 case 'j': ref = 1; line++;    break;
142         }
143         line = CLAMP(line, 0, 24*4);
144         if (days)
145                 add_days(&YEAR, &MONTH, &DAY, days);
146         if (ref) {
147                 werase(win);
148                 week_draw();
149                 wrefresh(win);
150         }
151         return ref;
152 }