Update for BrailleBack 0.93.0-beta2. git-svn-id: https://eyes-free.googlecode.com/svn/trunk/braille/client/src/com/googlecode/eyesfree/braille@814 584082c0-ab3a-11dd-9ddb-6f86aeb5eef6
diff --git a/display/BrailleInputEvent.java b/display/BrailleInputEvent.java index 314405c..fe72678 100644 --- a/display/BrailleInputEvent.java +++ b/display/BrailleInputEvent.java
@@ -122,7 +122,7 @@ /** Keyboard command: Delete forward. */ public static final int CMD_KEY_FORWARD_DEL = 72; - // Glboal navigation keys. + // Global navigation keys. /** Keyboard command: Back button. */ public static final int CMD_GLOBAL_BACK = 90; @@ -138,6 +138,23 @@ /** Keyboard command: Invoke keyboard help. */ public static final int CMD_HELP = 100; + // Web content commands. + + /** Keyboard command: Next section in page. */ + public static final int CMD_SECTION_NEXT = 110; + /** Keyboard command: Previous section in page. */ + public static final int CMD_SECTION_PREVIOUS = 111; + /** Keyboard command: Next control in page. */ + public static final int CMD_CONTROL_NEXT = 112; + /** Keyboard command: Previous control in page. */ + public static final int CMD_CONTROL_PREVIOUS = 113; + /** Keyboard command: Next list in page. */ + public static final int CMD_LIST_NEXT = 114; + /** Keyboard command: Previous list in page. */ + public static final int CMD_LIST_PREVIOUS = 115; + /** Keyboard command: Toggle Incremental search. */ + public static final int CMD_TOGGLE_INCREMENTAL_SEARCH = 116; + // Meanings of the argument to a command. /** This command doesn't have an argument. */ @@ -188,6 +205,14 @@ CMD_NAMES.append(CMD_GLOBAL_RECENTS, "CMD_GLOBAL_RECENTS"); CMD_NAMES.append(CMD_GLOBAL_NOTIFICATIONS, "CMD_GLOBAL_NOTIFICATIONS"); CMD_NAMES.append(CMD_HELP, "CMD_HELP"); + CMD_NAMES.append(CMD_SECTION_NEXT, "CMD_SECTION_NEXT"); + CMD_NAMES.append(CMD_SECTION_PREVIOUS, "CMD_SECTION_PREVIOUS"); + CMD_NAMES.append(CMD_CONTROL_NEXT, "CMD_CONTROL_NEXT"); + CMD_NAMES.append(CMD_CONTROL_PREVIOUS, "CMD_CONTROL_PREVIOUS"); + CMD_NAMES.append(CMD_LIST_NEXT, "CMD_LIST_NEXT"); + CMD_NAMES.append(CMD_LIST_PREVIOUS, "CMD_LIST_PREVIOUS"); + CMD_NAMES.append(CMD_TOGGLE_INCREMENTAL_SEARCH, + "CMD_TOGGLE_INCREMENTAL_SEARCH"); for (int i = 0; i < CMD_NAMES.size(); ++i) { NAMES_TO_CMDS.put(CMD_NAMES.valueAt(i), CMD_NAMES.keyAt(i));