mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 09:43:15 +00:00
WIP
This commit is contained in:
parent
e19198446b
commit
a0deb45fa0
|
@ -1,4 +1,20 @@
|
||||||
package one.nem.lacerta.processor;
|
package one.nem.lacerta.processor;
|
||||||
|
|
||||||
|
import android.graphics.Bitmap;
|
||||||
|
|
||||||
public interface DocumentProcessor {
|
public interface DocumentProcessor {
|
||||||
|
|
||||||
|
// ページ操作
|
||||||
|
void addNewPageToLast(Bitmap bitmap);
|
||||||
|
void addNewPageAfterIndex(Bitmap bitmap, int index);
|
||||||
|
void addNewPageBeforeIndex(Bitmap bitmap, int index);
|
||||||
|
void removePageAtIndex(int index);
|
||||||
|
|
||||||
|
// 更新
|
||||||
|
void updatePageAtIndex(Bitmap bitmap, int index);
|
||||||
|
|
||||||
|
// ページ取得
|
||||||
|
Bitmap getPageAtIndex(int index);
|
||||||
|
int getPageCount();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user