mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
86 lines
2.9 KiB
Java
86 lines
2.9 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.toolbar;
|
|
|
|
import org.mozilla.gecko.R;
|
|
|
|
import android.content.Context;
|
|
import android.graphics.Canvas;
|
|
import android.graphics.LinearGradient;
|
|
import android.graphics.Paint;
|
|
import android.graphics.Path;
|
|
import android.graphics.Shader;
|
|
import android.graphics.drawable.Drawable;
|
|
import android.graphics.drawable.StateListDrawable;
|
|
import android.util.AttributeSet;
|
|
|
|
public class ForwardButton extends ShapedButton {
|
|
private final Path mBorderPath;
|
|
private final Paint mBorderPaint;
|
|
private final float mBorderWidth;
|
|
|
|
public ForwardButton(Context context, AttributeSet attrs) {
|
|
super(context, attrs);
|
|
|
|
mBorderWidth = getResources().getDimension(R.dimen.nav_button_border_width);
|
|
|
|
// Paint to draw the border.
|
|
mBorderPaint = new Paint();
|
|
mBorderPaint.setAntiAlias(true);
|
|
mBorderPaint.setStrokeWidth(mBorderWidth);
|
|
mBorderPaint.setStyle(Paint.Style.STROKE);
|
|
|
|
mBorderPath = new Path();
|
|
|
|
setPrivateMode(false);
|
|
}
|
|
|
|
@Override
|
|
public void setPrivateMode(boolean isPrivate) {
|
|
super.setPrivateMode(isPrivate);
|
|
mBorderPaint.setColor(isPrivate ? 0xFF363B40 : 0xFFBFBFBF);
|
|
}
|
|
|
|
@Override
|
|
protected void onSizeChanged(int width, int height, int oldWidth, int oldHeight) {
|
|
super.onSizeChanged(width, height, oldWidth, oldHeight);
|
|
|
|
mBorderPath.reset();
|
|
mBorderPath.moveTo(width - mBorderWidth, 0);
|
|
mBorderPath.lineTo(width - mBorderWidth, height);
|
|
}
|
|
|
|
@Override
|
|
public void draw(Canvas canvas) {
|
|
super.draw(canvas);
|
|
|
|
// Draw the border on top.
|
|
canvas.drawPath(mBorderPath, mBorderPaint);
|
|
}
|
|
|
|
// The drawable is constructed as per @drawable/url_bar_nav_button.
|
|
@Override
|
|
public void onLightweightThemeChanged() {
|
|
final Drawable drawable = mTheme.getDrawable(this);
|
|
if (drawable == null)
|
|
return;
|
|
|
|
final StateListDrawable stateList = new StateListDrawable();
|
|
stateList.addState(PRIVATE_PRESSED_STATE_SET, getColorDrawable(R.color.highlight_nav_pb));
|
|
stateList.addState(PRESSED_ENABLED_STATE_SET, getColorDrawable(R.color.highlight_nav));
|
|
stateList.addState(PRIVATE_FOCUSED_STATE_SET, getColorDrawable(R.color.highlight_nav_focused_pb));
|
|
stateList.addState(FOCUSED_STATE_SET, getColorDrawable(R.color.highlight_nav_focused));
|
|
stateList.addState(PRIVATE_STATE_SET, getColorDrawable(R.color.background_private));
|
|
stateList.addState(EMPTY_STATE_SET, drawable);
|
|
|
|
setBackgroundDrawable(stateList);
|
|
}
|
|
|
|
@Override
|
|
public void onLightweightThemeReset() {
|
|
setBackgroundResource(R.drawable.url_bar_nav_button);
|
|
}
|
|
}
|