mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
106 lines
3.2 KiB
Java
106 lines
3.2 KiB
Java
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.widget;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.TypedArray;
|
|
import android.graphics.Canvas;
|
|
import android.graphics.LinearGradient;
|
|
import android.graphics.Shader;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.text.Layout;
|
|
import android.util.AttributeSet;
|
|
|
|
import org.mozilla.gecko.R;
|
|
import org.mozilla.gecko.widget.ThemedTextView;
|
|
|
|
/**
|
|
* FadedTextView fades the ends of the text by fadeWidth amount,
|
|
* if the text is too long and requires an ellipsis.
|
|
*/
|
|
public class FadedTextView extends ThemedTextView {
|
|
|
|
// Width of the fade effect from end of the view.
|
|
private final int mFadeWidth;
|
|
|
|
// Shader for the fading edge.
|
|
private FadedTextGradient mTextGradient;
|
|
|
|
public FadedTextView(Context context) {
|
|
this(context, null);
|
|
}
|
|
|
|
public FadedTextView(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
|
|
setSingleLine(true);
|
|
setEllipsize(null);
|
|
|
|
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.FadedTextView);
|
|
mFadeWidth = a.getDimensionPixelSize(R.styleable.FadedTextView_fadeWidth, 0);
|
|
a.recycle();
|
|
}
|
|
|
|
private int getAvailableWidth() {
|
|
return getWidth() - getCompoundPaddingLeft() - getCompoundPaddingRight();
|
|
}
|
|
|
|
private boolean needsEllipsis() {
|
|
final int width = getAvailableWidth();
|
|
if (width <= 0) {
|
|
return false;
|
|
}
|
|
|
|
final Layout layout = getLayout();
|
|
return (layout != null && layout.getLineWidth(0) > width);
|
|
}
|
|
|
|
private void updateGradientShader() {
|
|
final int color = getCurrentTextColor();
|
|
final int width = getAvailableWidth();
|
|
|
|
final boolean needsNewGradient = (mTextGradient == null ||
|
|
mTextGradient.getColor() != color ||
|
|
mTextGradient.getWidth() != width);
|
|
|
|
final boolean needsEllipsis = needsEllipsis();
|
|
if (needsEllipsis && needsNewGradient) {
|
|
mTextGradient = new FadedTextGradient(width, mFadeWidth, color);
|
|
}
|
|
|
|
getPaint().setShader(needsEllipsis ? mTextGradient : null);
|
|
}
|
|
|
|
@Override
|
|
public void onDraw(Canvas canvas) {
|
|
updateGradientShader();
|
|
super.onDraw(canvas);
|
|
}
|
|
|
|
private static class FadedTextGradient extends LinearGradient {
|
|
private final int mWidth;
|
|
private final int mColor;
|
|
|
|
public FadedTextGradient(int width, int fadeWidth, int color) {
|
|
super(0, 0, width, 0,
|
|
new int[] { color, color, 0x0 },
|
|
new float[] { 0, ((float) (width - fadeWidth) / width), 1.0f },
|
|
Shader.TileMode.CLAMP);
|
|
|
|
mWidth = width;
|
|
mColor = color;
|
|
}
|
|
|
|
public int getWidth() {
|
|
return mWidth;
|
|
}
|
|
|
|
public int getColor() {
|
|
return mColor;
|
|
}
|
|
}
|
|
}
|