summaryrefslogtreecommitdiff
path: root/android/src/com/artifex/mupdfdemo/MuPDFView.java
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2013-06-19 15:29:44 +0200
committerTor Andersson <tor.andersson@artifex.com>2013-06-20 16:45:35 +0200
commit0a927854a10e1e6b9770a81e2e1d9f3093631757 (patch)
tree3d65d820d9fdba2d0d394d99c36290c851b78ca0 /android/src/com/artifex/mupdfdemo/MuPDFView.java
parent1ae8f19179c5f0f8c6352b3c7855465325d5449a (diff)
downloadmupdf-0a927854a10e1e6b9770a81e2e1d9f3093631757.tar.xz
Rearrange source files.
Diffstat (limited to 'android/src/com/artifex/mupdfdemo/MuPDFView.java')
-rw-r--r--android/src/com/artifex/mupdfdemo/MuPDFView.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/android/src/com/artifex/mupdfdemo/MuPDFView.java b/android/src/com/artifex/mupdfdemo/MuPDFView.java
deleted file mode 100644
index cc0405d1..00000000
--- a/android/src/com/artifex/mupdfdemo/MuPDFView.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package com.artifex.mupdfdemo;
-
-import android.graphics.PointF;
-import android.graphics.RectF;
-
-enum Hit {Nothing, Widget, Annotation};
-
-public interface MuPDFView {
- public void setPage(int page, PointF size);
- public void setScale(float scale);
- public int getPage();
- public void blank(int page);
- public Hit passClickEvent(float x, float y);
- public LinkInfo hitLink(float x, float y);
- public void selectText(float x0, float y0, float x1, float y1);
- public void deselectText();
- public boolean copySelection();
- public boolean markupSelection(Annotation.Type type);
- public void deleteSelectedAnnotation();
- public void setSearchBoxes(RectF searchBoxes[]);
- public void setLinkHighlighting(boolean f);
- public void deselectAnnotation();
- public void startDraw(float x, float y);
- public void continueDraw(float x, float y);
- public void cancelDraw();
- public boolean saveDraw();
- public void setChangeReporter(Runnable reporter);
- public void update();
- public void addHq(boolean update);
- public void removeHq();
- public void releaseResources();
-}