insert/text editing
[taskasaur.git] / headers / menu.h
index 10a739f..b8ab467 100644 (file)
@@ -3,6 +3,7 @@
 #define __MENU_H__
 
 #include <stdbool.h>
+#include <ncurses.h>
 
 /* ncurses doesn't support multiline menu items,
  * so i wrote my own menu lib */
@@ -15,7 +16,9 @@ typedef enum {
     MENU_MOVE_UP,
     MENU_MOVE_DOWN,
     MENU_DELETE,
-    MENU_APPEND
+    MENU_APPEND,
+    MENU_INSERT_ABOVE,
+    MENU_INSERT_BELOW
 } MenuAction;
 
 typedef struct Menu Menu;