insert/text editing
[taskasaur.git] / headers / render.h
1
2 #ifndef __RENDER_H__
3 #define __RENDER_H__
4
5 #include <ncurses.h>
6
7 enum TaskasaurColors {
8     TS_SELECTED = 1,
9     TS_NONSELECTED,
10     TS_MENU_SELECTED,
11     TS_MENU_NONSELECTED,
12 };
13
14 /* the ts is used to not conflict with builtin names */
15 extern int init_tscurses(void);
16 extern int exit_tscurses(void);
17
18 extern int curs_on(void);
19 extern int curs_off(void);
20
21 /* some helpers */
22 extern int ungetstr(char* str);
23
24
25 #endif