Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
6474ef99
Commit
6474ef99
authored
10 years ago
by
Jean Chalard
Committed by
Android (Google) Code Review
10 years ago
Browse files
Options
Downloads
Plain Diff
Merge "[HW16] Implement processing event chains." into lmp-dev
parents
8cbb4eb9
0a2872cb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
+11
-7
11 additions, 7 deletions
.../com/android/inputmethod/latin/inputlogic/InputLogic.java
with
11 additions
and
7 deletions
java/src/com/android/inputmethod/latin/inputlogic/InputLogic.java
+
11
−
7
View file @
6474ef99
...
...
@@ -426,13 +426,17 @@ public final class InputLogic {
cancelDoubleSpacePeriodCountdown
();
}
if
(
processedEvent
.
isConsumed
())
{
handleConsumedEvent
(
processedEvent
,
inputTransaction
);
}
else
if
(
processedEvent
.
isFunctionalKeyEvent
())
{
handleFunctionalEvent
(
processedEvent
,
inputTransaction
,
currentKeyboardScriptId
,
handler
);
}
else
{
handleNonFunctionalEvent
(
processedEvent
,
inputTransaction
,
handler
);
Event
currentEvent
=
processedEvent
;
while
(
null
!=
currentEvent
)
{
if
(
currentEvent
.
isConsumed
())
{
handleConsumedEvent
(
currentEvent
,
inputTransaction
);
}
else
if
(
currentEvent
.
isFunctionalKeyEvent
())
{
handleFunctionalEvent
(
currentEvent
,
inputTransaction
,
currentKeyboardScriptId
,
handler
);
}
else
{
handleNonFunctionalEvent
(
currentEvent
,
inputTransaction
,
handler
);
}
currentEvent
=
currentEvent
.
mNextEvent
;
}
if
(!
inputTransaction
.
didAutoCorrect
()
&&
processedEvent
.
mKeyCode
!=
Constants
.
CODE_SHIFT
&&
processedEvent
.
mKeyCode
!=
Constants
.
CODE_CAPSLOCK
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment