summaryrefslogtreecommitdiffstats
path: root/packages/SystemUI/src/com/android/systemui/statusbar/ItemTouchDispatcher.java
blob: ad8bc1dd2a93a57343e09ab50a2f677cdfe5958a (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
/*
* Copyright (C) 2010 The Android Open Source 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 com.android.systemui.statusbar;

import android.content.Context;
import android.util.Log;
import android.view.GestureDetector;
import android.view.MotionEvent;
import android.view.ViewConfiguration;

import com.android.systemui.R;

public class ItemTouchDispatcher {
    private static final String TAG = "NotificationTouchDispatcher";
    /* package */ static final boolean DBG = false;

    private final GestureDetector mGestureDetector;
    private LatestItemContainer mItem;
    /* stored as class member to avoid garbage creation */
    private int[] mItemLocation = new int[2];

    public ItemTouchDispatcher(final Context context) {
        mGestureDetector = new GestureDetector(context, new GestureDetector.SimpleOnGestureListener() {
            @Override
            public boolean onFling(MotionEvent e1, MotionEvent e2, float vX, float vY) {
                final ViewConfiguration vc = ViewConfiguration.get(context);
                int minDistance = vc.getScaledTouchSlop();
                int distance = (int) Math.abs(e2.getX() - e1.getX());
                boolean result = false;

                if (DBG) {
                    Log.v(TAG, "Fling detected, distance " + distance + " vs. " +
                        minDistance + " vX " + vX + " vY " + vY);
                }

                if (distance > minDistance && Math.abs(vX) > Math.abs(vY)) {
                    mItem.finishSwipe(vX > 0);
                    result = true;
                } else {
                    mItem.stopSwipe();
                }

                mItem = null;
                return result;
            }
        });
    }

    public void setItem(LatestItemContainer item) {
        mItem = item;
    }

    public void releaseItem(LatestItemContainer item) {
        if (item == mItem) {
            mItem = null;
        }
    }

    public boolean needsInterceptTouch(MotionEvent event) {
        if ((event.getAction() & MotionEvent.ACTION_MASK) == MotionEvent.ACTION_DOWN) {
            if (mItem != null) {
                /*
                 * If we get a DOWN event and still have an item, we must have missed unregistering
                 * the item on the last UP event. In that case, do it here to preserve sanity.
                 */
                Log.w(TAG, "Clearing stale item " + mItem);
                mItem.stopSwipe();
                mItem = null;
            }
        }
        if (mItem != null) {
            if (DBG) Log.v(TAG, "Need to intercept touch event " + event + " due to item " + mItem);
            mItem.setEventsControlledByDispatcher();
            return true;
        }
        return false;
    }

    public boolean handleTouchEvent(MotionEvent event) {
        /*
         * We are called from different sources, so make sure we use a
         * consistent coordinate system.
         */
        MotionEvent real = MotionEvent.obtain(event);
        real.setLocation(event.getRawX(), event.getRawY());

        boolean handled = mGestureDetector.onTouchEvent(real);
        if (DBG) Log.v(TAG, "Handling touch event " + event + " handled " + handled);

        if (mItem != null) {
            /*
             * Convert coordinates to item coordinates
             */
            mItem.getLocationOnScreen(mItemLocation);
            real.offsetLocation(mItemLocation[0], mItemLocation[1]);
            mItem.dispatchTouchEvent(real);
            if (DBG) Log.v(TAG, "Converted event to " + real);

            switch (real.getAction() & MotionEvent.ACTION_MASK) {
                case MotionEvent.ACTION_UP:
                case MotionEvent.ACTION_CANCEL:
                    mItem.stopSwipe();
                    mItem = null;
                    handled = true;
                    break;
            }
        }

        real.recycle();
        return handled;
    }
}