mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
79c87c3b81
--HG-- extra : rebase_source : a9643547b44b99f5921631556bf03091cc831a83
76 lines
2.6 KiB
Java
76 lines
2.6 KiB
Java
/* 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;
|
|
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.graphics.Canvas;
|
|
import android.graphics.Path;
|
|
import android.graphics.PorterDuff.Mode;
|
|
import android.graphics.drawable.LayerDrawable;
|
|
import android.graphics.drawable.StateListDrawable;
|
|
import android.util.AttributeSet;
|
|
|
|
public class TabsPanelButton extends ShapedButton {
|
|
|
|
public TabsPanelButton(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
|
|
// Path is clipped.
|
|
mPath = new Path();
|
|
mCanvasDelegate = new CanvasDelegate(this, Mode.DST_OUT);
|
|
}
|
|
|
|
@Override
|
|
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
|
|
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
|
|
|
|
int width = getMeasuredWidth();
|
|
int height = getMeasuredHeight();
|
|
float curve = height * 1.125f;
|
|
|
|
mPath.reset();
|
|
|
|
// Clipping happens on opposite side for menu.
|
|
if (mSide == CurveTowards.LEFT) {
|
|
mPath.moveTo(0, height);
|
|
mPath.cubicTo(curve * 0.75f, height,
|
|
curve * 0.25f, 0,
|
|
curve, 0);
|
|
mPath.lineTo(0, 0);
|
|
mPath.lineTo(0, height);
|
|
} else if (mSide == CurveTowards.RIGHT) {
|
|
mPath.moveTo(width, height);
|
|
mPath.cubicTo((width - (curve * 0.75f)), height,
|
|
(width - (curve * 0.25f)), 0,
|
|
(width - curve), 0);
|
|
mPath.lineTo(width, 0);
|
|
mPath.lineTo(width, height);
|
|
}
|
|
}
|
|
|
|
// The drawable is constructed as per @drawable/tab_new_button.
|
|
@Override
|
|
public void onLightweightThemeChanged() {
|
|
LightweightThemeDrawable drawable = mActivity.getLightweightTheme().getTextureDrawable(this, R.drawable.tabs_tray_bg_repeat);
|
|
if (drawable == null)
|
|
return;
|
|
|
|
drawable.setAlpha(34, 34);
|
|
|
|
Resources resources = getContext().getResources();
|
|
StateListDrawable stateList = new StateListDrawable();
|
|
stateList.addState(new int[] { android.R.attr.state_pressed }, resources.getDrawable(R.drawable.highlight));
|
|
stateList.addState(new int[] {}, drawable);
|
|
|
|
setBackgroundDrawable(stateList);
|
|
}
|
|
|
|
@Override
|
|
public void onLightweightThemeReset() {
|
|
setBackgroundResource(R.drawable.tab_new_button);
|
|
}
|
|
}
|