TEditor 80% complete
[fanfix.git] / src / jexer / TCommand.java
index 584994f948cdfd5dd2abb3329eb791981bd50958..a814fae7c15d79ee2f201d547be83e32e95a3382 100644 (file)
@@ -3,7 +3,7 @@
  *
  * The MIT License (MIT)
  *
- * Copyright (C) 2016 Kevin Lamonte
+ * Copyright (C) 2017 Kevin Lamonte
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
@@ -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);
 
 }