]> Pileus Git - lackey/blob - src/view.c
Bug fixes
[lackey] / src / view.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 <string.h>
21 #include <ncurses.h>
22
23 #include "util.h"
24 #include "date.h"
25 #include "cal.h"
26 #include "view.h"
27
28 /* Types */
29 typedef struct {
30         char   *name;
31         void  (*init)(WINDOW*);
32         void  (*size)(int,int);
33         void  (*draw)(void);
34         int   (*run)(int,mmask_t,int,int);
35         int     keys[8];
36         WINDOW *win;
37 } view_t;
38
39 /* Data */
40 view_t views[] = {
41         { "Day",      day_init,      day_size,      day_draw,      day_run,      {KEY_F(1), '1',    } },
42         { "Week",     week_init,     week_size,     week_draw,     week_run,     {KEY_F(2), '2',    } },
43         { "Month",    month_init,    month_size,    month_draw,    month_run,    {KEY_F(3), '3',    } },
44         { "Year",     year_init,     year_size,     year_draw,     year_run,     {KEY_F(4), '4',    } },
45         { "|",        NULL,          NULL,          NULL,          NULL,         {                  } },
46         { "Events",   events_init,   events_size,   events_draw,   events_run,   {KEY_F(5), '5',    } },
47         { "Todo",     todo_init,     todo_size,     todo_draw,     todo_run,     {KEY_F(6), '6',    } },
48         { "|",        NULL,          NULL,          NULL,          NULL,         {                  } },
49         { "Settings", settings_init, settings_size, settings_draw, settings_run, {KEY_F(7), '7',    } },
50         { "Help",     help_init,     help_size,     help_draw,     help_run,     {KEY_F(8), '8', '?'} },
51 };
52
53 int active = 0;
54
55 /* Local functions */
56 static void draw_header(void)
57 {
58         move(0, 0);
59         attron(COLOR_PAIR(COLOR_TITLE));
60         for (int i = 0; i < N_ELEMENTS(views); i++) {
61                 if (i == active)
62                         attron(A_BOLD);
63                 printw("%s ", views[i].name);
64                 if (i == active)
65                         attroff(A_BOLD);
66         }
67         attroff(COLOR_PAIR(COLOR_TITLE));
68         mvhline(1, 0, ACS_HLINE, COLS);
69         refresh();
70 }
71
72 static int get_color(const char *cat)
73 {
74         return cat == NULL           ? 0           :
75                !strcmp(cat, "class") ? COLOR_CLASS :
76                !strcmp(cat, "ec")    ? COLOR_EC    :
77                !strcmp(cat, "work")  ? COLOR_WORK  : COLOR_OTHER ;
78 }
79
80 /* Helper functions */
81 void event_box(WINDOW *win, event_t *event, int y, int x, int h, int w)
82 {
83         int l = 0;
84         int s = y < 0 ? -y-1 : 0;
85
86         int color = get_color(event->cat);
87
88         if (color) wattron(win, COLOR_PAIR(color));
89
90         if (h >= 2) mvwhline_set(win, y,     x+1,   WACS_T_HLINE, w-2);
91         if (h <= 1) mvwadd_wch(win,   y,     x,     WACS_BULLET);
92         if (h >= 2) mvwadd_wch(win,   y,     x,     WACS_T_ULCORNER);
93         if (h >= 2) mvwadd_wch(win,   y,     x+w-1, WACS_T_URCORNER);
94         if (h >= 3) mvwvline_set(win, y+1+s, x,     WACS_T_VLINE, h-2-s);
95         if (h >= 3) mvwvline_set(win, y+1+s, x+w-1, WACS_T_VLINE, h-2-s);
96         if (h >= 2) mvwadd_wch(win,   y+h-1, x,     WACS_T_LLCORNER);
97         if (h >= 2) mvwadd_wch(win,   y+h-1, x+w-1, WACS_T_LRCORNER);
98         if (h >= 2) mvwhline_set(win, y+h-1, x+1,   WACS_T_HLINE, w-2);
99
100         if (color) wattroff(win, COLOR_PAIR(color));
101
102         if (l<h && event->name) mvwprintw(win, y+l++, x+1, "%.*s",   w-2, event->name);
103         if (l<h && event->loc)  mvwprintw(win, y+l++, x+1, "@ %.*s", w-4, event->loc);
104         if (l<h && event->desc) mvwprintw(win, y+l++, x+1, "%.*s",   w-2, event->desc);
105 }
106
107 void event_line(WINDOW *win, event_t *event, int y, int x, int w, int full)
108 {
109         int color = get_color(event->cat);
110
111         if (color) wattron(win, COLOR_PAIR(color));
112         mvwaddch(win, y, x++, ACS_BLOCK);
113         if (color) wattroff(win, COLOR_PAIR(color));
114
115         if (full) {
116                 mvwprintw(win, y, x, " %2d:%02d-%2d:%02d -",
117                                 event->start.hour, event->start.min,
118                                 event->end.hour,   event->end.min);
119                 x += 15;
120         }
121         if (event->name) {
122                 const char *label = event->name ?: event->desc;
123                 mvwprintw(win, y, x, "%-*.*s", w-1, w-1, label);
124                 x += MIN(strlen(label), w-1);
125         }
126         if (full && event->loc) {
127                 mvwprintw(win, y, x, " @ %s", event->loc);
128         }
129 }
130
131 void todo_line(WINDOW *win, todo_t *todo, int y, int x, int w, int full)
132 {
133         char perc[16];
134         char desc[LINES];
135         sprintf(perc, "%2d%%", todo->status);
136
137         int cat    = get_color(todo->cat);
138         int status = todo->status == NEW  ? COLOR_NEW  :
139                      todo->status == DONE ? COLOR_DONE : COLOR_WIP;
140
141         sprintf(desc, "%s", todo->name ?: todo->desc ?: "");
142         strsub(desc, '\n', ';');
143
144         /* Print category */
145         if (cat) wattron(win, COLOR_PAIR(cat));
146         mvwaddch(win, y, x, ACS_BLOCK);
147         if (cat) wattroff(win, COLOR_PAIR(cat));
148         x += 2;
149
150         /* Print time */
151         mvwprintw(win, y, x, "%04d-%02d-%02d %2d:%02d",
152                         todo->due.year, todo->due.month+1, todo->due.day+1,
153                         todo->due.hour, todo->due.min);
154         x += 18;
155
156         /* Print status */
157         if (status) wattron(win, COLOR_PAIR(status));
158         mvwprintw(win, y, x, "%s",
159                 todo->status == NEW    ? "new"  :
160                 todo->status == DONE   ? "done" : perc);
161         if (status) wattroff(win, COLOR_PAIR(status));
162         x += 6;
163
164         /* Print description */
165         mvwprintw(win, y, x, "%s", desc);
166 }
167
168 /* View init */
169 void view_init(void)
170 {
171         for (int i = 0; i < N_ELEMENTS(views); i++) {
172                 if (views[i].init) {
173                         views[i].win = newwin(LINES-2, COLS, 2, 0);
174                         views[i].init(views[i].win);
175                 }
176         }
177 }
178
179 /* View draw */
180 void view_resize(void)
181 {
182         for (int i = 0; i < N_ELEMENTS(views); i++) {
183                 if (views[i].win)
184                         wresize(views[i].win, LINES-2, COLS);
185                 if (views[i].size)
186                         views[i].size(LINES-2, COLS);
187         }
188 }
189
190 /* View draw */
191 void view_draw(void)
192 {
193         draw_header();
194         werase(views[active].win);
195         views[active].draw();
196         wrefresh(views[active].win);
197 }
198
199 /* View set */
200 int view_set(int num)
201 {
202         if (active != num) {
203                 active = num;
204                 view_draw();
205         }
206         return 1;
207 }
208
209 /* View run */
210 int view_run(int key, mmask_t btn, int row, int col)
211 {
212         /* Check for mouse events */
213         if (key == KEY_MOUSE && row == 0) {
214                 int start = 1;
215                 for (int i = 0; i < N_ELEMENTS(views); i++) {
216                         int end = start + strlen(views[i].name) - 1;
217                         if (start <= col && col <= end && views[i].draw)
218                                 return view_set(i);
219                         start = end + 2;
220                 }
221         }
222
223         /* Check for view change */
224         for (int i = 0; i < N_ELEMENTS(views); i++) {
225                 if (i == active)
226                         continue;
227                 for (int j = 0; j < N_ELEMENTS(views[i].keys); j++)
228                         if (views[i].keys[j] == key)
229                                 return view_set(i);
230         }
231
232         /* Shift windows */
233         int num   = active;
234         int shift = key == KEY_RIGHT ? +1 :
235                     key == KEY_LEFT  ? -1 : 0;
236         while (shift) {
237                 num += shift;
238                 num += N_ELEMENTS(views);
239                 num %= N_ELEMENTS(views);
240                 if (views[num].run)
241                         return view_set(num);
242         }
243
244         /* Pass key to active view */
245         return views[active].run(key, btn, row, col);
246 }