summaryrefslogtreecommitdiff
path: root/android/src/com/artifex/mupdfdemo/MuPDFView.java
diff options
context:
space:
mode:
authorPaul Gardiner <paulg.artifex@glidos.net>2013-02-25 15:29:07 +0000
committerRobin Watts <robin.watts@artifex.com>2013-02-26 19:02:02 +0000
commit08dd51d661b7e1adf925a667a548755fadbfbef7 (patch)
tree4626edb1aa0b1f9df728183cc5029e2be6e78fca /android/src/com/artifex/mupdfdemo/MuPDFView.java
parent5bf497485a597a866bb5c149ef02f2b10b74e1ea (diff)
downloadmupdf-08dd51d661b7e1adf925a667a548755fadbfbef7.tar.xz
Android: add support for highlight and underline markup annotations.
Highlight annotations currently come out opaque so aren't a lot of use.
Diffstat (limited to 'android/src/com/artifex/mupdfdemo/MuPDFView.java')
-rw-r--r--android/src/com/artifex/mupdfdemo/MuPDFView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/src/com/artifex/mupdfdemo/MuPDFView.java b/android/src/com/artifex/mupdfdemo/MuPDFView.java
index a213b349..fe93b532 100644
--- a/android/src/com/artifex/mupdfdemo/MuPDFView.java
+++ b/android/src/com/artifex/mupdfdemo/MuPDFView.java
@@ -15,7 +15,7 @@ public interface MuPDFView {
public void selectText(float x0, float y0, float x1, float y1);
public void deselectText();
public boolean copySelection();
- public void strikeOutSelection();
+ public void markupSelection(Annotation.Type type);
public void deleteSelectedAnnotation();
public void setSearchBoxes(RectF searchBoxes[]);
public void setLinkHighlighting(boolean f);