aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Stop throwing an exception in some corner cases.Jean Chalard2012-02-021-9/+10
| | | | | | | | | When the application is modifying the text under our feet, we may come through this code path. We should log the error rather than crash. Bug: 5869235 Change-Id: Ic0fd24c3bc805d44c5db0ad781ddebeca0450614
* Use MoreKeySpecParser to parse puctuations strip resourcesTadashi G. Takaoka2012-02-011-7/+3
| | | | | | | | | | | This change also * Doesn't use Key.getRtlParenthesisCode to get correct parentheses code in RTL context. Intead uses the outputText feature of moreKeys specification. * Move CVS string parser from KeyStyles to Utils. Bug: 5948247 Change-Id: I45752c7d01b4f7d3f3da900b110a2185b336a1f0
* Move long press shift handling from PointerTracker to KeyboardStateTadashi G. Takaoka2012-02-011-11/+2
| | | | | | | | | | | | | This change also * Rename phone shift keyboard to phone symbols keyboard. Use CODE_SWITCH_ALPHA_SYMBOL code to switch between phone and phone symbols keyboard. * Remove phone symbols keyboard from tablet. * Introduces enableLongPress flag of Key.keyActionFlags attribute. * Remove clumsy long press code from PointerTracker. * Remove CODE_CAPSLOCK handling from LatinIME. * Make KeyboardSwitcher to invoke haptic and audio feedback. Change-Id: I00e1f697a10ab5112aec75e36853b96246ff5054
* Cleanup redundant methods of KeyboardSwitcherTadashi G. Takaoka2012-01-311-5/+11
| | | | Change-Id: I2ebeb8852177f6c6e30578d0bb3f372f488dc6c1
* Auto generate various shift states alphabet keyboard automaticallyTadashi G. Takaoka2012-01-311-27/+5
| | | | | | | | | | | | | | | | | | If any shift state variants of alphabet keyboard layout is not specified in KeyboardSet.Element, it will be automatically generated from base alphabet keyboard definition. This change also * Eliminates KeyboardShiftState object from Keyboard. * Removes various set shift state methods from Keyboard. * Removes KeyboardSet.Element.elementAutoGenerate attribute. * Separates "sticky" Key.backgroundType to "stickyOff" and "stickyOn" * Add preserveCase flag to smiley, .com, and labeled special keys. * Rename KeyboardShiftState class to AlphabetShiftState. * Rename some attributes from *UppercaseLetter* to *ShiftedLetterHint*. * Introduce shiftedLetterActivated to Key.keyLabelFlags Change-Id: I01a0a8efeeaa76820ae728a5bdfa8d02b6ce74b7
* Guard against wrong auto-correction cancellation (A6)Jean Chalard2012-01-261-2/+9
| | | | | | | | This deactivates the cancellation at each separator pressed while not composing a word. The net effect is to fix Bug: 5875776 Change-Id: I67aa3f842ddff250828c60596ad5a7e466c1ddaa
* Straighten out resuming suggestion on kept word (A5)Jean Chalard2012-01-261-10/+11
| | | | | | | | | This is cleanup. This also introduces a "deactivated" state to the last committed word, that can be used for Bug: 5875776 Change-Id: I1855adb8ac8123f6d2c5365b0ae899145e5c3ba1
* Remove mCommittedWordSavedForSuggestionResuming (A4)Jean Chalard2012-01-261-2/+2
| | | | Change-Id: Ia62ef33b5c777a258b02280bda1b8368780a7eef
* Move some functionality into LastComposedWord (A3)Jean Chalard2012-01-261-9/+24
| | | | Change-Id: Ie0ea02a061dd0cb84db5f33113ff433584636bc7
* Add a class for previously composed data (A1)Jean Chalard2012-01-261-4/+4
| | | | Change-Id: I87498799e6a48b8fa65924a098bb0ceb7626dce1
* Merge "Warn deprecated privateImeOptions, "nm" and "forceAscii""Tadashi G. Takaoka2012-01-251-1/+11
|\
| * Warn deprecated privateImeOptions, "nm" and "forceAscii"Tadashi G. Takaoka2012-01-261-1/+11
| | | | | | | | | | | | | | Public API EditorInfo.IME_FLAG_FORCE_ASCII has been supported by I6665b483. Change-Id: I0ffdee15d8177d126cd8fe86a6bc4ab21be58c36
* | Merge "Add a guard against OOB."Jean Chalard2012-01-251-3/+7
|\ \
| * | Add a guard against OOB.Jean Chalard2012-01-261-3/+7
| |/ | | | | | | | | | | | | | | ...and avoid crashing in one case where the application may change the text while we are typing. Bug: 5685922 Change-Id: I4a22c63168986f43ac84f512aaa4267023d536e3
* / Small cleanupJean Chalard2012-01-261-1/+1
|/ | | | | | | | All calls to this method are done with the same parameter, and it's really hard to understand if we call upon this member inside. Change-Id: I787664bb59053ab0fe666ed812fb12b2b9090918
* Add a test for auto-correction.Jean Chalard2012-01-251-3/+2
| | | | | | | | | Fix two related subtle bugs: - Stop singling out fat-finger-only corrections for rejection when touch coordinates are not available. - Remove a racy check that would happen only in debug mode Change-Id: Ic904f9b27c091ca6b369052c4e65a630bff81257
* Fix a bug where backspace would not delete the selectionJean Chalard2012-01-241-5/+27
| | | | | Bug: 5699301 Change-Id: I6c5a8470464d045349ac38e191c859b5c34cbeee
* Fix a typoJean Chalard2012-01-241-4/+4
| | | | Change-Id: I358350c959d5610214a752b14d7744fe83eb3821
* Merge "Fix a bug where a check would fail"Jean Chalard2012-01-201-3/+3
|\
| * Fix a bug where a check would failJean Chalard2012-01-201-3/+3
| | | | | | | | | | Bug: 5894393 Change-Id: I810de58730f2cabcaf7b8dc1d85b3725f959094b
* | Fix a bug where the user typed word would not be passed.Jean Chalard2012-01-201-4/+4
|/ | | | | Bug: 5894271 Change-Id: I4f02ff322697159e08f5e898608c0aff11dacb2f
* Merge "Fix a bug with backspace happening after a manual pick."Jean Chalard2012-01-191-6/+11
|\
| * Fix a bug with backspace happening after a manual pick.Jean Chalard2012-01-191-6/+11
| | | | | | | | | | Bug: 5884397 Change-Id: I01f462075bcbf7da38e9af2084ecd37143923e8b
* | Small code simplification.Jean Chalard2012-01-191-5/+1
|/ | | | | | I'm pretty sure the test here was useless. Change-Id: Iaece641fbd5455406533b19555f2b639759a525f
* Remove KeyboardSwicther.toggleCapslockTadashi G. Takaoka2012-01-171-1/+1
| | | | Change-Id: Id613c06e2df770659095d78d42637aed063d0c70
* Rename KeyboardActionListener methodsTadashi G. Takaoka2012-01-171-17/+5
| | | | | | | | | | | * Rename KeyboardActionListener.onPress to onPressKey * Rename KeyboardActionListener.onRelease to onReleaseKey * Merge KeyboardSwicther.onPressShift, onPressSymbol, and onPressOtherKey to onPressKey. * Merge KeyboardSwitcher.onReleaseShift and onReleaseSymbol to onReleaseKey. * Merge KeyboardState.onPressShift, onPressSymbol, and onPressOtherKey to onPressKey. * Merge KeyboardState.onReleaseShift and onReleaseSymbol to onReleaseKey. Change-Id: Icf28fd18e238c5e534c292893e4ab5b6b98e72f8
* Merge "Remove toggleShift and toggleAlphabetAndSymbols from KeyboardSwitcher"Tadashi G. Takaoka2012-01-171-16/+5
|\
| * Remove toggleShift and toggleAlphabetAndSymbols from KeyboardSwitcherTadashi G. Takaoka2012-01-171-16/+5
| | | | | | | | Change-Id: I9bb8f78b0a766cd7937d5cbe1c1e5e35898b2997
* | Merge "Fix a bug where words disappear on inserting separators"Jean Chalard2012-01-161-1/+7
|\ \
| * | Fix a bug where words disappear on inserting separatorsJean Chalard2012-01-171-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The basic idea is that in some situations, we would restart suggestions, but before evaluating them we would bail out because suggestions were not requested. This would lead to the "correction" set to null, so we would commit a null word. This fix does two things: - Do not restart suggestions when not requested. - If we still end up with a composing word when suggestions are not requested, we select the typed word as the correct version. Bug: 5846646 Change-Id: Ic35351841d0cb20afa99092ef681ecb7bd68bec6
* | | Merge "Fix a bug where suggestion would restart at a bad time"Jean Chalard2012-01-161-3/+16
|\ \ \ | |_|/ |/| |
| * | Fix a bug where suggestion would restart at a bad timeJean Chalard2012-01-171-3/+16
| |/ | | | | | | | | Bug: 5846646 Change-Id: I7c907d0a9478e0878b92ead94173caefc21b627b
* / Support EditorInfo.IME_FLAG_FORCE_ASCIITadashi G. Takaoka2012-01-171-0/+4
|/ | | | | Bug: 5850605 Change-Id: I6665b483f775094903f2e26f5584e4b141592ab5
* Small cleanupJean Chalard2012-01-171-1/+1
| | | | | | | | | | The method deleteWordAtCursor would call finishComposingText, which is a very unexpected state change and would probably cause surprising bugs to any parent that would call it. As it happens, it's not used anywhere any more so let's just remove it. Change-Id: Iaa9200866e40b4e914f76baa987279948300679c
* Add some comments about resuming auto-suggestionJean Chalard2012-01-171-0/+5
| | | | | Bug: 5846646 Change-Id: Ib2c76ec173972eb7acadbfaae7e930849d546721
* Don't cache resource value that depends on orientationTadashi G. Takaoka2012-01-161-1/+4
| | | | | Bug: 5794655 Change-Id: Ib324366c772e20bb54aba63c2f4540dc0f9de515
* Merge "Fix a bug where last candidate would not be reset"Jean Chalard2012-01-111-0/+6
|\
| * Fix a bug where last candidate would not be resetJean Chalard2012-01-121-0/+6
| | | | | | | | | | Bug: 5851148 Change-Id: Ic270318842d8e16bc62d78d5fe0d6be0ca1fb532
* | Remove an excessive parensJean Chalard2012-01-121-1/+1
| | | | | | | | Change-Id: If8aa4253ab0f664e628ed7f4d7a3adc02a898cc7
* | Fix a crash where revertSwap would be wrongly calledJean Chalard2012-01-121-2/+3
|/ | | | | | | | | | | | | | This would crash the program when inputting a punctuation symbol that should not swap with a weak space through the suggestion strip, then press backspace. Those include all two-part punctuation symbols in French for example, as well as magic space strippers like the dash in English. For English all suggestion strips symbols happen to be magic space swappers so this would not happen in English by default. Also fix a typo. Change-Id: Ia40678c264e978509b5786290a75a3c57181648e
* Get rid of Keyboard.CODE_DUMMYTadashi G. Takaoka2012-01-101-1/+1
| | | | Change-Id: Id2320f4d9b5f22f0ac844ab20ce42b0c4e7c6880
* Call KeyboardState.onUpdateShiftState from onCodeInput if code is a normal ↵Tadashi G. Takaoka2012-01-101-2/+0
| | | | | | | | letter This will be helpful to write unit test code. Change-Id: Ib61cc46ac547084e0dc9ecd3a50814fecf08ace2
* Fix a bug with wrong auto-correct cancellationJean Chalard2011-12-211-6/+10
| | | | | | | | Auto-correct cancellation would sometimes kick in at wrong times, causing crashes. Bug: 5784542 Change-Id: I68dd6b8d9237ce9b66af2dc63e77ba6dd5fd69dd
* Reorganize the auto-correction memoryJean Chalard2011-12-191-19/+12
| | | | Change-Id: I31cce9db471dcd4a7b3477bcb037a8ff482b7696
* Remove LatinKeyboard classTadashi G. Takaoka2011-12-181-11/+10
| | | | Change-Id: I68c667b00dadf2ed9f1c62fb7da37d2cf499cd81
* Move spacebar drawing code from LatinKeyboard to LatinKeyboardViewTadashi G. Takaoka2011-12-181-5/+3
| | | | | | | | | Also this change moves LatinKeyboard attributes, autoCorrectionSpacebarLedEnabled, autoCorrectionSpacebarLedIcon, spacebarTextRatio, spacebarTextColor, and spacebarTextShadowColor to LatinKeyboardView. Change-Id: I7cc27ce1fc550e9f620a9ed0fbe4b8172902d5a1
* Get rid of Key.needsSpecialPopupHint and relatedTadashi G. Takaoka2011-12-181-1/+1
| | | | Change-Id: I28e87ea3af9581f12094770b42f113e9018886c4
* Merge "Pretty print for InputAttributes"Jean Chalard2011-12-161-4/+1
|\
| * Pretty print for InputAttributesJean Chalard2011-12-161-4/+1
| | | | | | | | Change-Id: I5e4b2b6f3cd943c8f6187aaed21d67ec786bf5df
* | Remove a write-only variable.Jean Chalard2011-12-161-10/+1
| | | | | | | | Change-Id: I825307a429f46b31ed9bd940b5a97d2713127dfe