2012-08-30 07:18:53 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 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.internal;
|
|
|
|
|
2014-02-04 03:37:17 +00:00
|
|
|
import android.content.res.TypedArray;
|
|
|
|
import android.view.View;
|
|
|
|
|
|
|
|
import com.android.inputmethod.latin.R;
|
|
|
|
|
2012-09-05 06:34:51 +00:00
|
|
|
public final class KeyPreviewDrawParams {
|
2014-02-04 03:37:17 +00:00
|
|
|
// XML attributes of {@link MainKeyboardView}.
|
2014-02-04 06:06:47 +00:00
|
|
|
public final int mLayoutId;
|
|
|
|
public final int mPreviewOffset;
|
|
|
|
public final int mPreviewHeight;
|
2014-02-07 06:25:50 +00:00
|
|
|
private int mShowUpDuration;
|
|
|
|
private int mDismissDuration;
|
|
|
|
private float mShowUpStartScale;
|
|
|
|
private float mDismissEndScale;
|
2014-02-04 06:06:47 +00:00
|
|
|
private int mLingerTimeout;
|
|
|
|
private boolean mShowPopup = true;
|
2014-02-04 03:37:17 +00:00
|
|
|
|
2012-08-30 07:18:53 +00:00
|
|
|
// The graphical geometry of the key preview.
|
|
|
|
// <-width->
|
|
|
|
// +-------+ ^
|
|
|
|
// | | |
|
|
|
|
// |preview| height (visible)
|
|
|
|
// | | |
|
|
|
|
// + + ^ v
|
|
|
|
// \ / |offset
|
|
|
|
// +-\ /-+ v
|
|
|
|
// | +-+ |
|
|
|
|
// |parent |
|
|
|
|
// | key|
|
|
|
|
// +-------+
|
|
|
|
// The background of a {@link TextView} being used for a key preview may have invisible
|
|
|
|
// paddings. To align the more keys keyboard panel's visible part with the visible part of
|
|
|
|
// the background, we need to record the width and height of key preview that don't include
|
|
|
|
// invisible paddings.
|
2014-02-04 03:37:17 +00:00
|
|
|
private int mVisibleWidth;
|
|
|
|
private int mVisibleHeight;
|
2012-08-30 07:18:53 +00:00
|
|
|
// The key preview may have an arbitrary offset and its background that may have a bottom
|
|
|
|
// padding. To align the more keys keyboard and the key preview we also need to record the
|
|
|
|
// offset between the top edge of parent key and the bottom of the visible part of key
|
|
|
|
// preview background.
|
2014-02-04 03:37:17 +00:00
|
|
|
private int mVisibleOffset;
|
|
|
|
|
|
|
|
public KeyPreviewDrawParams(final TypedArray mainKeyboardViewAttr) {
|
2014-02-04 06:06:47 +00:00
|
|
|
mPreviewOffset = mainKeyboardViewAttr.getDimensionPixelOffset(
|
2014-02-04 03:37:17 +00:00
|
|
|
R.styleable.MainKeyboardView_keyPreviewOffset, 0);
|
2014-02-04 06:06:47 +00:00
|
|
|
mPreviewHeight = mainKeyboardViewAttr.getDimensionPixelSize(
|
2014-02-04 03:37:17 +00:00
|
|
|
R.styleable.MainKeyboardView_keyPreviewHeight, 0);
|
2014-02-04 06:06:47 +00:00
|
|
|
mLingerTimeout = mainKeyboardViewAttr.getInt(
|
|
|
|
R.styleable.MainKeyboardView_keyPreviewLingerTimeout, 0);
|
|
|
|
mLayoutId = mainKeyboardViewAttr.getResourceId(
|
|
|
|
R.styleable.MainKeyboardView_keyPreviewLayout, 0);
|
|
|
|
if (mLayoutId == 0) {
|
|
|
|
mShowPopup = false;
|
|
|
|
}
|
2014-02-04 03:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void setVisibleOffset(final int previewVisibleOffset) {
|
|
|
|
mVisibleOffset = previewVisibleOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getVisibleOffset() {
|
|
|
|
return mVisibleOffset;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setGeometry(final View previewTextView) {
|
|
|
|
final int previewWidth = previewTextView.getMeasuredWidth();
|
2014-02-04 06:06:47 +00:00
|
|
|
final int previewHeight = mPreviewHeight;
|
2014-02-04 03:37:17 +00:00
|
|
|
// The width and height of visible part of the key preview background. The content marker
|
|
|
|
// of the background 9-patch have to cover the visible part of the background.
|
|
|
|
mVisibleWidth = previewWidth - previewTextView.getPaddingLeft()
|
|
|
|
- previewTextView.getPaddingRight();
|
|
|
|
mVisibleHeight = previewHeight - previewTextView.getPaddingTop()
|
|
|
|
- previewTextView.getPaddingBottom();
|
|
|
|
// The distance between the top edge of the parent key and the bottom of the visible part
|
|
|
|
// of the key preview background.
|
2014-02-04 06:06:47 +00:00
|
|
|
setVisibleOffset(mPreviewOffset - previewTextView.getPaddingBottom());
|
2014-02-04 03:37:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public int getVisibleWidth() {
|
|
|
|
return mVisibleWidth;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getVisibleHeight() {
|
|
|
|
return mVisibleHeight;
|
|
|
|
}
|
2014-02-04 06:06:47 +00:00
|
|
|
|
|
|
|
public void setPopupEnabled(final boolean enabled, final int lingerTimeout) {
|
|
|
|
mShowPopup = enabled;
|
|
|
|
mLingerTimeout = lingerTimeout;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isPopupEnabled() {
|
|
|
|
return mShowPopup;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getLingerTimeout() {
|
|
|
|
return mLingerTimeout;
|
|
|
|
}
|
2014-02-07 06:25:50 +00:00
|
|
|
|
|
|
|
public void setAnimationParams(final float showUpStartScale, final int showUpDuration,
|
|
|
|
final float dismissEndScale, final int dismissDuration) {
|
|
|
|
mShowUpStartScale = showUpStartScale;
|
|
|
|
mShowUpDuration = showUpDuration;
|
|
|
|
mDismissEndScale = dismissEndScale;
|
|
|
|
mDismissDuration = dismissDuration;
|
|
|
|
}
|
|
|
|
|
|
|
|
public float getShowUpStartScale() {
|
|
|
|
return mShowUpStartScale;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getShowUpDuration() {
|
|
|
|
return mShowUpDuration;
|
|
|
|
}
|
|
|
|
|
|
|
|
public float getDismissEndScale() {
|
|
|
|
return mDismissEndScale;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getDismissDuration() {
|
|
|
|
return mDismissDuration;
|
|
|
|
}
|
2012-08-30 07:18:53 +00:00
|
|
|
}
|