/* * Copyright (C) 2010 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.android.inputmethod.keyboard; import com.android.inputmethod.latin.Constants; import com.android.inputmethod.latin.InputPointers; public interface KeyboardActionListener { /** * Called when the user presses a key. This is sent before the {@link #onCodeInput} is called. * For keys that repeat, this is only called once. * * @param primaryCode the unicode of the key being pressed. If the touch is not on a valid key, * the value will be zero. * @param isSinglePointer true if pressing has occurred while no other key is being pressed. */ public void onPressKey(int primaryCode, boolean isSinglePointer); /** * Called when the user releases a key. This is sent after the {@link #onCodeInput} is called. * For keys that repeat, this is only called once. * * @param primaryCode the code of the key that was released * @param withSliding true if releasing has occurred because the user slid finger from the key * to other key without releasing the finger. */ public void onReleaseKey(int primaryCode, boolean withSliding); /** * Send a key code to the listener. * * @param primaryCode this is the code of the key that was pressed * @param x x-coordinate pixel of touched event. If {@link #onCodeInput} is not called by * {@link PointerTracker} or so, the value should be * {@link Constants#NOT_A_COORDINATE}. If it's called on insertion from the * suggestion strip, it should be {@link Constants#SUGGESTION_STRIP_COORDINATE}. * @param y y-coordinate pixel of touched event. If {@link #onCodeInput} is not called by * {@link PointerTracker} or so, the value should be * {@link Constants#NOT_A_COORDINATE}.If it's called on insertion from the * suggestion strip, it should be {@link Constants#SUGGESTION_STRIP_COORDINATE}. */ public void onCodeInput(int primaryCode, int x, int y); /** * Sends a string of characters to the listener. * * @param text the string of characters to be registered. */ public void onTextInput(String text); /** * Called when user started batch input. */ public void onStartBatchInput(); /** * Sends the ongoing batch input points data. * @param batchPointers the batch input points representing the user input */ public void onUpdateBatchInput(InputPointers batchPointers); /** * Sends the final batch input points data. * * @param batchPointers the batch input points representing the user input */ public void onEndBatchInput(InputPointers batchPointers); public void onCancelBatchInput(); /** * Called when user released a finger outside any key. */ public void onCancelInput(); /** * Called when user finished sliding key input. */ public void onFinishSlidingInput(); /** * Send a non-"code input" custom request to the listener. * @return true if the request has been consumed, false otherwise. */ public boolean onCustomRequest(int requestCode); public static class Adapter implements KeyboardActionListener { public static final Adapter EMPTY_LISTENER = new Adapter(); @Override public void onPressKey(int primaryCode, boolean isSinglePointer) {} @Override public void onReleaseKey(int primaryCode, boolean withSliding) {} @Override public void onCodeInput(int primaryCode, int x, int y) {} @Override public void onTextInput(String text) {} @Override public void onStartBatchInput() {} @Override public void onUpdateBatchInput(InputPointers batchPointers) {} @Override public void onEndBatchInput(InputPointers batchPointers) {} @Override public void onCancelBatchInput() {} @Override public void onCancelInput() {} @Override public void onFinishSlidingInput() {} @Override public boolean onCustomRequest(int requestCode) { return false; } } }