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

import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.RectF;

/**
 * Handles the cursor drawing on the canvas.
 */
public class Cursor extends CommonCanvasElement {
    private static final float CURSOR_WIDTH = 2f;
    private final Paint mCursorPaint = new Paint();
    public RectF mPosition = new RectF();
    public RectF mScaledPosition = new RectF();
    public int mAlpha = 0;

    /**
     * Construct the cursor and set the default values.
     */
    public Cursor() {
        mCursorPaint.setColor(Color.BLACK);
        mCursorPaint.setAlpha(0xFF);
    }

    /**
     * Hit test for cursor, always false.
     */
    @Override
    public boolean onHitTest(float x, float y) {
        return false;
    }

    /**
     * Draw the cursor.
     */
    @Override
    public void onDraw(Canvas canvas) {
        canvas.drawRect(mScaledPosition, mCursorPaint);
    }

    /**
     * Reposition the cursor on screen.
     */
    public void reposition(RectF rect) {
        mScaledPosition = rect;
        mScaledPosition.right = mScaledPosition.left + CURSOR_WIDTH;
    }

    /**
     * Cycle the alpha color of the cursor, makes the
     */
    public void cycleAlpha() {
        mCursorPaint.setAlpha(mCursorPaint.getAlpha() == 0 ? 0xFF : 0);
    }
}