summaryrefslogtreecommitdiff
path: root/apps/jstest_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/jstest_main.c')
-rw-r--r--apps/jstest_main.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/apps/jstest_main.c b/apps/jstest_main.c
index bb2f4afd..a6ff06d1 100644
--- a/apps/jstest_main.c
+++ b/apps/jstest_main.c
@@ -37,6 +37,22 @@ void winerror(pdfapp_t *app, char *msg)
exit(1);
}
+void winalert(pdfapp_t *app, fz_alert_event *alert)
+{
+ fprintf(stderr, "Alert %s: %s", alert->title, alert->message);
+ switch (alert->button_group_type)
+ {
+ case FZ_ALERT_BUTTON_GROUP_OK:
+ case FZ_ALERT_BUTTON_GROUP_OK_CANCEL:
+ alert->button_pressed = FZ_ALERT_BUTTON_OK;
+ break;
+ case FZ_ALERT_BUTTON_GROUP_YES_NO:
+ case FZ_ALERT_BUTTON_GROUP_YES_NO_CANCEL:
+ alert->button_pressed = FZ_ALERT_BUTTON_YES;
+ break;
+ }
+}
+
static char pd_password[256] = "";
static char td_textinput[LONGLINE] = "";