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

import org.libreoffice.LibreOfficeMainActivity;

import org.libreoffice.R;

/**
 * Selection handle for showing and manipulating the start of a selection.
 */
public class SelectionHandleStart extends SelectionHandle {
    public SelectionHandleStart(LibreOfficeMainActivity context) {
        super(context, getBitmapForDrawable(context, R.drawable.handle_alias_start));
    }

    /**
     * Change the position of the handle on the screen. Take into account the
     * handle alignment to the right.
     */
    @Override
    public void reposition(float x, float y) {
        super.reposition(x, y);
        // align to the right
        float offset = mScreenPosition.width();
        mScreenPosition.offset(-offset, 0);
    }

    /**
     * Define the type of the handle.
     */
    @Override
    public HandleType getHandleType() {
        return HandleType.START;
    }
}