BrailleBack 0.94.0-beta1 with dependencies. git-svn-id: https://eyes-free.googlecode.com/svn/trunk/braille/client/src/com/googlecode/eyesfree/braille@819 584082c0-ab3a-11dd-9ddb-6f86aeb5eef6
diff --git a/display/BrailleInputEvent.java b/display/BrailleInputEvent.java index fe72678..95fb59d 100644 --- a/display/BrailleInputEvent.java +++ b/display/BrailleInputEvent.java
@@ -138,6 +138,9 @@ /** Keyboard command: Invoke keyboard help. */ public static final int CMD_HELP = 100; + /** Keyboard command: Toggle the Braille menu. */ + public static final int CMD_TOGGLE_BRAILLE_MENU = 117; + // Web content commands. /** Keyboard command: Next section in page. */ @@ -213,6 +216,7 @@ CMD_NAMES.append(CMD_LIST_PREVIOUS, "CMD_LIST_PREVIOUS"); CMD_NAMES.append(CMD_TOGGLE_INCREMENTAL_SEARCH, "CMD_TOGGLE_INCREMENTAL_SEARCH"); + CMD_NAMES.append(CMD_TOGGLE_BRAILLE_MENU, "CMD_TOGGLE_BRAILLE_MENU"); for (int i = 0; i < CMD_NAMES.size(); ++i) { NAMES_TO_CMDS.put(CMD_NAMES.valueAt(i), CMD_NAMES.keyAt(i));