diff options
author | 2014-08-04 04:03:25 +0000 | |
---|---|---|
committer | 2014-08-01 16:06:20 +0000 | |
commit | 85b7b967b70393815da78aa4bae1938dbf9bbe1a (patch) | |
tree | 35fca5cb0630da181f578ed317ac04e6a204d62c /java/src/com/android/inputmethod/event/CombinerChain.java | |
parent | 03a1c442aeddbd511be92e11465b6206d2ca976c (diff) | |
parent | e0bad8e988a23553181fb670f8a2589a79f22c40 (diff) | |
download | latinime-85b7b967b70393815da78aa4bae1938dbf9bbe1a.tar.gz latinime-85b7b967b70393815da78aa4bae1938dbf9bbe1a.tar.xz latinime-85b7b967b70393815da78aa4bae1938dbf9bbe1a.zip |
Merge "[HW12] Use the consumed status of the Event." into lmp-dev
Diffstat (limited to 'java/src/com/android/inputmethod/event/CombinerChain.java')
-rw-r--r-- | java/src/com/android/inputmethod/event/CombinerChain.java | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/event/CombinerChain.java b/java/src/com/android/inputmethod/event/CombinerChain.java index f69bf4fd0..2d2731f21 100644 --- a/java/src/com/android/inputmethod/event/CombinerChain.java +++ b/java/src/com/android/inputmethod/event/CombinerChain.java @@ -82,6 +82,13 @@ public class CombinerChain { } } + private void updateStateFeedback() { + mStateFeedback.clear(); + for (int i = mCombiners.size() - 1; i >= 0; --i) { + mStateFeedback.append(mCombiners.get(i).getCombiningStateFeedback()); + } + } + /** * Process an event through the combining chain, and return a processed event to apply. * @param previousEvents the list of previous events in this composition @@ -97,7 +104,13 @@ public class CombinerChain { // A combiner can never return more than one event; it can return several // code points, but they should be encapsulated within one event. event = combiner.processEvent(modifiablePreviousEvents, event); + if (event.isConsumed()) { + // If the event is consumed, then we don't pass it to subsequent combiners: + // they should not see it at all. + break; + } } + updateStateFeedback(); return event; } @@ -121,10 +134,7 @@ public class CombinerChain { } } } - mStateFeedback.clear(); - for (int i = mCombiners.size() - 1; i >= 0; --i) { - mStateFeedback.append(mCombiners.get(i).getCombiningStateFeedback()); - } + updateStateFeedback(); } /** |