summaryrefslogtreecommitdiffstats
path: root/src/org/cyanogenmod/theme/perapptheming/PerAppThemeListLayout.java
blob: 424d64083cd9b045ff7d99563357844c2a6a0fdb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
/*
 * Copyright (C) 2016 Cyanogen, Inc.
 * Copyright (C) 2016 The CyanogenMod 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 org.cyanogenmod.theme.perapptheming;

import android.animation.Animator;
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.res.Resources;
import android.graphics.Canvas;
import android.graphics.Path;
import android.graphics.PointF;
import android.util.AttributeSet;
import android.view.KeyEvent;
import android.view.MotionEvent;
import android.view.View;
import android.view.animation.AccelerateDecelerateInterpolator;
import android.view.animation.Animation;
import android.widget.FrameLayout;

import org.cyanogenmod.theme.chooser.R;

public class PerAppThemeListLayout extends FrameLayout {
    private PerAppThemingWindow mWindow;
    private PointF mCenter;

    private float mMaxRadius;
    private float mTargetRadius;
    private float mStartRadius;
    private float mCurrentRadius;

    private ValueAnimator mAnimator;
    private boolean mIsAnimating;

    private Path mRevealPath;

    public PerAppThemeListLayout(Context context) {
        this(context, null);
    }

    public PerAppThemeListLayout(Context context, AttributeSet attrs) {
        this(context, attrs, 0);
    }

    public PerAppThemeListLayout(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        final Resources res = getResources();
        float width = res.getDimension(R.dimen.theme_list_width);
        float height = res.getDimension(R.dimen.theme_list_max_height);
        mMaxRadius = (float) Math.sqrt(Math.pow(width, 2) + Math.pow(height, 2));
        mRevealPath = new Path();

        mAnimator = new ValueAnimator();
        mAnimator.setInterpolator(new AccelerateDecelerateInterpolator());
        mAnimator.addListener(mAnimationListener);
        mAnimator.addUpdateListener(mUpdateListener);
    }

    @Override
    public boolean dispatchKeyEvent(KeyEvent event) {
        if (event.getAction() == KeyEvent.ACTION_DOWN &&
                event.getKeyCode() == KeyEvent.KEYCODE_BACK && mWindow != null) {
            mWindow.hideThemeList();
        }
        return super.dispatchKeyEvent(event);
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        if (isEnabled() && event.getAction() == MotionEvent.ACTION_DOWN && mWindow != null) {
            mWindow.hideThemeList();
            return true;
        }
        return super.onTouchEvent(event);
    }

    @Override
    protected void dispatchDraw(Canvas canvas) {
        if (!mIsAnimating) {
            super.dispatchDraw(canvas);
        } else {
            final int state = canvas.save();
            mRevealPath.reset();
            mRevealPath.addCircle(mCenter.x, mCenter.y, mCurrentRadius, Path.Direction.CW);
            canvas.clipPath(mRevealPath);
            super.dispatchDraw(canvas);
            canvas.restoreToCount(state);
        }
    }

    public void setPerAppThemingWindow(PerAppThemingWindow window) {
        mWindow = window;
    }

    /**
     * Perform a circular reveal from center cx,cy
     * @param cx X position of center
     * @param cy Y position of center
     * @param duration Duration of animation
     */
    public void circularReveal(float cx, float cy, long duration) {
        mCenter = new PointF(cx, cy);
        mIsAnimating = true;

        mStartRadius = mCurrentRadius;
        mTargetRadius = mMaxRadius;
        startAnimation(duration);
    }

    /**
     * Perform a circular hide from center cx,cy
     * @param cx X position of center
     * @param cy Y position of center
     * @param duration Duration of animation
     */
    public void circularHide(float cx, float cy, long duration) {
        mCenter = new PointF(cx, cy);
        mIsAnimating = true;

        mStartRadius = mCurrentRadius;
        mTargetRadius = 0f;
        startAnimation(duration);
    }

    private void startAnimation(long duration) {
        getChildAt(0).setVisibility(View.VISIBLE);
        mAnimator.setFloatValues(mStartRadius, mTargetRadius);
        mAnimator.setDuration(duration);
        mAnimator.start();
    }

    private ValueAnimator.AnimatorUpdateListener mUpdateListener =
            new ValueAnimator.AnimatorUpdateListener() {
        @Override
        public void onAnimationUpdate(ValueAnimator animation) {
            Float value = (Float) animation.getAnimatedValue();
            mCurrentRadius = value.floatValue();
            invalidate();
        }
    };

    private Animator.AnimatorListener mAnimationListener = new Animator.AnimatorListener() {
        @Override
        public void onAnimationStart(Animator animation) {}

        @Override
        public void onAnimationEnd(Animator animation) {
            mIsAnimating = false;
            if (mCurrentRadius <= 0) {
                getChildAt(0).setVisibility(INVISIBLE);
            }
        }

        @Override
        public void onAnimationCancel(Animator animation) {}

        @Override
        public void onAnimationRepeat(Animator animation) {}
    };
}