]> Pileus Git - lackey/blob - src/view.c
Add todo view
[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 = 6;
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, " %02d:%02d - ", event->start.hour, event->start.min);
117                 x += 9;
118         }
119         if (event->name) {
120                 const char *label = event->name ?: event->desc;
121                 mvwprintw(win, y, x, "%-*.*s", w-1, w-1, label);
122                 x += MIN(strlen(label), w-1);
123         }
124         if (full && event->loc) {
125                 mvwprintw(win, y, x, " @ %s", event->loc);
126         }
127 }
128
129 void todo_line(WINDOW *win, todo_t *todo, int y, int x, int w, int full)
130 {
131         char perc[16];
132         sprintf(perc, "%2d%%", todo->status);
133
134         int color = get_color(todo->cat);
135         if (color) wattron(win, COLOR_PAIR(color));
136         mvwaddch(win, y, 2, ACS_BLOCK);
137         if (color) wattroff(win, COLOR_PAIR(color));
138
139         mvwprintw(win, y, 4, "%04d-%02d-%02d %2d:%02d",
140                         todo->due.year, todo->due.month+1, todo->due.day+1,
141                         todo->due.hour, todo->due.min);
142         mvwprintw(win, y, 22, "%s",
143                         todo->status == NEW  ? "new"  :
144                         todo->status == DONE ? "done" : perc);
145         mvwprintw(win, y, 30, "%s: %s", todo->name, todo->desc);
146 }
147
148 /* View init */
149 void view_init(void)
150 {
151         for (int i = 0; i < N_ELEMENTS(views); i++) {
152                 if (views[i].init) {
153                         views[i].win = newwin(LINES-2, COLS, 2, 0);
154                         views[i].init(views[i].win);
155                 }
156         }
157 }
158
159 /* View draw */
160 void view_resize(void)
161 {
162         for (int i = 0; i < N_ELEMENTS(views); i++) {
163                 if (views[i].win)
164                         wresize(views[i].win, LINES-2, COLS);
165                 if (views[i].size)
166                         views[i].size(LINES-2, COLS);
167         }
168 }
169
170 /* View draw */
171 void view_draw(void)
172 {
173         draw_header();
174         werase(views[active].win);
175         views[active].draw();
176         wrefresh(views[active].win);
177 }
178
179 /* View set */
180 int view_set(int num)
181 {
182         if (active != num) {
183                 active = num;
184                 view_draw();
185         }
186         return 1;
187 }
188
189 /* View run */
190 int view_run(int key, mmask_t btn, int row, int col)
191 {
192         /* Check for mouse events */
193         if (key == KEY_MOUSE && row == 0) {
194                 int start = 1;
195                 for (int i = 0; i < N_ELEMENTS(views); i++) {
196                         int end = start + strlen(views[i].name) - 1;
197                         if (start <= col && col <= end && views[i].draw)
198                                 return view_set(i);
199                         start = end + 2;
200                 }
201         }
202
203         /* Check for view change */
204         for (int i = 0; i < N_ELEMENTS(views); i++) {
205                 if (i == active)
206                         continue;
207                 for (int j = 0; j < N_ELEMENTS(views[i].keys); j++)
208                         if (views[i].keys[j] == key)
209                                 return view_set(i);
210         }
211
212         /* Shift windows */
213         int num   = active;
214         int shift = key == KEY_RIGHT ? +1 :
215                     key == KEY_LEFT  ? -1 : 0;
216         while (shift) {
217                 num += shift;
218                 num += N_ELEMENTS(views);
219                 num %= N_ELEMENTS(views);
220                 if (views[num].run)
221                         return view_set(num);
222         }
223
224         /* Pass key to active view */
225         return views[active].run(key, btn, row, col);
226 }