1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
goog.provide('cvox.ChromeVoxEditableContentEditable');
goog.provide('cvox.ChromeVoxEditableHTMLInput');
goog.provide('cvox.ChromeVoxEditableTextArea');
goog.provide('cvox.ChromeVoxEditableTextBase');
goog.provide('cvox.TextChangeEvent');
goog.provide('cvox.TextHandlerInterface');
goog.provide('cvox.TypingEcho');
goog.require('cvox.BrailleTextHandler');
goog.require('cvox.ContentEditableExtractor');
goog.require('cvox.DomUtil');
goog.require('cvox.EditableTextAreaShadow');
goog.require('cvox.TtsInterface');
goog.require('goog.i18n.MessageFormat');
/**
* @fileoverview Gives the user spoken feedback as they type, select text,
* and move the cursor in editable text controls, including multiline
* controls.
*
* The majority of the code is in ChromeVoxEditableTextBase, a generalized
* class that takes the current state in the form of a text string, a
* cursor start location and a cursor end location, and calls a speak
* method with the resulting text to be spoken. If the control is multiline,
* information about line breaks (including automatic ones) is also needed.
*
* Two subclasses, ChromeVoxEditableHTMLInput and
* ChromeVoxEditableTextArea, take a HTML input (type=text) or HTML
* textarea node (respectively) in the constructor, and automatically
* handle retrieving the current state of the control, including
* computing line break information for a textarea using an offscreen
* shadow object. It is still the responsibility of the user of this
* class to trap key and focus events and call this class's update
* method.
*
*/
/**
* A class containing the information needed to speak
* a text change event to the user.
*
* @constructor
* @param {string} newValue The new string value of the editable text control.
* @param {number} newStart The new 0-based start cursor/selection index.
* @param {number} newEnd The new 0-based end cursor/selection index.
* @param {boolean} triggeredByUser .
*/
cvox.TextChangeEvent = function(newValue, newStart, newEnd, triggeredByUser) {
this.value = newValue;
this.start = newStart;
this.end = newEnd;
this.triggeredByUser = triggeredByUser;
// Adjust offsets to be in left to right order.
if (this.start > this.end) {
var tempOffset = this.end;
this.end = this.start;
this.start = tempOffset;
}
};
/**
* A list of typing echo options.
* This defines the way typed characters get spoken.
* CHARACTER: echoes typed characters.
* WORD: echoes a word once a breaking character is typed (i.e. spacebar).
* CHARACTER_AND_WORD: combines CHARACTER and WORD behavior.
* NONE: speaks nothing when typing.
* COUNT: The number of possible echo levels.
* @enum
*/
cvox.TypingEcho = {
CHARACTER: 0,
WORD: 1,
CHARACTER_AND_WORD: 2,
NONE: 3,
COUNT: 4
};
/**
* @param {number} cur Current typing echo.
* @return {number} Next typing echo.
*/
cvox.TypingEcho.cycle = function(cur) {
return (cur + 1) % cvox.TypingEcho.COUNT;
};
/**
* Return if characters should be spoken given the typing echo option.
* @param {number} typingEcho Typing echo option.
* @return {boolean} Whether the character should be spoken.
*/
cvox.TypingEcho.shouldSpeakChar = function(typingEcho) {
return typingEcho == cvox.TypingEcho.CHARACTER_AND_WORD ||
typingEcho == cvox.TypingEcho.CHARACTER;
};
/**
* An interface for being notified when the text changes.
* @interface
*/
cvox.TextHandlerInterface = function() {};
/**
* Called when text changes.
* @param {cvox.TextChangeEvent} evt The text change event.
*/
cvox.TextHandlerInterface.prototype.changed = function(evt) {};
/**
* A class representing an abstracted editable text control.
* @param {string} value The string value of the editable text control.
* @param {number} start The 0-based start cursor/selection index.
* @param {number} end The 0-based end cursor/selection index.
* @param {boolean} isPassword Whether the text control if a password field.
* @param {cvox.TtsInterface} tts A TTS object.
* @constructor
*/
cvox.ChromeVoxEditableTextBase = function(value, start, end, isPassword, tts) {
/**
* Current value of the text field.
* @type {string}
* @protected
*/
this.value = value;
/**
* 0-based selection start index.
* @type {number}
* @protected
*/
this.start = start;
/**
* 0-based selection end index.
* @type {number}
* @protected
*/
this.end = end;
/**
* True if this is a password field.
* @type {boolean}
* @protected
*/
this.isPassword = isPassword;
/**
* Text-to-speech object implementing speak() and stop() methods.
* @type {cvox.TtsInterface}
* @protected
*/
this.tts = tts;
/**
* Whether or not the text field is multiline.
* @type {boolean}
* @protected
*/
this.multiline = false;
/**
* An optional handler for braille output.
* @type {cvox.BrailleTextHandler|undefined}
* @private
*/
this.brailleHandler_ = cvox.ChromeVox.braille ?
new cvox.BrailleTextHandler(cvox.ChromeVox.braille) : undefined;
};
/**
* Performs setup for this element.
*/
cvox.ChromeVoxEditableTextBase.prototype.setup = function() {};
/**
* Performs teardown for this element.
*/
cvox.ChromeVoxEditableTextBase.prototype.teardown = function() {};
/**
* Whether or not moving the cursor from one character to another considers
* the cursor to be a block (false) or an i-beam (true).
*
* If the cursor is a block, then the value of the character to the right
* of the cursor index is always read when the cursor moves, no matter what
* the previous cursor location was - this is how PC screenreaders work.
*
* If the cursor is an i-beam, moving the cursor by one character reads the
* character that was crossed over, which may be the character to the left or
* right of the new cursor index depending on the direction.
*
* If the current platform is a Mac, we will use an i-beam cursor. If not,
* then we will use the block cursor.
*
* @type {boolean}
*/
cvox.ChromeVoxEditableTextBase.useIBeamCursor = cvox.ChromeVox.isMac;
/**
* Switches on or off typing echo based on events. When set, editable text
* updates for single-character insertions are handled in event watcher's key
* press handler.
* @type {boolean}
*/
cvox.ChromeVoxEditableTextBase.eventTypingEcho = false;
/**
* The maximum number of characters that are short enough to speak in response
* to an event. For example, if the user selects "Hello", we will speak
* "Hello, selected", but if the user selects 1000 characters, we will speak
* "text selected" instead.
*
* @type {number}
*/
cvox.ChromeVoxEditableTextBase.prototype.maxShortPhraseLen = 60;
/**
* Whether or not the text control is a password.
*
* @type {boolean}
*/
cvox.ChromeVoxEditableTextBase.prototype.isPassword = false;
/**
* Whether or not the last update to the text and selection was described.
*
* Some consumers of this flag like |ChromeVoxEventWatcher| depend on and
* react to when this flag is false by generating alternative feedback.
* @type {boolean}
*/
cvox.ChromeVoxEditableTextBase.prototype.lastChangeDescribed = false;
/**
* Get the line number corresponding to a particular index.
* Default implementation that can be overridden by subclasses.
* @param {number} index The 0-based character index.
* @return {number} The 0-based line number corresponding to that character.
*/
cvox.ChromeVoxEditableTextBase.prototype.getLineIndex = function(index) {
return 0;
};
/**
* Get the start character index of a line.
* Default implementation that can be overridden by subclasses.
* @param {number} index The 0-based line index.
* @return {number} The 0-based index of the first character in this line.
*/
cvox.ChromeVoxEditableTextBase.prototype.getLineStart = function(index) {
return 0;
};
/**
* Get the end character index of a line.
* Default implementation that can be overridden by subclasses.
* @param {number} index The 0-based line index.
* @return {number} The 0-based index of the end of this line.
*/
cvox.ChromeVoxEditableTextBase.prototype.getLineEnd = function(index) {
return this.value.length;
};
/**
* Get the full text of the current line.
* @param {number} index The 0-based line index.
* @return {string} The text of the line.
*/
cvox.ChromeVoxEditableTextBase.prototype.getLine = function(index) {
var lineStart = this.getLineStart(index);
var lineEnd = this.getLineEnd(index);
return this.value.substr(lineStart, lineEnd - lineStart);
};
/**
* @param {string} ch The character to test.
* @return {boolean} True if a character is whitespace.
*/
cvox.ChromeVoxEditableTextBase.prototype.isWhitespaceChar = function(ch) {
return ch == ' ' || ch == '\n' || ch == '\r' || ch == '\t';
};
/**
* @param {string} ch The character to test.
* @return {boolean} True if a character breaks a word, used to determine
* if the previous word should be spoken.
*/
cvox.ChromeVoxEditableTextBase.prototype.isWordBreakChar = function(ch) {
return !!ch.match(/^\W$/);
};
/**
* @param {cvox.TextChangeEvent} evt The new text changed event to test.
* @return {boolean} True if the event, when compared to the previous text,
* should trigger description.
*/
cvox.ChromeVoxEditableTextBase.prototype.shouldDescribeChange = function(evt) {
if (evt.value == this.value &&
evt.start == this.start &&
evt.end == this.end) {
return false;
}
return true;
};
/**
* Speak text, but if it's a single character, describe the character.
* @param {string} str The string to speak.
* @param {boolean=} opt_triggeredByUser True if the speech was triggered by a
* user action.
* @param {Object=} opt_personality Personality used to speak text.
*/
cvox.ChromeVoxEditableTextBase.prototype.speak =
function(str, opt_triggeredByUser, opt_personality) {
// If there is a node associated with the editable text object,
// make sure that node has focus before speaking it.
if (this.node && (document.activeElement != this.node)) {
return;
}
var queueMode = cvox.QueueMode.QUEUE;
if (opt_triggeredByUser === true) {
queueMode = cvox.QueueMode.FLUSH;
}
this.tts.speak(str, queueMode, opt_personality || {});
};
/**
* Update the state of the text and selection and describe any changes as
* appropriate.
*
* @param {cvox.TextChangeEvent} evt The text change event.
*/
cvox.ChromeVoxEditableTextBase.prototype.changed = function(evt) {
if (!this.shouldDescribeChange(evt)) {
this.lastChangeDescribed = false;
return;
}
if (evt.value == this.value) {
this.describeSelectionChanged(evt);
} else {
this.describeTextChanged(evt);
}
this.lastChangeDescribed = true;
this.value = evt.value;
this.start = evt.start;
this.end = evt.end;
this.brailleCurrentLine_();
};
/**
* Shows the current line on the braille display.
* @private
*/
cvox.ChromeVoxEditableTextBase.prototype.brailleCurrentLine_ = function() {
if (this.brailleHandler_) {
var lineIndex = this.getLineIndex(this.start);
var line = this.getLine(lineIndex);
// Collapsable whitespace inside the contenteditable is represented
// as non-breaking spaces. This confuses braille input (which relies on
// the text being added to be the same as the text in the input field).
// Since the non-breaking spaces are just an artifact of how
// contenteditable is implemented, normalize to normal spaces instead.
if (this instanceof cvox.ChromeVoxEditableContentEditable) {
line = line.replace(/\u00A0/g, ' ');
}
var lineStart = this.getLineStart(lineIndex);
var start = this.start - lineStart;
var end = Math.min(this.end - lineStart, line.length);
this.brailleHandler_.changed(line, start, end, this.multiline, this.node,
lineStart);
}
};
/**
* Describe a change in the selection or cursor position when the text
* stays the same.
* @param {cvox.TextChangeEvent} evt The text change event.
*/
cvox.ChromeVoxEditableTextBase.prototype.describeSelectionChanged =
function(evt) {
// TODO(deboer): Factor this into two function:
// - one to determine the selection event
// - one to speak
if (this.isPassword) {
this.speak((new goog.i18n.MessageFormat(cvox.ChromeVox.msgs.getMsg('dot'))
.format({'COUNT': 1})), evt.triggeredByUser);
return;
}
if (evt.start == evt.end) {
// It's currently a cursor.
if (this.start != this.end) {
// It was previously a selection, so just announce 'unselected'.
this.speak(cvox.ChromeVox.msgs.getMsg('Unselected'), evt.triggeredByUser);
} else if (this.getLineIndex(this.start) !=
this.getLineIndex(evt.start)) {
// Moved to a different line; read it.
var lineValue = this.getLine(this.getLineIndex(evt.start));
if (lineValue == '') {
lineValue = cvox.ChromeVox.msgs.getMsg('text_box_blank');
} else if (/^\s+$/.test(lineValue)) {
lineValue = cvox.ChromeVox.msgs.getMsg('text_box_whitespace');
}
this.speak(lineValue, evt.triggeredByUser);
} else if (this.start == evt.start + 1 ||
this.start == evt.start - 1) {
// Moved by one character; read it.
if (!cvox.ChromeVoxEditableTextBase.useIBeamCursor) {
if (evt.start == this.value.length) {
if (cvox.ChromeVox.verbosity == cvox.VERBOSITY_VERBOSE) {
this.speak(cvox.ChromeVox.msgs.getMsg('end_of_text_verbose'),
evt.triggeredByUser);
} else {
this.speak(cvox.ChromeVox.msgs.getMsg('end_of_text_brief'),
evt.triggeredByUser);
}
} else {
this.speak(this.value.substr(evt.start, 1),
evt.triggeredByUser,
{'phoneticCharacters': evt.triggeredByUser});
}
} else {
this.speak(this.value.substr(Math.min(this.start, evt.start), 1),
evt.triggeredByUser,
{'phoneticCharacters': evt.triggeredByUser});
}
} else {
// Moved by more than one character. Read all characters crossed.
this.speak(this.value.substr(Math.min(this.start, evt.start),
Math.abs(this.start - evt.start)), evt.triggeredByUser);
}
} else {
// It's currently a selection.
if (this.start + 1 == evt.start &&
this.end == this.value.length &&
evt.end == this.value.length) {
// Autocomplete: the user typed one character of autocompleted text.
this.speak(this.value.substr(this.start, 1), evt.triggeredByUser);
this.speak(this.value.substr(evt.start));
} else if (this.start == this.end) {
// It was previously a cursor.
this.speak(this.value.substr(evt.start, evt.end - evt.start),
evt.triggeredByUser);
this.speak(cvox.ChromeVox.msgs.getMsg('selected'));
} else if (this.start == evt.start && this.end < evt.end) {
this.speak(this.value.substr(this.end, evt.end - this.end),
evt.triggeredByUser);
this.speak(cvox.ChromeVox.msgs.getMsg('added_to_selection'));
} else if (this.start == evt.start && this.end > evt.end) {
this.speak(this.value.substr(evt.end, this.end - evt.end),
evt.triggeredByUser);
this.speak(cvox.ChromeVox.msgs.getMsg('removed_from_selection'));
} else if (this.end == evt.end && this.start > evt.start) {
this.speak(this.value.substr(evt.start, this.start - evt.start),
evt.triggeredByUser);
this.speak(cvox.ChromeVox.msgs.getMsg('added_to_selection'));
} else if (this.end == evt.end && this.start < evt.start) {
this.speak(this.value.substr(this.start, evt.start - this.start),
evt.triggeredByUser);
this.speak(cvox.ChromeVox.msgs.getMsg('removed_from_selection'));
} else {
// The selection changed but it wasn't an obvious extension of
// a previous selection. Just read the new selection.
this.speak(this.value.substr(evt.start, evt.end - evt.start),
evt.triggeredByUser);
this.speak(cvox.ChromeVox.msgs.getMsg('selected'));
}
}
};
/**
* Describe a change where the text changes.
* @param {cvox.TextChangeEvent} evt The text change event.
*/
cvox.ChromeVoxEditableTextBase.prototype.describeTextChanged = function(evt) {
var personality = {};
if (evt.value.length < this.value.length) {
personality = cvox.AbstractTts.PERSONALITY_DELETED;
}
if (this.isPassword) {
this.speak((new goog.i18n.MessageFormat(cvox.ChromeVox.msgs.getMsg('dot'))
.format({'COUNT': 1})), evt.triggeredByUser, personality);
return;
}
var value = this.value;
var len = value.length;
var newLen = evt.value.length;
var autocompleteSuffix = '';
// Make a copy of evtValue and evtEnd to avoid changing anything in
// the event itself.
var evtValue = evt.value;
var evtEnd = evt.end;
// First, see if there's a selection at the end that might have been
// added by autocomplete. If so, strip it off into a separate variable.
if (evt.start < evtEnd && evtEnd == newLen) {
autocompleteSuffix = evtValue.substr(evt.start);
evtValue = evtValue.substr(0, evt.start);
evtEnd = evt.start;
}
// Now see if the previous selection (if any) was deleted
// and any new text was inserted at that character position.
// This would handle pasting and entering text by typing, both from
// a cursor and from a selection.
var prefixLen = this.start;
var suffixLen = len - this.end;
if (newLen >= prefixLen + suffixLen + (evtEnd - evt.start) &&
evtValue.substr(0, prefixLen) == value.substr(0, prefixLen) &&
evtValue.substr(newLen - suffixLen) == value.substr(this.end)) {
// However, in a dynamic content editable, defer to authoritative events
// (clipboard, key press) to reduce guess work when observing insertions.
// Only use this logic when observing deletions (and insertion of word
// breakers).
// TODO(dtseng): Think about a more reliable way to do this.
if (!(this instanceof cvox.ChromeVoxEditableContentEditable) ||
newLen < len ||
this.isWordBreakChar(evt.value[newLen - 1] || '')) {
this.describeTextChangedHelper(
evt, prefixLen, suffixLen, autocompleteSuffix, personality);
}
return;
}
// Next, see if one or more characters were deleted from the previous
// cursor position and the new cursor is in the expected place. This
// handles backspace, forward-delete, and similar shortcuts that delete
// a word or line.
prefixLen = evt.start;
suffixLen = newLen - evtEnd;
if (this.start == this.end &&
evt.start == evtEnd &&
evtValue.substr(0, prefixLen) == value.substr(0, prefixLen) &&
evtValue.substr(newLen - suffixLen) ==
value.substr(len - suffixLen)) {
this.describeTextChangedHelper(
evt, prefixLen, suffixLen, autocompleteSuffix, personality);
return;
}
// If all else fails, we assume the change was not the result of a normal
// user editing operation, so we'll have to speak feedback based only
// on the changes to the text, not the cursor position / selection.
// First, restore the autocomplete text if any.
evtValue += autocompleteSuffix;
// Try to do a diff between the new and the old text. If it is a one character
// insertion/deletion at the start or at the end, just speak that character.
if ((evtValue.length == (value.length + 1)) ||
((evtValue.length + 1) == value.length)) {
// The user added text either to the beginning or the end.
if (evtValue.length > value.length) {
if (evtValue.indexOf(value) == 0) {
this.speak(evtValue[evtValue.length - 1], evt.triggeredByUser,
personality);
return;
} else if (evtValue.indexOf(value) == 1) {
this.speak(evtValue[0], evt.triggeredByUser, personality);
return;
}
}
// The user deleted text either from the beginning or the end.
if (evtValue.length < value.length) {
if (value.indexOf(evtValue) == 0) {
this.speak(value[value.length - 1], evt.triggeredByUser, personality);
return;
} else if (value.indexOf(evtValue) == 1) {
this.speak(value[0], evt.triggeredByUser, personality);
return;
}
}
}
if (this.multiline) {
// Fall back to announce deleted but omit the text that was deleted.
if (evt.value.length < this.value.length) {
this.speak(cvox.ChromeVox.msgs.getMsg('text_deleted'),
evt.triggeredByUser, personality);
}
// The below is a somewhat loose way to deal with non-standard
// insertions/deletions. Intentionally skip for multiline since deletion
// announcements are covered above and insertions are non-standard (possibly
// due to auto complete). Since content editable's often refresh content by
// removing and inserting entire chunks of text, this type of logic often
// results in unintended consequences such as reading all text when only one
// character has been entered.
return;
}
// If the text is short, just speak the whole thing.
if (newLen <= this.maxShortPhraseLen) {
this.describeTextChangedHelper(evt, 0, 0, '', personality);
return;
}
// Otherwise, look for the common prefix and suffix, but back up so
// that we can speak complete words, to be minimally confusing.
prefixLen = 0;
while (prefixLen < len &&
prefixLen < newLen &&
value[prefixLen] == evtValue[prefixLen]) {
prefixLen++;
}
while (prefixLen > 0 && !this.isWordBreakChar(value[prefixLen - 1])) {
prefixLen--;
}
suffixLen = 0;
while (suffixLen < (len - prefixLen) &&
suffixLen < (newLen - prefixLen) &&
value[len - suffixLen - 1] == evtValue[newLen - suffixLen - 1]) {
suffixLen++;
}
while (suffixLen > 0 && !this.isWordBreakChar(value[len - suffixLen])) {
suffixLen--;
}
this.describeTextChangedHelper(evt, prefixLen, suffixLen, '', personality);
};
/**
* The function called by describeTextChanged after it's figured out
* what text was deleted, what text was inserted, and what additional
* autocomplete text was added.
* @param {cvox.TextChangeEvent} evt The text change event.
* @param {number} prefixLen The number of characters in the common prefix
* of this.value and newValue.
* @param {number} suffixLen The number of characters in the common suffix
* of this.value and newValue.
* @param {string} autocompleteSuffix The autocomplete string that was added
* to the end, if any. It should be spoken at the end of the utterance
* describing the change.
* @param {Object=} opt_personality Personality to speak the text.
*/
cvox.ChromeVoxEditableTextBase.prototype.describeTextChangedHelper = function(
evt, prefixLen, suffixLen, autocompleteSuffix, opt_personality) {
var len = this.value.length;
var newLen = evt.value.length;
var deletedLen = len - prefixLen - suffixLen;
var deleted = this.value.substr(prefixLen, deletedLen);
var insertedLen = newLen - prefixLen - suffixLen;
var inserted = evt.value.substr(prefixLen, insertedLen);
var utterance = '';
var triggeredByUser = evt.triggeredByUser;
if (insertedLen > 1) {
utterance = inserted;
} else if (insertedLen == 1) {
if ((cvox.ChromeVox.typingEcho == cvox.TypingEcho.WORD ||
cvox.ChromeVox.typingEcho == cvox.TypingEcho.CHARACTER_AND_WORD) &&
this.isWordBreakChar(inserted) &&
prefixLen > 0 &&
!this.isWordBreakChar(evt.value.substr(prefixLen - 1, 1))) {
// Speak previous word.
var index = prefixLen;
while (index > 0 && !this.isWordBreakChar(evt.value[index - 1])) {
index--;
}
if (index < prefixLen) {
utterance = evt.value.substr(index, prefixLen + 1 - index);
} else {
utterance = inserted;
triggeredByUser = false; // Implies QUEUE_MODE_QUEUE.
}
} else if (cvox.ChromeVox.typingEcho == cvox.TypingEcho.CHARACTER ||
cvox.ChromeVox.typingEcho == cvox.TypingEcho.CHARACTER_AND_WORD) {
// This particular case is handled in event watcher. See the key press
// handler for more details.
utterance = cvox.ChromeVoxEditableTextBase.eventTypingEcho ? '' :
inserted;
}
} else if (deletedLen > 1 && !autocompleteSuffix) {
utterance = deleted + ', deleted';
} else if (deletedLen == 1) {
utterance = deleted;
}
if (autocompleteSuffix && utterance) {
utterance += ', ' + autocompleteSuffix;
} else if (autocompleteSuffix) {
utterance = autocompleteSuffix;
}
if (utterance) {
this.speak(utterance, triggeredByUser, opt_personality);
}
};
/**
* Moves the cursor forward by one character.
* @return {boolean} True if the action was handled.
*/
cvox.ChromeVoxEditableTextBase.prototype.moveCursorToNextCharacter =
function() { return false; };
/**
* Moves the cursor backward by one character.
* @return {boolean} True if the action was handled.
*/
cvox.ChromeVoxEditableTextBase.prototype.moveCursorToPreviousCharacter =
function() { return false; };
/**
* Moves the cursor forward by one word.
* @return {boolean} True if the action was handled.
*/
cvox.ChromeVoxEditableTextBase.prototype.moveCursorToNextWord =
function() { return false; };
/**
* Moves the cursor backward by one word.
* @return {boolean} True if the action was handled.
*/
cvox.ChromeVoxEditableTextBase.prototype.moveCursorToPreviousWord =
function() { return false; };
/**
* Moves the cursor forward by one line.
* @return {boolean} True if the action was handled.
*/
cvox.ChromeVoxEditableTextBase.prototype.moveCursorToNextLine =
function() { return false; };
/**
* Moves the cursor backward by one line.
* @return {boolean} True if the action was handled.
*/
cvox.ChromeVoxEditableTextBase.prototype.moveCursorToPreviousLine =
function() { return false; };
/**
* Moves the cursor forward by one paragraph.
* @return {boolean} True if the action was handled.
*/
cvox.ChromeVoxEditableTextBase.prototype.moveCursorToNextParagraph =
function() { return false; };
/**
* Moves the cursor backward by one paragraph.
* @return {boolean} True if the action was handled.
*/
cvox.ChromeVoxEditableTextBase.prototype.moveCursorToPreviousParagraph =
function() { return false; };
/******************************************/
/**
* A subclass of ChromeVoxEditableTextBase a text element that's part of
* the webpage DOM. Contains common code shared by both EditableHTMLInput
* and EditableTextArea, but that might not apply to a non-DOM text box.
* @param {Element} node A DOM node which allows text input.
* @param {string} value The string value of the editable text control.
* @param {number} start The 0-based start cursor/selection index.
* @param {number} end The 0-based end cursor/selection index.
* @param {boolean} isPassword Whether the text control if a password field.
* @param {cvox.TtsInterface} tts A TTS object.
* @extends {cvox.ChromeVoxEditableTextBase}
* @constructor
*/
cvox.ChromeVoxEditableElement = function(node, value, start, end, isPassword,
tts) {
goog.base(this, value, start, end, isPassword, tts);
/**
* The DOM node which allows text input.
* @type {Element}
* @protected
*/
this.node = node;
/**
* True if the description was just spoken.
* @type {boolean}
* @private
*/
this.justSpokeDescription_ = false;
};
goog.inherits(cvox.ChromeVoxEditableElement,
cvox.ChromeVoxEditableTextBase);
/**
* Update the state of the text and selection and describe any changes as
* appropriate.
*
* @param {cvox.TextChangeEvent} evt The text change event.
*/
cvox.ChromeVoxEditableElement.prototype.changed = function(evt) {
// Ignore changes to the cursor and selection if they happen immediately
// after the description was just spoken. This avoid double-speaking when,
// for example, a text field is focused and then a moment later the
// contents are selected. If the value changes, though, this change will
// not be ignored.
if (this.justSpokeDescription_ && this.value == evt.value) {
this.value = evt.value;
this.start = evt.start;
this.end = evt.end;
this.justSpokeDescription_ = false;
}
goog.base(this, 'changed', evt);
};
/** @override */
cvox.ChromeVoxEditableElement.prototype.moveCursorToNextCharacter = function() {
var node = this.node;
node.selectionEnd++;
node.selectionStart = node.selectionEnd;
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/** @override */
cvox.ChromeVoxEditableElement.prototype.moveCursorToPreviousCharacter =
function() {
var node = this.node;
node.selectionStart--;
node.selectionEnd = node.selectionStart;
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/** @override */
cvox.ChromeVoxEditableElement.prototype.moveCursorToNextWord = function() {
var node = this.node;
var length = node.value.length;
var re = /\W+/gm;
var substring = node.value.substring(node.selectionEnd);
var match = re.exec(substring);
if (match !== null && match.index == 0) {
// Ignore word-breaking sequences right next to the cursor.
match = re.exec(substring);
}
var index = (match === null) ? length : match.index + node.selectionEnd;
node.selectionStart = node.selectionEnd = index;
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/** @override */
cvox.ChromeVoxEditableElement.prototype.moveCursorToPreviousWord = function() {
var node = this.node;
var length = node.value.length;
var re = /\W+/gm;
var substring = node.value.substring(0, node.selectionStart);
var index = 0;
while (re.exec(substring) !== null) {
if (re.lastIndex < node.selectionStart) {
index = re.lastIndex;
}
}
node.selectionStart = node.selectionEnd = index;
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/** @override */
cvox.ChromeVoxEditableElement.prototype.moveCursorToNextParagraph =
function() {
var node = this.node;
var length = node.value.length;
var index = node.selectionEnd >= length ? length :
node.value.indexOf('\n', node.selectionEnd);
if (index < 0) {
index = length;
}
node.selectionStart = node.selectionEnd = index + 1;
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/** @override */
cvox.ChromeVoxEditableElement.prototype.moveCursorToPreviousParagraph =
function() {
var node = this.node;
var index = node.selectionStart <= 0 ? 0 :
node.value.lastIndexOf('\n', node.selectionStart - 2) + 1;
if (index < 0) {
index = 0;
}
node.selectionStart = node.selectionEnd = index;
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/******************************************/
/**
* A subclass of ChromeVoxEditableElement for an HTMLInputElement.
* @param {HTMLInputElement} node The HTMLInputElement node.
* @param {cvox.TtsInterface} tts A TTS object.
* @extends {cvox.ChromeVoxEditableElement}
* @implements {cvox.TextHandlerInterface}
* @constructor
*/
cvox.ChromeVoxEditableHTMLInput = function(node, tts) {
this.node = node;
this.setup();
goog.base(this,
node,
node.value,
node.selectionStart,
node.selectionEnd,
node.type === 'password',
tts);
};
goog.inherits(cvox.ChromeVoxEditableHTMLInput,
cvox.ChromeVoxEditableElement);
/**
* Performs setup for this input node.
* This accounts for exception-throwing behavior introduced by crbug.com/324360.
* @override
*/
cvox.ChromeVoxEditableHTMLInput.prototype.setup = function() {
if (!this.node) {
return;
}
if (!cvox.DomUtil.doesInputSupportSelection(this.node)) {
this.originalType = this.node.type;
this.node.type = 'text';
}
};
/**
* Performs teardown for this input node.
* This accounts for exception-throwing behavior introduced by crbug.com/324360.
* @override
*/
cvox.ChromeVoxEditableHTMLInput.prototype.teardown = function() {
if (this.node && this.originalType) {
this.node.type = this.originalType;
}
};
/**
* Update the state of the text and selection and describe any changes as
* appropriate.
*
* @param {boolean} triggeredByUser True if this was triggered by a user action.
*/
cvox.ChromeVoxEditableHTMLInput.prototype.update = function(triggeredByUser) {
var newValue = this.node.value;
var textChangeEvent = new cvox.TextChangeEvent(newValue,
this.node.selectionStart,
this.node.selectionEnd,
triggeredByUser);
this.changed(textChangeEvent);
};
/******************************************/
/**
* A subclass of ChromeVoxEditableElement for an HTMLTextAreaElement.
* @param {HTMLTextAreaElement} node The HTMLTextAreaElement node.
* @param {cvox.TtsInterface} tts A TTS object.
* @extends {cvox.ChromeVoxEditableElement}
* @implements {cvox.TextHandlerInterface}
* @constructor
*/
cvox.ChromeVoxEditableTextArea = function(node, tts) {
goog.base(this, node, node.value, node.selectionStart, node.selectionEnd,
false /* isPassword */, tts);
this.multiline = true;
/**
* True if the shadow is up-to-date with the current value of this text area.
* @type {boolean}
* @private
*/
this.shadowIsCurrent_ = false;
};
goog.inherits(cvox.ChromeVoxEditableTextArea,
cvox.ChromeVoxEditableElement);
/**
* An offscreen div used to compute the line numbers. A single div is
* shared by all instances of the class.
* @type {!cvox.EditableTextAreaShadow|undefined}
* @private
*/
cvox.ChromeVoxEditableTextArea.shadow_;
/**
* Update the state of the text and selection and describe any changes as
* appropriate.
*
* @param {boolean} triggeredByUser True if this was triggered by a user action.
*/
cvox.ChromeVoxEditableTextArea.prototype.update = function(triggeredByUser) {
if (this.node.value != this.value) {
this.shadowIsCurrent_ = false;
}
var textChangeEvent = new cvox.TextChangeEvent(this.node.value,
this.node.selectionStart, this.node.selectionEnd, triggeredByUser);
this.changed(textChangeEvent);
};
/**
* Get the line number corresponding to a particular index.
* @param {number} index The 0-based character index.
* @return {number} The 0-based line number corresponding to that character.
*/
cvox.ChromeVoxEditableTextArea.prototype.getLineIndex = function(index) {
return this.getShadow().getLineIndex(index);
};
/**
* Get the start character index of a line.
* @param {number} index The 0-based line index.
* @return {number} The 0-based index of the first character in this line.
*/
cvox.ChromeVoxEditableTextArea.prototype.getLineStart = function(index) {
return this.getShadow().getLineStart(index);
};
/**
* Get the end character index of a line.
* @param {number} index The 0-based line index.
* @return {number} The 0-based index of the end of this line.
*/
cvox.ChromeVoxEditableTextArea.prototype.getLineEnd = function(index) {
return this.getShadow().getLineEnd(index);
};
/**
* Update the shadow object, an offscreen div used to compute line numbers.
* @return {!cvox.EditableTextAreaShadow} The shadow object.
*/
cvox.ChromeVoxEditableTextArea.prototype.getShadow = function() {
var shadow = cvox.ChromeVoxEditableTextArea.shadow_;
if (!shadow) {
shadow = cvox.ChromeVoxEditableTextArea.shadow_ =
new cvox.EditableTextAreaShadow();
}
if (!this.shadowIsCurrent_) {
shadow.update(this.node);
this.shadowIsCurrent_ = true;
}
return shadow;
};
/** @override */
cvox.ChromeVoxEditableTextArea.prototype.moveCursorToNextLine = function() {
var node = this.node;
var length = node.value.length;
if (node.selectionEnd >= length) {
return false;
}
var shadow = this.getShadow();
var lineIndex = shadow.getLineIndex(node.selectionEnd);
var lineStart = shadow.getLineStart(lineIndex);
var offset = node.selectionEnd - lineStart;
var lastLine = (length == 0) ? 0 : shadow.getLineIndex(length - 1);
var newCursorPosition = (lineIndex >= lastLine) ? length :
Math.min(shadow.getLineStart(lineIndex + 1) + offset,
shadow.getLineEnd(lineIndex + 1));
node.selectionStart = node.selectionEnd = newCursorPosition;
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/** @override */
cvox.ChromeVoxEditableTextArea.prototype.moveCursorToPreviousLine = function() {
var node = this.node;
if (node.selectionStart <= 0) {
return false;
}
var shadow = this.getShadow();
var lineIndex = shadow.getLineIndex(node.selectionStart);
var lineStart = shadow.getLineStart(lineIndex);
var offset = node.selectionStart - lineStart;
var newCursorPosition = (lineIndex <= 0) ? 0 :
Math.min(shadow.getLineStart(lineIndex - 1) + offset,
shadow.getLineEnd(lineIndex - 1));
node.selectionStart = node.selectionEnd = newCursorPosition;
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/******************************************/
/**
* A subclass of ChromeVoxEditableElement for elements that are contentEditable.
* This is also used for a region of HTML with the ARIA role of "textbox",
* so that an author can create a pure-JavaScript editable text object - this
* will work the same as contentEditable as long as the DOM selection is
* updated properly within the textbox when it has focus.
* @param {Element} node The root contentEditable node.
* @param {cvox.TtsInterface} tts A TTS object.
* @extends {cvox.ChromeVoxEditableElement}
* @implements {cvox.TextHandlerInterface}
* @constructor
*/
cvox.ChromeVoxEditableContentEditable = function(node, tts) {
goog.base(this, node, '', 0, 0, false /* isPassword */, tts);
/**
* True if the ContentEditableExtractor is current with this field's data.
* @type {boolean}
* @private
*/
this.extractorIsCurrent_ = false;
var extractor = this.getExtractor();
this.value = extractor.getText();
this.start = extractor.getStartIndex();
this.end = extractor.getEndIndex();
this.multiline = true;
};
goog.inherits(cvox.ChromeVoxEditableContentEditable,
cvox.ChromeVoxEditableElement);
/**
* A helper used to compute the line numbers. A single object is
* shared by all instances of the class.
* @type {!cvox.ContentEditableExtractor|undefined}
* @private
*/
cvox.ChromeVoxEditableContentEditable.extractor_;
/**
* Update the state of the text and selection and describe any changes as
* appropriate.
*
* @param {boolean} triggeredByUser True if this was triggered by a user action.
*/
cvox.ChromeVoxEditableContentEditable.prototype.update =
function(triggeredByUser) {
this.extractorIsCurrent_ = false;
var textChangeEvent = new cvox.TextChangeEvent(
this.getExtractor().getText(),
this.getExtractor().getStartIndex(),
this.getExtractor().getEndIndex(),
triggeredByUser);
this.changed(textChangeEvent);
};
/**
* Get the line number corresponding to a particular index.
* @param {number} index The 0-based character index.
* @return {number} The 0-based line number corresponding to that character.
*/
cvox.ChromeVoxEditableContentEditable.prototype.getLineIndex = function(index) {
return this.getExtractor().getLineIndex(index);
};
/**
* Get the start character index of a line.
* @param {number} index The 0-based line index.
* @return {number} The 0-based index of the first character in this line.
*/
cvox.ChromeVoxEditableContentEditable.prototype.getLineStart = function(index) {
return this.getExtractor().getLineStart(index);
};
/**
* Get the end character index of a line.
* @param {number} index The 0-based line index.
* @return {number} The 0-based index of the end of this line.
*/
cvox.ChromeVoxEditableContentEditable.prototype.getLineEnd = function(index) {
return this.getExtractor().getLineEnd(index);
};
/**
* Update the extractor object, an offscreen div used to compute line numbers.
* @return {!cvox.ContentEditableExtractor} The extractor object.
*/
cvox.ChromeVoxEditableContentEditable.prototype.getExtractor = function() {
var extractor = cvox.ChromeVoxEditableContentEditable.extractor_;
if (!extractor) {
extractor = cvox.ChromeVoxEditableContentEditable.extractor_ =
new cvox.ContentEditableExtractor();
}
if (!this.extractorIsCurrent_) {
extractor.update(this.node);
this.extractorIsCurrent_ = true;
}
return extractor;
};
/**
* @override
*/
cvox.ChromeVoxEditableContentEditable.prototype.changed =
function(evt) {
if (!evt.triggeredByUser) {
return;
}
// Take over here if we can't describe a change; assume it's a blank line.
if (!this.shouldDescribeChange(evt)) {
this.speak(cvox.ChromeVox.msgs.getMsg('text_box_blank'), true);
if (this.brailleHandler_) {
this.brailleHandler_.changed('' /*line*/, 0 /*start*/, 0 /*end*/,
true /*multiline*/, null /*element*/,
evt.start /*lineStart*/);
}
} else {
goog.base(this, 'changed', evt);
}
};
/** @override */
cvox.ChromeVoxEditableContentEditable.prototype.moveCursorToNextCharacter =
function() {
window.getSelection().modify('move', 'forward', 'character');
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/** @override */
cvox.ChromeVoxEditableContentEditable.prototype.moveCursorToPreviousCharacter =
function() {
window.getSelection().modify('move', 'backward', 'character');
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/** @override */
cvox.ChromeVoxEditableContentEditable.prototype.moveCursorToNextParagraph =
function() {
window.getSelection().modify('move', 'forward', 'paragraph');
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/** @override */
cvox.ChromeVoxEditableContentEditable.prototype.moveCursorToPreviousParagraph =
function() {
window.getSelection().modify('move', 'backward', 'paragraph');
cvox.ChromeVoxEventWatcher.handleTextChanged(true);
return true;
};
/**
* @override
*/
cvox.ChromeVoxEditableContentEditable.prototype.shouldDescribeChange =
function(evt) {
var sel = window.getSelection();
var cursor = new cvox.Cursor(sel.baseNode, sel.baseOffset, '');
// This is a very specific work around because of our buggy content editable
// support. Blank new lines are not captured in the line indexing data
// structures.
// Scenario: given a piece of text like:
//
// Some Title
//
// Description
// Footer
//
// The new lines after Title are not traversed to by TraverseUtil. A root fix
// would make changes there. However, considering the fickle nature of that
// code, we specifically detect for new lines here.
if (Math.abs(this.start - evt.start) != 1 &&
this.start == this.end &&
evt.start == evt.end &&
sel.baseNode == sel.extentNode &&
sel.baseOffset == sel.extentOffset &&
sel.baseNode.nodeType == Node.ELEMENT_NODE &&
sel.baseNode.querySelector('BR') &&
cvox.TraverseUtil.forwardsChar(cursor, [], [])) {
// This case detects if the range selection surrounds a new line,
// but there is still content after the new line (like the example
// above after "Title"). In these cases, we "pretend" we're the
// last character so we speak "blank".
return false;
}
// Otherwise, we should never speak "blank" no matter what (even if
// we're at the end of a content editable).
return true;
};
|