18c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka/*
28c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka * Copyright (C) 2008 The Android Open Source Project
38c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka *
48c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka * Licensed under the Apache License, Version 2.0 (the "License");
58c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka * you may not use this file except in compliance with the License.
68c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka * You may obtain a copy of the License at
78c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka *
88c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka *      http://www.apache.org/licenses/LICENSE-2.0
98c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka *
108c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka * Unless required by applicable law or agreed to in writing, software
118c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka * distributed under the License is distributed on an "AS IS" BASIS,
128c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
138c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka * See the License for the specific language governing permissions and
148c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka * limitations under the License.
158c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka */
168c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
178c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurkapackage com.android.launcher2;
188c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
198c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurkaimport android.app.WallpaperManager;
208c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurkaimport android.content.Context;
21eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chungimport android.graphics.Canvas;
22eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chungimport android.graphics.Paint;
238c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurkaimport android.graphics.Rect;
248c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurkaimport android.view.View;
25cf6125c2d30ce02d8ab6cbe8e37a20f6a831e216Michael Jurkaimport android.view.ViewGroup;
268c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
27a52570f8f9ad65b85e33a2f2e87722f9edd6c6f4Michael Jurkapublic class ShortcutAndWidgetContainer extends ViewGroup {
288c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    static final String TAG = "CellLayoutChildren";
298c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
308c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    // These are temporary variables to prevent having to allocate a new object just to
318c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    // return an (x, y) value from helper functions. Do NOT use them to maintain other state.
328c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    private final int[] mTmpCellXY = new int[2];
338c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
348c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    private final WallpaperManager mWallpaperManager;
358c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
36d4844c3e731b00547a31f23a00f8bd4a271e2b62Adam Cohen    private int mCellWidth;
37d4844c3e731b00547a31f23a00f8bd4a271e2b62Adam Cohen    private int mCellHeight;
38d4844c3e731b00547a31f23a00f8bd4a271e2b62Adam Cohen
398c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    private int mWidthGap;
408c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    private int mHeightGap;
418c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
422374abfda3e53f84e005df8923170308e4df8c03Adam Cohen    private int mCountX;
432374abfda3e53f84e005df8923170308e4df8c03Adam Cohen
442374abfda3e53f84e005df8923170308e4df8c03Adam Cohen    private boolean mInvertIfRtl = false;
452374abfda3e53f84e005df8923170308e4df8c03Adam Cohen
46a52570f8f9ad65b85e33a2f2e87722f9edd6c6f4Michael Jurka    public ShortcutAndWidgetContainer(Context context) {
478c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        super(context);
488c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        mWallpaperManager = WallpaperManager.getInstance(context);
492801cafe62653131fdc9da402e5c44e5ffd0bf47Adam Cohen    }
502801cafe62653131fdc9da402e5c44e5ffd0bf47Adam Cohen
512374abfda3e53f84e005df8923170308e4df8c03Adam Cohen    public void setCellDimensions(int cellWidth, int cellHeight, int widthGap, int heightGap,
522374abfda3e53f84e005df8923170308e4df8c03Adam Cohen            int countX) {
538c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        mCellWidth = cellWidth;
548c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        mCellHeight = cellHeight;
558c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        mWidthGap = widthGap;
568c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        mHeightGap = heightGap;
572374abfda3e53f84e005df8923170308e4df8c03Adam Cohen        mCountX = countX;
588c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    }
598c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
608c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    public View getChildAt(int x, int y) {
618c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        final int count = getChildCount();
628c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        for (int i = 0; i < count; i++) {
638c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            View child = getChildAt(i);
648c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
658c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
668c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            if ((lp.cellX <= x) && (x < lp.cellX + lp.cellHSpan) &&
67f579b5041afe8272c79f9f13001120d37eeeee7bAdam Cohen                    (lp.cellY <= y) && (y < lp.cellY + lp.cellVSpan)) {
688c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                return child;
698c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            }
708c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        }
718c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        return null;
728c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    }
738c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
748c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    @Override
75eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung    protected void dispatchDraw(Canvas canvas) {
763a9fcedbcd235372cd2ab64f825a0b5b3937f59eMichael Jurka        @SuppressWarnings("all") // suppress dead code warning
773a9fcedbcd235372cd2ab64f825a0b5b3937f59eMichael Jurka        final boolean debug = false;
783a9fcedbcd235372cd2ab64f825a0b5b3937f59eMichael Jurka        if (debug) {
793a9fcedbcd235372cd2ab64f825a0b5b3937f59eMichael Jurka            // Debug drawing for hit space
80eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung            Paint p = new Paint();
81eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung            p.setColor(0x6600FF00);
82eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung            for (int i = getChildCount() - 1; i >= 0; i--) {
83eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung                final View child = getChildAt(i);
84eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung                final CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
85eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung
86eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung                canvas.drawRect(lp.x, lp.y, lp.x + lp.width, lp.y + lp.height, p);
87eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung            }
88eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung        }
89eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung        super.dispatchDraw(canvas);
90eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung    }
91eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung
92eecf02da58adef5486bf0c9ff7127ea891f457a4Winson Chung    @Override
938c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
948c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        int count = getChildCount();
958c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        for (int i = 0; i < count; i++) {
968c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            View child = getChildAt(i);
97d5e42733799817d11d739b0a882da8dda721126dAdam Cohen            measureChild(child);
988c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        }
998c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        int widthSpecSize = MeasureSpec.getSize(widthMeasureSpec);
1008c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        int heightSpecSize =  MeasureSpec.getSize(heightMeasureSpec);
1018c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        setMeasuredDimension(widthSpecSize, heightSpecSize);
1028c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    }
1038c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
104bfbfd26c627a18f8e1e3e6d0e53e78feab360203Adam Cohen    public void setupLp(CellLayout.LayoutParams lp) {
1052374abfda3e53f84e005df8923170308e4df8c03Adam Cohen        lp.setup(mCellWidth, mCellHeight, mWidthGap, mHeightGap, invertLayoutHorizontally(),
1062374abfda3e53f84e005df8923170308e4df8c03Adam Cohen                mCountX);
1072374abfda3e53f84e005df8923170308e4df8c03Adam Cohen    }
1082374abfda3e53f84e005df8923170308e4df8c03Adam Cohen
1092374abfda3e53f84e005df8923170308e4df8c03Adam Cohen    // Set whether or not to invert the layout horizontally if the layout is in RTL mode.
1102374abfda3e53f84e005df8923170308e4df8c03Adam Cohen    public void setInvertIfRtl(boolean invert) {
1112374abfda3e53f84e005df8923170308e4df8c03Adam Cohen        mInvertIfRtl = invert;
112bfbfd26c627a18f8e1e3e6d0e53e78feab360203Adam Cohen    }
113bfbfd26c627a18f8e1e3e6d0e53e78feab360203Adam Cohen
114d5e42733799817d11d739b0a882da8dda721126dAdam Cohen    public void measureChild(View child) {
115d5e42733799817d11d739b0a882da8dda721126dAdam Cohen        final int cellWidth = mCellWidth;
116d5e42733799817d11d739b0a882da8dda721126dAdam Cohen        final int cellHeight = mCellHeight;
117d5e42733799817d11d739b0a882da8dda721126dAdam Cohen        CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
118d5e42733799817d11d739b0a882da8dda721126dAdam Cohen
1192374abfda3e53f84e005df8923170308e4df8c03Adam Cohen        lp.setup(cellWidth, cellHeight, mWidthGap, mHeightGap, invertLayoutHorizontally(), mCountX);
120d5e42733799817d11d739b0a882da8dda721126dAdam Cohen        int childWidthMeasureSpec = MeasureSpec.makeMeasureSpec(lp.width, MeasureSpec.EXACTLY);
121d5e42733799817d11d739b0a882da8dda721126dAdam Cohen        int childheightMeasureSpec = MeasureSpec.makeMeasureSpec(lp.height,
122d5e42733799817d11d739b0a882da8dda721126dAdam Cohen                MeasureSpec.EXACTLY);
123d5e42733799817d11d739b0a882da8dda721126dAdam Cohen        child.measure(childWidthMeasureSpec, childheightMeasureSpec);
124d5e42733799817d11d739b0a882da8dda721126dAdam Cohen    }
125d5e42733799817d11d739b0a882da8dda721126dAdam Cohen
1262374abfda3e53f84e005df8923170308e4df8c03Adam Cohen    private boolean invertLayoutHorizontally() {
1272374abfda3e53f84e005df8923170308e4df8c03Adam Cohen        return mInvertIfRtl && isLayoutRtl();
1282374abfda3e53f84e005df8923170308e4df8c03Adam Cohen    }
1292374abfda3e53f84e005df8923170308e4df8c03Adam Cohen
1302374abfda3e53f84e005df8923170308e4df8c03Adam Cohen    public boolean isLayoutRtl() {
1312374abfda3e53f84e005df8923170308e4df8c03Adam Cohen        return (getLayoutDirection() == LAYOUT_DIRECTION_RTL);
1322374abfda3e53f84e005df8923170308e4df8c03Adam Cohen    }
1332374abfda3e53f84e005df8923170308e4df8c03Adam Cohen
1348c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    @Override
1358c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    protected void onLayout(boolean changed, int l, int t, int r, int b) {
1368c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        int count = getChildCount();
1378c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        for (int i = 0; i < count; i++) {
1388c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            final View child = getChildAt(i);
1398c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            if (child.getVisibility() != GONE) {
1408c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                CellLayout.LayoutParams lp = (CellLayout.LayoutParams) child.getLayoutParams();
1418c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
1428c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                int childLeft = lp.x;
1438c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                int childTop = lp.y;
1448c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                child.layout(childLeft, childTop, childLeft + lp.width, childTop + lp.height);
1458c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
1468c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                if (lp.dropped) {
1478c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                    lp.dropped = false;
1488c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
1498c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                    final int[] cellXY = mTmpCellXY;
1508c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                    getLocationOnScreen(cellXY);
1518c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                    mWallpaperManager.sendWallpaperCommand(getWindowToken(),
1528c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                            WallpaperManager.COMMAND_DROP,
1538c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                            cellXY[0] + childLeft + lp.width / 2,
1548c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                            cellXY[1] + childTop + lp.height / 2, 0, null);
1558c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                }
1568c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            }
1578c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        }
1588c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    }
1598c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
1608c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    @Override
161e6235dd225404239b55c459245543f3302326112Michael Jurka    public boolean shouldDelayChildPressedState() {
162e6235dd225404239b55c459245543f3302326112Michael Jurka        return false;
163e6235dd225404239b55c459245543f3302326112Michael Jurka    }
164e6235dd225404239b55c459245543f3302326112Michael Jurka
165e6235dd225404239b55c459245543f3302326112Michael Jurka    @Override
1668c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    public void requestChildFocus(View child, View focused) {
1678c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        super.requestChildFocus(child, focused);
1688c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        if (child != null) {
1698c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            Rect r = new Rect();
1708c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            child.getDrawingRect(r);
1718c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            requestRectangleOnScreen(r);
1728c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        }
1738c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    }
1748c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
1758c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    @Override
1768c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    public void cancelLongPress() {
1778c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        super.cancelLongPress();
1788c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
1798c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        // Cancel long press for all children
1808c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        final int count = getChildCount();
1818c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        for (int i = 0; i < count; i++) {
1828c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            final View child = getChildAt(i);
1838c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            child.cancelLongPress();
1848c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        }
1858c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    }
1868c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
1878c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    @Override
1888c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    protected void setChildrenDrawingCacheEnabled(boolean enabled) {
1898c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        final int count = getChildCount();
1908c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        for (int i = 0; i < count; i++) {
1918c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            final View view = getChildAt(i);
1928c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            view.setDrawingCacheEnabled(enabled);
1938c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            // Update the drawing caches
1948182e5bc3c2d1a0140df345599b89369d457bb4aAdam Cohen            if (!view.isHardwareAccelerated() && enabled) {
1958c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka                view.buildDrawingCache(true);
1968c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka            }
1978c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        }
1988c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    }
1998c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka
2008c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    @Override
2018c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    protected void setChildrenDrawnWithCacheEnabled(boolean enabled) {
2028c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka        super.setChildrenDrawnWithCacheEnabled(enabled);
2038c920dd3683d752aa4c43e964831ce53f9b72887Michael Jurka    }
204d4844c3e731b00547a31f23a00f8bd4a271e2b62Adam Cohen}
205