X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTCommand.java;h=a814fae7c15d79ee2f201d547be83e32e95a3382;hb=eb29bbb5ec70c43895dd0f053630c7e3cd402cba;hp=8381d9e3d8bdc8663cf934cf4d1ef7a72c370089;hpb=a2018e9964f6c58742cd1e6dd0a0c63e244a89d6;p=fanfix.git diff --git a/src/jexer/TCommand.java b/src/jexer/TCommand.java index 8381d9e..a814fae 100644 --- a/src/jexer/TCommand.java +++ b/src/jexer/TCommand.java @@ -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); }