2011-04-27 06:14:45 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 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 android.widget.PopupWindow;
|
|
|
|
|
2011-07-11 03:31:02 +01:00
|
|
|
public interface PopupPanel extends PointerTracker.KeyEventHandler {
|
2011-04-27 06:14:45 +01:00
|
|
|
/**
|
|
|
|
* Show popup panel.
|
|
|
|
* @param parentKeyboardView the parent KeyboardView that has the parent key.
|
|
|
|
* @param parentKey the parent key that is the source of this popup panel
|
|
|
|
* @param tracker the pointer tracker that pressesd the parent key
|
|
|
|
* @param window PopupWindow to be used to show this popup panel
|
|
|
|
*/
|
2011-08-23 09:57:02 +01:00
|
|
|
public void showPopupPanel(LatinKeyboardView parentKeyboardView, Key parentKey,
|
2011-06-23 13:14:55 +01:00
|
|
|
PointerTracker tracker, PopupWindow window);
|
2011-04-27 06:14:45 +01:00
|
|
|
|
|
|
|
/**
|
2011-07-11 02:09:15 +01:00
|
|
|
* Translate X-coordinate of touch event to the local X-coordinate of this PopupPanel.
|
|
|
|
* @param x the global X-coordinate
|
|
|
|
* @return the local X-coordinate to this PopupPanel
|
2011-04-27 06:14:45 +01:00
|
|
|
*/
|
2011-07-11 02:09:15 +01:00
|
|
|
public int translateX(int x);
|
2011-04-27 06:14:45 +01:00
|
|
|
|
|
|
|
/**
|
2011-07-11 02:09:15 +01:00
|
|
|
* Translate Y-coordinate of touch event to the local Y-coordinate of this PopupPanel.
|
|
|
|
* @param y the global Y-coordinate
|
|
|
|
* @return the local Y-coordinate to this PopupPanel
|
2011-04-27 06:14:45 +01:00
|
|
|
*/
|
2011-07-11 02:09:15 +01:00
|
|
|
public int translateY(int y);
|
2011-04-27 06:14:45 +01:00
|
|
|
}
|