]> Pileus Git - lackey/blob - views/todo.c
e6027f9dedf0c2c4d5f627d520b97cf7b09d6257
[lackey] / views / todo.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 #include <ncurses.h>
19
20 /* Static data */
21 static WINDOW *win;
22
23 /* Todo init */
24 void todo_init(WINDOW *_win)
25 {
26         win = _win;
27 }
28
29 /* Todo size */
30 void todo_size(int rows, int cols)
31 {
32 }
33
34 /* Todo draw */
35 void todo_draw(void)
36 {
37         mvwprintw(win, 0, 1, "%s\n", "todo");
38 }
39
40 /* Todo run */
41 int todo_run(int key, mmask_t btn, int row, int col)
42 {
43         return 0;
44 }