summaryrefslogtreecommitdiff
path: root/fitz/fitz.h
diff options
context:
space:
mode:
Diffstat (limited to 'fitz/fitz.h')
-rw-r--r--fitz/fitz.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/fitz/fitz.h b/fitz/fitz.h
index 4e5607f3..fb9facc1 100644
--- a/fitz/fitz.h
+++ b/fitz/fitz.h
@@ -2575,7 +2575,8 @@ enum
FZ_DOCUMENT_EVENT_PRINT,
FZ_DOCUMENT_EVENT_LAUNCH_URL,
FZ_DOCUMENT_EVENT_MAIL_DOC,
- FZ_DOCUMENT_EVENT_SUBMIT
+ FZ_DOCUMENT_EVENT_SUBMIT,
+ FZ_DOCUMENT_EVENT_EXEC_MENU_ITEM
};
/*
@@ -2649,6 +2650,12 @@ enum
fz_alert_event *fz_access_alert_event(fz_doc_event *event);
/*
+ fz_access_exec_menu_item_event: access the details of am execMenuItem
+ event, which consists of just the name of the menu item
+*/
+char *fz_access_exec_menu_item_event(fz_doc_event *event);
+
+/*
fz_submit_event: details of a submit event. The app should submit
the specified data to the specified url. "get" determines whether
to use the GET or POST method.