/*******************************************************************************
* Copyright 2012 Steven Rudenko
*
* 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 shared.ui.actionscontentview;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.view.MotionEvent;
import android.widget.FrameLayout;
class ActionsLayout extends FrameLayout {
private BaseContainerController mController = new BaseContainerController(this);
private final Paint mFadePaint = new Paint();
public ActionsLayout(Context context) {
this(context, null);
}
public ActionsLayout(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public ActionsLayout(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public BaseContainerController getController() {
return mController;
}
@Override
public boolean onTouchEvent(MotionEvent event) {
return !mController.isIgnoringTouchEvents() && super.onTouchEvent(event);
}
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
mController.initializeEffects();
}
@Override
protected void dispatchDraw(Canvas canvas) {
final int saveCount = canvas.save();
final Matrix m = mController.getEffectsMatrix();
if (!m.isIdentity())
canvas.concat(m);
final float alpha = mController.getEffectsAlpha();
if (alpha != 1f)
canvas.saveLayerAlpha(0, 0, canvas.getWidth(), canvas.getHeight(), (int)(255 * alpha), Canvas.HAS_ALPHA_LAYER_SAVE_FLAG);
super.dispatchDraw(canvas);
final int fadeFactor = mController.getFadeFactor();
if (fadeFactor > 0) {
mFadePaint.setColor(Color.argb(fadeFactor, 0, 0, 0));
canvas.drawRect(0, 0, getWidth(), getHeight(), mFadePaint);
}
canvas.restoreToCount(saveCount);
}
}