TEditor 80% complete
[nikiroo-utils.git] / src / jexer / TCommand.java
index 8381d9e3d8bdc8663cf934cf4d1ef7a72c370089..a814fae7c15d79ee2f201d547be83e32e95a3382 100644 (file)
@@ -121,6 +121,16 @@ public class TCommand {
      */
     public static final int HELP                = 20;
 
+    /**
+     * Enter first menu.
+     */
+    public static final int MENU                = 21;
+
+    /**
+     * Save file.
+     */
+    public static final int SAVE                = 30;
+
     /**
      * Type of command, one of EXIT, CASCADE, etc.
      */
@@ -189,5 +199,7 @@ public class TCommand {
     public static final TCommand cmWindowPrevious = new TCommand(WINDOW_PREVIOUS);
     public static final TCommand cmWindowClose  = new TCommand(WINDOW_CLOSE);
     public static final TCommand cmHelp         = new TCommand(HELP);
+    public static final TCommand cmSave         = new TCommand(SAVE);
+    public static final TCommand cmMenu         = new TCommand(MENU);
 
 }