]> Pileus Git - lackey/blob - src/view.c
Make morning time configurable
[lackey] / src / view.c
1 /*
2  * Copyright (C) 2012-2013 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 <string.h>
21 #include <ncurses.h>
22
23 #include "util.h"
24 #include "conf.h"
25 #include "date.h"
26 #include "cal.h"
27 #include "view.h"
28
29 /* Types */
30 typedef struct {
31         const char *name;
32         const char *title;
33         void      (*init)(WINDOW*);
34         void      (*size)(int,int);
35         void      (*draw)(void);
36         int       (*run)(int,mmask_t,int,int);
37         int         keys[8];
38         WINDOW     *win;
39 } view_t;
40
41 /* Macros */
42 #define VIEW(name, title, ...)                \
43         void name##_init(WINDOW *win);        \
44         void name##_size(int,int);            \
45         void name##_draw(void);               \
46         int  name##_run(int,mmask_t,int,int); \
47         view_t name##_view = {                \
48                 #name,                        \
49                 title,                        \
50                 name##_init,                  \
51                 name##_size,                  \
52                 name##_draw,                  \
53                 name##_run,                   \
54                 { __VA_ARGS__ }               \
55         }
56
57 /* Views */
58 VIEW(day,      "Day",      KEY_F(1), '1');
59 VIEW(week,     "Week",     KEY_F(2), '2');
60 VIEW(month,    "Month",    KEY_F(3), '3');
61 VIEW(year,     "Year",     KEY_F(4), '4');
62 VIEW(events,   "Events",   KEY_F(5), '5');
63 VIEW(todo,     "Todo",     KEY_F(6), '6');
64 VIEW(settings, "Settings", KEY_F(7), '7');
65 VIEW(help,     "Help",     KEY_F(8), '8');
66 VIEW(edit,     "Edit");
67
68 /* View data */
69 view_t  spacer = { "|", "|" };
70
71 view_t *views[] = {
72         &day_view, &week_view, &month_view, &year_view,
73         &events_view, &todo_view,
74         &settings_view, &help_view,
75         &edit_view
76 };
77
78 view_t *menu[] = {
79         &day_view, &week_view, &month_view, &year_view,
80         &spacer, &events_view, &todo_view,
81         &spacer, &settings_view, &help_view
82 };
83
84 /* Config data */
85 int COMPACT = 0;
86 int MORNING = 8;
87
88 /* Global data */
89 edit_t EDIT = EDIT_NONE;
90
91 /* Local data */
92 view_t *view   = &day_view;
93 view_t *active = &day_view;
94 view_t *popup  = NULL;
95
96 /* Local functions */
97 static void draw_header(void)
98 {
99         move(0, 0);
100         attron(COLOR_PAIR(COLOR_TITLE));
101         clrtoeol();
102
103         /* Draw menu */
104         for (int i = 0; i < N_ELEMENTS(menu); i++) {
105                 if (menu[i] == active)
106                         attron(A_BOLD);
107                 printw("%s ", menu[i]->title);
108                 if (menu[i] == active)
109                         attroff(A_BOLD);
110         }
111
112         /* Draw popup window */
113         if (popup) {
114                 printw("| ");
115                 attron(A_BOLD);
116                 printw("[%s]", popup->title);
117                 attroff(A_BOLD);
118         }
119
120         /* Draw date */
121         move(0, COLS-19);
122         printw("%04d-%02d-%02d %02d:%02d:%02d",
123                         NOW.year, NOW.month+1, NOW.day+1,
124                         NOW.hour, NOW.min,     NOW.sec);
125
126         attroff(COLOR_PAIR(COLOR_TITLE));
127         if (!COMPACT)
128                 mvhline(1, 0, ACS_HLINE, COLS);
129         refresh();
130 }
131
132 static int get_color(const char *cat)
133 {
134         return cat == NULL           ? 0           :
135                match(cat, "class") ? COLOR_CLASS :
136                match(cat, "ec")    ? COLOR_EC    :
137                match(cat, "work")  ? COLOR_WORK  : COLOR_OTHER ;
138 }
139
140 static int set_view(view_t *_active, view_t *_popup)
141 {
142         view = _popup ?: _active;
143         if (active != _active) {
144                 active = _active;
145                 set_string("view", 0, "active", active->name);
146                 view_draw();
147         }
148         if (popup != _popup) {
149                 popup = _popup;
150                 view_draw();
151         }
152         return 1;
153 }
154
155 /* Curses functions */
156 void wmvresize(WINDOW *win, int top, int left, int rows, int cols)
157 {
158         int y = getpary(win);
159         if (top < y)
160                 mvderwin(win, top, left);
161         wresize(win, rows, cols);
162         if (top > y)
163                 mvderwin(win, top, left);
164 }
165
166 void wshrink(WINDOW *win, int top)
167 {
168         int x    = getparx(win);
169         int y    = getpary(win);
170         int r    = getmaxy(win);
171         int c    = getmaxx(win);
172         int rows = r + (y - top);
173         if (top  <  y) mvderwin(win, top, x);
174         if (rows != r) wresize(win, rows, c);
175         if (top  >  y) mvderwin(win, top, x);
176 }
177
178 /* Helper functions */
179 void event_box(WINDOW *win, event_t *event, int y, int x, int h, int w)
180 {
181         int l = 0;
182         int s = y < 0 ? -y-1 : 0;
183
184         int color = get_color(event->cat);
185
186         if (color) wattron(win, COLOR_PAIR(color));
187
188         if (h >= 2) mvwhline_set(win, y,     x+1,   WACS_T_HLINE, w-2);
189         if (h <= 1) mvwadd_wch(win,   y,     x,     WACS_BULLET);
190         if (h >= 2) mvwadd_wch(win,   y,     x,     WACS_T_ULCORNER);
191         if (h >= 2) mvwadd_wch(win,   y,     x+w-1, WACS_T_URCORNER);
192         if (h >= 3) mvwvline_set(win, y+1+s, x,     WACS_T_VLINE, h-2-s);
193         if (h >= 3) mvwvline_set(win, y+1+s, x+w-1, WACS_T_VLINE, h-2-s);
194         if (h >= 2) mvwadd_wch(win,   y+h-1, x,     WACS_T_LLCORNER);
195         if (h >= 2) mvwadd_wch(win,   y+h-1, x+w-1, WACS_T_LRCORNER);
196         if (h >= 2) mvwhline_set(win, y+h-1, x+1,   WACS_T_HLINE, w-2);
197
198         if (color) wattroff(win, COLOR_PAIR(color));
199
200         if (l<h && event->name) mvwprintw(win, y+l++, x+1, "%.*s",   w-2, event->name);
201         if (l<h && event->loc)  mvwprintw(win, y+l++, x+1, "@ %.*s", w-4, event->loc);
202         if (l<h && event->desc) mvwprintw(win, y+l++, x+1, "%.*s",   w-2, event->desc);
203 }
204
205 void event_line(WINDOW *win, event_t *event, int y, int x, int w, int flags)
206 {
207         int color = get_color(event->cat);
208
209         if (color) wattron(win, COLOR_PAIR(color));
210         mvwaddch(win, y, x++, ACS_BLOCK);
211         if (color) wattroff(win, COLOR_PAIR(color));
212
213         if (flags & SHOW_ACTIVE && event == EVENT)
214                 wattron(win, A_REVERSE | A_BOLD);
215         if (flags & SHOW_DETAILS) {
216                 if (all_day(&event->start, &event->end))
217                         mvwprintw(win, y, x+1, "[all day]   - ");
218                 else
219                         mvwprintw(win, y, x+1, "%2d:%02d-%2d:%02d - ",
220                                         event->start.hour, event->start.min,
221                                         event->end.hour,   event->end.min);
222                 x += 15;
223                 w -= 15;
224         }
225         if (event->name) {
226                 const char *label = event->name ?: event->desc;
227                 mvwprintw(win, y, x, "%-*.*s", w-1, w-1, label);
228                 x += MIN(strlen(label), w-1);
229         }
230         if (flags & SHOW_DETAILS && event->loc) {
231                 mvwprintw(win, y, x, " @ %s", event->loc);
232         }
233         if (flags & SHOW_ACTIVE && event == EVENT)
234                 wattroff(win, A_REVERSE | A_BOLD);
235 }
236
237 void todo_line(WINDOW *win, todo_t *todo, int y, int x, int w, int flags)
238 {
239         char perc[16];
240         char desc[LINES];
241         sprintf(perc, "%2d%%", todo->status);
242
243         int cat    = get_color(todo->cat);
244         int status = todo->status == NEW  ? COLOR_NEW  :
245                      todo->status == DONE ? COLOR_DONE : COLOR_WIP;
246
247         sprintf(desc, "%s", todo->name ?: todo->desc ?: "");
248         strsub(desc, '\n', ';');
249
250         /* Print category */
251         if (cat) wattron(win, COLOR_PAIR(cat));
252         mvwaddch(win, y, x, ACS_BLOCK);
253         if (cat) wattroff(win, COLOR_PAIR(cat));
254         x += 2;
255
256         /* Set background */
257         if (flags & SHOW_ACTIVE && todo == TODO)
258                 wattron(win, A_REVERSE | A_BOLD);
259         mvwhline(win, y, x, ' ', COLS-x);
260
261         /* Print time */
262         if (no_date(&todo->due))
263                 mvwprintw(win, y, x, "[no due date]");
264         else
265                 mvwprintw(win, y, x, "%04d-%02d-%02d %2d:%02d",
266                                 todo->due.year, todo->due.month+1, todo->due.day+1,
267                                 todo->due.hour, todo->due.min);
268         x += 18;
269
270         /* Print status */
271         if (status) wattron(win, COLOR_PAIR(status));
272         mvwprintw(win, y, x, "%s",
273                 todo->status == NEW    ? "new"  :
274                 todo->status == DONE   ? "done" : perc);
275         if (status) wattroff(win, COLOR_PAIR(status));
276         x += 6;
277
278         /* Print description */
279         mvwprintw(win, y, x, "%s", desc);
280
281         /* Reset flags */
282         if (flags & SHOW_ACTIVE && todo == TODO)
283                 wattroff(win, A_REVERSE | A_BOLD);
284 }
285
286 /* View init */
287 void view_init(void)
288 {
289         int hdr = COMPACT ? 1 : 2;
290         for (int i = 0; i < N_ELEMENTS(views); i++) {
291                 views[i]->win = newwin(LINES-hdr, COLS, hdr, 0);
292                 views[i]->init(views[i]->win);
293                 views[i]->size(LINES-hdr, COLS);
294         }
295 }
296
297 /* Config parser */
298 void view_config(const char *group, const char *name, const char *key, const char *value)
299 {
300         if (match(group, "view")) {
301                 if (match(key, "compact")) {
302                         COMPACT = get_bool(value);
303                 } else if (match(key, "morning")) {
304                         MORNING = get_number(value);
305                 } else if (match(key, "active")) {
306                         for (int i = 0; i < N_ELEMENTS(views); i++) {
307                                 if (match(value, views[i]->name)) {
308                                         get_string(value);
309                                         view = active = views[i];
310                                         break;
311                                 }
312                         }
313                 }
314         }
315 }
316
317 /* View draw */
318 void view_resize(void)
319 {
320         int hdr = COMPACT ? 1 : 2;
321         for (int i = 0; i < N_ELEMENTS(views); i++) {
322                 wresize(views[i]->win, LINES-hdr, COLS);
323                 mvwin(views[i]->win, hdr, 0);
324                 views[i]->size(LINES-hdr, COLS);
325         }
326 }
327
328 /* View draw */
329 void view_draw(void)
330 {
331         draw_header();
332         werase(view->win);
333         view->draw();
334         wrefresh(view->win);
335 }
336
337 /* View run */
338 int view_run(int key, mmask_t btn, int row, int col)
339 {
340         /* Refresh timestamp */
341         draw_header();
342
343         /* Check for mouse events on the menu */
344         if (key == KEY_MOUSE && row == 0) {
345                 int start = 1;
346                 for (int i = 0; i < N_ELEMENTS(menu); i++) {
347                         int end = start + strlen(menu[i]->name) - 1;
348                         if (start <= col && col <= end && menu[i]->draw)
349                                 return set_view(menu[i], NULL);
350                         start = end + 2;
351                 }
352         }
353
354         /* Look though menu for hotkeys */
355         for (int i = 0; i < N_ELEMENTS(menu); i++) {
356                 for (int j = 0; j < N_ELEMENTS(menu[i]->keys); j++)
357                         if (menu[i]->keys[j] == key)
358                                 return set_view(menu[i], NULL);
359         }
360
361         /* Shift windows with left/right keys */
362         int shift = key == KEY_RIGHT ? +1 :
363                     key == KEY_LEFT  ? -1 : 0;
364         if (shift) {
365                 int num = 0;
366                 for (int i = 0; i < N_ELEMENTS(menu); i++)
367                         if (menu[i] == active)
368                                 num = i;
369                 do  {
370                         num += shift;
371                         num += N_ELEMENTS(menu);
372                         num %= N_ELEMENTS(menu);
373                 } while (menu[num] == &spacer);
374                 return set_view(menu[num], NULL);
375         }
376
377         /* Handle other keys */
378         switch (key) {
379                 case 'c':
380                         COMPACT ^= 1;
381                         set_bool("view", 0, "compact", COMPACT);
382                         view_resize();
383                         view_draw();
384                         return 1;
385                 case '\033': // escape
386                         return set_view(active, NULL);
387                 case '?':    // help
388                         return set_view(active, &help_view);
389                 case 'e':    // edit
390                         return set_view(active, &edit_view);
391         }
392
393         /* Pass key to active view */
394         return view->run(key, btn, row, col);
395 }
396
397 /* View event */
398 void view_edit(edit_t mode)
399 {
400         EDIT = mode;
401         set_view(active, &edit_view);
402 }