insert/text editing
[taskasaur.git] / headers / render.h
index c3407f9..5a13100 100644 (file)
@@ -5,12 +5,21 @@
 #include <ncurses.h>
 
 enum TaskasaurColors {
-    TS_SELECTED,
-    TS_NONSELECTED
+    TS_SELECTED = 1,
+    TS_NONSELECTED,
+    TS_MENU_SELECTED,
+    TS_MENU_NONSELECTED,
 };
 
 /* the ts is used to not conflict with builtin names */
 extern int init_tscurses(void);
 extern int exit_tscurses(void);
 
+extern int curs_on(void);
+extern int curs_off(void);
+
+/* some helpers */
+extern int ungetstr(char* str);
+
+
 #endif