1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 02:39:23 +02:00

API methods for action controls (server side is not implemented yet)

This commit is contained in:
Nikolay Pultsin 2012-05-23 03:24:02 +01:00
parent 35f1cc6064
commit 45dfb63382
4 changed files with 149 additions and 0 deletions

View file

@ -45,4 +45,18 @@ interface ApiMethods {
int SET_PAGE_START = 801;
int HIGHLIGHT_AREA = 802;
int CLEAR_HIGHLIGHTING = 803;
// action control
int LIST_ACTIONS = 901;
int LIST_ACTION_NAMES = 902;
int GET_KEY_ACTION = 911;
int SET_KEY_ACTION = 912;
int LIST_TAPZONES = 921;
int GET_TAPZONE_HEIGHT = 922;
int GET_TAPZONE_WIDTH = 923;
int GET_TAPZONE_ACTION = 924;
int CREATE_TAPZONE = 925;
int SET_TAPZONE_ACTION = 926;
}