summaryrefslogtreecommitdiffstats
path: root/android/source/src/java/org/libreoffice/canvas/BitmapHandle.java
blob: 9a581956c9e53c45939bed3780cbd20bd0239e6d (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
package org.libreoffice.canvas;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.Canvas;
import android.graphics.RectF;

/**
 * Bitmap handle canvas element is used to show a handle on the screen.
 * The handle visual comes from the bitmap, which must be provided in time
 * of construction.
 */
public abstract class BitmapHandle extends CommonCanvasElement {
    public final RectF mDocumentPosition;
    protected final Bitmap mBitmap;
    protected final RectF mScreenPosition;

    public BitmapHandle(Bitmap bitmap) {
        mBitmap = bitmap;
        mScreenPosition = new RectF(0, 0, mBitmap.getWidth(), mBitmap.getHeight());
        mDocumentPosition = new RectF();
    }

    /**
     * Return a bitmap for a drawable id.
     */
    protected static Bitmap getBitmapForDrawable(Context context, int drawableId) {
        BitmapFactory.Options options = new BitmapFactory.Options();
        return BitmapFactory.decodeResource(context.getResources(), drawableId, options);
    }

    /**
     * Draw the bitmap handle to the canvas.
     * @param canvas - the canvas
     */
    @Override
    public void onDraw(Canvas canvas) {
        canvas.drawBitmap(mBitmap, mScreenPosition.left, mScreenPosition.top, null);
    }

    /**
     * Test if the bitmap has been hit.
     * @param x - x coordinate
     * @param y - y coordinate
     * @return
     */
    @Override
    public boolean onHitTest(float x, float y) {
        return mScreenPosition.contains(x, y);
    }

    /**
     * Change the position of the handle.
     * @param x - x coordinate
     * @param y - y coordinate
     */
    public void reposition(float x, float y) {
        mScreenPosition.offsetTo(x, y);
    }
}