]> Pileus Git - lackey/blob - src/view.c
cfff88e0e14a6321220cec9ce72428179bf22952
[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
19 #define _XOPEN_SOURCE_EXTENDED
20
21 #include <stdlib.h>
22 #include <string.h>
23 #include <locale.h>
24 #include <ncurses.h>
25
26 #include "util.h"
27 #include "conf.h"
28 #include "date.h"
29 #include "cal.h"
30 #include "view.h"
31
32 /* Types */
33 typedef struct {
34         const char *name;
35         const char *title;
36         void      (*init)(WINDOW*);
37         void      (*size)(int,int);
38         void      (*draw)(void);
39         int       (*run)(int,mmask_t,int,int);
40         int         keys[8];
41         WINDOW     *win;
42 } view_t;
43
44 /* Macros */
45 #define VIEW(name, title, ...)                \
46         void name##_init(WINDOW *win);        \
47         void name##_size(int,int);            \
48         void name##_draw(void);               \
49         int  name##_run(int,mmask_t,int,int); \
50         view_t name##_view = {                \
51                 #name,                        \
52                 title,                        \
53                 name##_init,                  \
54                 name##_size,                  \
55                 name##_draw,                  \
56                 name##_run,                   \
57                 { __VA_ARGS__ }               \
58         }
59
60 /* Views */
61 VIEW(day,      "Day",      KEY_F(1), '1');
62 VIEW(week,     "Week",     KEY_F(2), '2');
63 VIEW(month,    "Month",    KEY_F(3), '3');
64 VIEW(year,     "Year",     KEY_F(4), '4');
65 VIEW(events,   "Events",   KEY_F(5), '5');
66 VIEW(todo,     "Todo",     KEY_F(6), '6');
67 VIEW(settings, "Settings", KEY_F(7), '7');
68 VIEW(help,     "Help",     KEY_F(8), '8');
69 VIEW(edit,     "Edit");
70
71 /* View data */
72 view_t  spacer = { "|", "|" };
73
74 view_t *views[] = {
75         &day_view, &week_view, &month_view, &year_view,
76         &events_view, &todo_view,
77         &settings_view, &help_view,
78         &edit_view
79 };
80
81 view_t *menu[] = {
82         &day_view, &week_view, &month_view, &year_view,
83         &spacer, &events_view, &todo_view,
84         &spacer, &settings_view, &help_view
85 };
86
87 /* Config data */
88 int COMPACT = 0;
89 int MORNING = 8;
90
91 /* Global data */
92 edit_t EDIT = EDIT_NONE;
93
94 /* Local data */
95 view_t *view    = &day_view;
96 view_t *active  = &day_view;
97 view_t *popup   = NULL;
98 int     running = 0;
99
100 /* Local functions */
101 static void draw_header(void)
102 {
103         move(0, 0);
104         attron(COLOR_PAIR(COLOR_TITLE));
105         clrtoeol();
106
107         /* Draw menu */
108         for (int i = 0; i < N_ELEMENTS(menu); i++) {
109                 if (menu[i] == active)
110                         attron(A_BOLD);
111                 printw("%s ", menu[i]->title);
112                 if (menu[i] == active)
113                         attroff(A_BOLD);
114         }
115
116         /* Draw popup window */
117         if (popup) {
118                 printw("| ");
119                 attron(A_BOLD);
120                 printw("[%s]", popup->title);
121                 attroff(A_BOLD);
122         }
123
124         /* Draw date */
125         move(0, COLS-19);
126         printw("%04d-%02d-%02d %02d:%02d:%02d",
127                         NOW.year, NOW.month+1, NOW.day+1,
128                         NOW.hour, NOW.min,     NOW.sec);
129
130         attroff(COLOR_PAIR(COLOR_TITLE));
131         if (!COMPACT)
132                 mvhline(1, 0, ACS_HLINE, COLS);
133         refresh();
134 }
135
136 static int get_color(const char *cat)
137 {
138         return cat == NULL           ? 0           :
139                match(cat, "class") ? COLOR_CLASS :
140                match(cat, "ec")    ? COLOR_EC    :
141                match(cat, "work")  ? COLOR_WORK  : COLOR_OTHER ;
142 }
143
144 static void update_sizes(void)
145 {
146         int hdr = COMPACT ? 1 : 2;
147         for (int i = 0; i < N_ELEMENTS(views); i++) {
148                 wresize(views[i]->win, LINES-hdr, COLS);
149                 mvwin(views[i]->win, hdr, 0);
150                 views[i]->size(LINES-hdr, COLS);
151         }
152 }
153
154 static void draw_view(void)
155 {
156         draw_header();
157         werase(view->win);
158         view->draw();
159         wrefresh(view->win);
160 }
161
162 static int set_view(view_t *_active, view_t *_popup)
163 {
164         view = _popup ?: _active;
165         if (active != _active) {
166                 active = _active;
167                 set_string("view", 0, "active", active->name);
168                 draw_view();
169         }
170         if (popup != _popup) {
171                 popup = _popup;
172                 draw_view();
173         }
174         return 1;
175 }
176
177 static int process(int key, mmask_t btn, int row, int col)
178 {
179         /* Refresh timestamp */
180         draw_header();
181
182         /* Check for mouse events on the menu */
183         if (key == KEY_MOUSE && row == 0) {
184                 int start = 1;
185                 for (int i = 0; i < N_ELEMENTS(menu); i++) {
186                         int end = start + strlen(menu[i]->name) - 1;
187                         if (start <= col && col <= end && menu[i]->draw)
188                                 return set_view(menu[i], NULL);
189                         start = end + 2;
190                 }
191         }
192
193         /* Look though menu for hotkeys */
194         for (int i = 0; i < N_ELEMENTS(menu); i++) {
195                 for (int j = 0; j < N_ELEMENTS(menu[i]->keys); j++)
196                         if (menu[i]->keys[j] == key)
197                                 return set_view(menu[i], NULL);
198         }
199
200         /* Shift windows with left/right keys */
201         int shift = key == KEY_RIGHT ? +1 :
202                     key == KEY_LEFT  ? -1 : 0;
203         if (shift) {
204                 int num = 0;
205                 for (int i = 0; i < N_ELEMENTS(menu); i++)
206                         if (menu[i] == active)
207                                 num = i;
208                 do  {
209                         num += shift;
210                         num += N_ELEMENTS(menu);
211                         num %= N_ELEMENTS(menu);
212                 } while (menu[num] == &spacer);
213                 return set_view(menu[num], NULL);
214         }
215
216         /* Handle other keys */
217         switch (key) {
218                 case KEY_RESIZE:
219                         endwin();
220                         refresh();
221                         update_sizes();
222                         draw_view();
223                         return 1;
224                 case '\14': // Ctrl-L
225                         clear();
226                 case '\7':  // Ctrl-G
227                         update_sizes();
228                         draw_view();
229                         return 1;
230                 case '\033': // escape
231                         return set_view(active, NULL);
232                 case '?':    // help
233                         return set_view(active, &help_view);
234         }
235
236         /* Pass key to active view */
237         return view->run(key, btn, row, col);
238 }
239
240 /* Curses functions */
241 void wmvresize(WINDOW *win, int top, int left, int rows, int cols)
242 {
243         int y = getpary(win);
244         if (top < y)
245                 mvderwin(win, top, left);
246         wresize(win, rows, cols);
247         if (top > y)
248                 mvderwin(win, top, left);
249 }
250
251 void wshrink(WINDOW *win, int top)
252 {
253         int x    = getparx(win);
254         int y    = getpary(win);
255         int r    = getmaxy(win);
256         int c    = getmaxx(win);
257         int rows = r + (y - top);
258         if (top  <  y) mvderwin(win, top, x);
259         if (rows != r) wresize(win, rows, c);
260         if (top  >  y) mvderwin(win, top, x);
261 }
262
263 /* Helper functions */
264 void event_box(WINDOW *win, event_t *event, int y, int x, int h, int w)
265 {
266         int i, l = 0;
267         int s = y < 0 ? -y-1 : 0;
268
269         int color = get_color(event->cat);
270
271         if (color) wattron(win, COLOR_PAIR(color));
272
273         if (h >= 2) mvwhline_set(win, y,     x+1,   WACS_T_HLINE, w-2);
274         if (h <= 1) mvwadd_wch(win,   y,     x,     WACS_BULLET);
275         if (h >= 2) mvwadd_wch(win,   y,     x,     WACS_T_ULCORNER);
276         if (h >= 2) mvwadd_wch(win,   y,     x+w-1, WACS_T_URCORNER);
277         if (h >= 3) mvwvline_set(win, y+1+s, x,     WACS_T_VLINE, h-2-s);
278         if (h >= 3) mvwvline_set(win, y+1+s, x+w-1, WACS_T_VLINE, h-2-s);
279         if (h >= 2) mvwadd_wch(win,   y+h-1, x,     WACS_T_LLCORNER);
280         if (h >= 2) mvwadd_wch(win,   y+h-1, x+w-1, WACS_T_LRCORNER);
281         if (h >= 2) mvwhline_set(win, y+h-1, x+1,   WACS_T_HLINE, w-2);
282
283         for (i = 1; i < h-1; i++)
284                 mvwhline(win, y+i, x+1, ' ', w-2);
285
286         if (color) wattroff(win, COLOR_PAIR(color));
287
288         if (event == EVENT)     wattron(win, WA_BOLD | WA_REVERSE);
289         if (event == EVENT)     mvwhline(win, y+s, x, ' ', w);
290         if (l<h && event->name) mvwprintw(win, y+l++, x+1, "%.*s",   w-2, event->name);
291         if (event == EVENT)     wattroff(win, WA_REVERSE);
292         if (l<h && event->loc)  mvwprintw(win, y+l++, x+1, "@ %.*s", w-4, event->loc);
293         if (l<h && event->desc) mvwprintw(win, y+l++, x+1, "%.*s",   w-2, event->desc);
294         if (event == EVENT)     wattroff(win, WA_BOLD);
295 }
296
297 void event_line(WINDOW *win, event_t *event, int y, int x, int w, int flags)
298 {
299         int color = get_color(event->cat);
300
301         if (color) wattron(win, COLOR_PAIR(color));
302         mvwaddch(win, y, x++, ACS_BLOCK);
303         if (color) wattroff(win, COLOR_PAIR(color));
304
305         if (flags & SHOW_ACTIVE && event == EVENT)
306                 wattron(win, A_REVERSE | A_BOLD);
307         if (flags & SHOW_DETAILS) {
308                 if (all_day(&event->start, &event->end))
309                         mvwprintw(win, y, x+1, "[all day]   - ");
310                 else
311                         mvwprintw(win, y, x+1, "%2d:%02d-%2d:%02d - ",
312                                         event->start.hour, event->start.min,
313                                         event->end.hour,   event->end.min);
314                 x += 15;
315                 w -= 15;
316         }
317         if (event->name) {
318                 const char *label = event->name ?: event->desc;
319                 mvwprintw(win, y, x, "%-*.*s", w-1, w-1, label);
320                 x += MIN(strlen(label), w-1);
321         }
322         if (flags & SHOW_DETAILS && event->loc) {
323                 mvwprintw(win, y, x, " @ %s", event->loc);
324         }
325         if (flags & SHOW_ACTIVE && event == EVENT)
326                 wattroff(win, A_REVERSE | A_BOLD);
327 }
328
329 void todo_line(WINDOW *win, todo_t *todo, int y, int x, int w, int flags)
330 {
331         char perc[16];
332         char desc[LINES];
333         sprintf(perc, "%2d%%", todo->status);
334
335         int cat    = get_color(todo->cat);
336         int status = todo->status == NEW  ? COLOR_NEW  :
337                      todo->status == DONE ? COLOR_DONE : COLOR_WIP;
338
339         sprintf(desc, "%s", todo->name ?: todo->desc ?: "");
340         strsub(desc, '\n', ';');
341
342         /* Print category */
343         if (cat) wattron(win, COLOR_PAIR(cat));
344         mvwaddch(win, y, x, ACS_BLOCK);
345         if (cat) wattroff(win, COLOR_PAIR(cat));
346         x += 2;
347
348         /* Set background */
349         if (flags & SHOW_ACTIVE && todo == TODO)
350                 wattron(win, A_REVERSE | A_BOLD);
351         mvwhline(win, y, x, ' ', COLS-x);
352
353         /* Print time */
354         if (no_date(&todo->due))
355                 mvwprintw(win, y, x, "[no due date]");
356         else
357                 mvwprintw(win, y, x, "%04d-%02d-%02d %2d:%02d",
358                                 todo->due.year, todo->due.month+1, todo->due.day+1,
359                                 todo->due.hour, todo->due.min);
360         x += 18;
361
362         /* Print status */
363         if (status) wattron(win, COLOR_PAIR(status));
364         mvwprintw(win, y, x, "%s",
365                 todo->status == NEW    ? "new"  :
366                 todo->status == DONE   ? "done" : perc);
367         if (status) wattroff(win, COLOR_PAIR(status));
368         x += 6;
369
370         /* Print description */
371         mvwprintw(win, y, x, "%s", desc);
372
373         /* Reset flags */
374         if (flags & SHOW_ACTIVE && todo == TODO)
375                 wattroff(win, A_REVERSE | A_BOLD);
376 }
377
378 /* View init */
379 void view_init(void)
380 {
381         /* Set default escape timeout */
382         if (!getenv("ESCDELAY"))
383                 putenv("ESCDELAY=25");
384
385         /* Setup Curses */
386         setlocale(LC_ALL, "");
387         initscr();
388         cbreak();
389         noecho();
390         keypad(stdscr, TRUE);
391         start_color();
392         curs_set(false);
393         timeout(100);
394         use_default_colors();
395         mousemask(ALL_MOUSE_EVENTS, NULL);
396
397         init_pair(COLOR_TITLE, COLOR_GREEN,   -1);
398         init_pair(COLOR_ERROR, COLOR_RED,     -1);
399
400         init_pair(COLOR_NEW,   COLOR_RED,     -1);
401         init_pair(COLOR_WIP,   COLOR_YELLOW,  -1);
402         init_pair(COLOR_DONE,  COLOR_GREEN,   -1);
403
404         init_pair(COLOR_CLASS, COLOR_BLUE,    -1);
405         init_pair(COLOR_EC,    COLOR_GREEN,   -1);
406         init_pair(COLOR_WORK,  COLOR_MAGENTA, -1);
407         init_pair(COLOR_OTHER, COLOR_RED,     -1);
408
409         running = 1;
410
411         /* Setup windows */
412         for (int i = 0; i < N_ELEMENTS(views); i++) {
413                 int hdr = COMPACT ? 1 : 2;
414                 views[i]->win = newwin(LINES-hdr, COLS, hdr, 0);
415                 views[i]->init(views[i]->win);
416                 views[i]->size(LINES-hdr, COLS);
417         }
418 }
419
420 /* Config parser */
421 void view_config(const char *group, const char *name, const char *key, const char *value)
422 {
423         if (match(group, "view")) {
424                 if (match(key, "compact")) {
425                         COMPACT = get_bool(value);
426                 } else if (match(key, "morning")) {
427                         MORNING = get_number(value);
428                 } else if (match(key, "active")) {
429                         for (int i = 0; i < N_ELEMENTS(views); i++) {
430                                 if (match(value, views[i]->name)) {
431                                         get_string(value);
432                                         view = active = views[i];
433                                         break;
434                                 }
435                         }
436                 }
437         }
438 }
439
440 /* View event */
441 void view_edit(edit_t mode)
442 {
443         EDIT = mode;
444         set_view(active, &edit_view);
445 }
446
447 void view_main(void)
448 {
449         /* Draw initial view */
450         draw_view();
451
452         /* Run */
453         while (1) {
454                 MEVENT btn;
455                 conf_sync();
456                 int chr = getch();
457                 date_sync();
458                 if (chr == KEY_MOUSE)
459                         if (getmouse(&btn) != OK)
460                                 continue;
461                 if (process(chr, btn.bstate, btn.y, btn.x))
462                         continue;
463                 if (chr == ERR) // timeout
464                         continue;
465                 if (chr == 'q')
466                         break;
467                 debug("main: Unhandled key - Dec %3d,  Hex %02x,  Oct %03o,  Chr <%c>",
468                                 chr, chr, chr, chr);
469         }
470
471         /* Cleanup window */
472         view_exit();
473 }
474
475 void view_exit(void)
476 {
477         if (running)
478                 endwin();
479 }
480
481 void view_debug(const char *fmt, va_list ap)
482 {
483         if (running) {
484                 int rev = COMPACT ? A_BOLD : 0;
485                 if (!COMPACT)
486                         mvhline(LINES-2, 0, ACS_HLINE, COLS);
487                 move(LINES-1, 0);
488                 attron(COLOR_PAIR(COLOR_ERROR) | rev);
489                 vwprintw(stdscr, fmt, ap);
490                 attroff(COLOR_PAIR(COLOR_ERROR) | rev);
491                 if (!COMPACT)
492                         clrtoeol();
493         }
494 }