rest of insert commands
[taskasaur.git] / headers / menu.h
index 10a739f..89b46b0 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,10 @@ typedef enum {
     MENU_MOVE_UP,
     MENU_MOVE_DOWN,
     MENU_DELETE,
-    MENU_APPEND
+    MENU_APPEND,
+    MENU_INSERT_ABOVE,
+    MENU_INSERT_BELOW,
+    MENU_EDIT
 } MenuAction;
 
 typedef struct Menu Menu;