1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
// Copyright (C) 2004-2021 Artifex Software, Inc.
//
// This file is part of MuPDF.
//
// MuPDF is free software: you can redistribute it and/or modify it under the
// terms of the GNU Affero General Public License as published by the Free
// Software Foundation, either version 3 of the License, or (at your option)
// any later version.
//
// MuPDF is distributed in the hope that it will be useful, but WITHOUT ANY
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
// details.
//
// You should have received a copy of the GNU Affero General Public License
// along with MuPDF. If not, see <https://www.gnu.org/licenses/agpl-3.0.en.html>
//
// Alternative licensing terms are available from the licensor.
// For commercial licensing, see <https://www.artifex.com/> or contact
// Artifex Software, Inc., 39 Mesa Street, Suite 108A, San Francisco,
// CA 94129, USA, for further information.
#include "mupdf/fitz.h"
#include "mupdf/pdf.h"
typedef struct
{
pdf_doc_event base;
pdf_alert_event alert;
} pdf_alert_event_internal;
pdf_alert_event *pdf_access_alert_event(fz_context *ctx, pdf_doc_event *evt)
{
pdf_alert_event *alert = NULL;
if (evt->type == PDF_DOCUMENT_EVENT_ALERT)
alert = &((pdf_alert_event_internal *)evt)->alert;
return alert;
}
void pdf_event_issue_alert(fz_context *ctx, pdf_document *doc, pdf_alert_event *alert)
{
if (doc->event_cb)
{
pdf_alert_event_internal ievent;
ievent.base.type = PDF_DOCUMENT_EVENT_ALERT;
ievent.alert = *alert;
doc->event_cb(ctx, doc, (pdf_doc_event *)&ievent, doc->event_cb_data);
*alert = ievent.alert;
}
}
void pdf_event_issue_print(fz_context *ctx, pdf_document *doc)
{
pdf_doc_event e;
e.type = PDF_DOCUMENT_EVENT_PRINT;
if (doc->event_cb)
doc->event_cb(ctx, doc, &e, doc->event_cb_data);
}
typedef struct
{
pdf_doc_event base;
const char *item;
} pdf_exec_menu_item_event_internal;
const char *pdf_access_exec_menu_item_event(fz_context *ctx, pdf_doc_event *evt)
{
const char *item = NULL;
if (evt->type == PDF_DOCUMENT_EVENT_EXEC_MENU_ITEM)
item = ((pdf_exec_menu_item_event_internal *)evt)->item;
return item;
}
void pdf_event_issue_exec_menu_item(fz_context *ctx, pdf_document *doc, const char *item)
{
if (doc->event_cb)
{
pdf_exec_menu_item_event_internal ievent;
ievent.base.type = PDF_DOCUMENT_EVENT_EXEC_MENU_ITEM;
ievent.item = item;
doc->event_cb(ctx, doc, (pdf_doc_event *)&ievent, doc->event_cb_data);
}
}
typedef struct
{
pdf_doc_event base;
pdf_launch_url_event launch_url;
} pdf_launch_url_event_internal;
pdf_launch_url_event *pdf_access_launch_url_event(fz_context *ctx, pdf_doc_event *evt)
{
pdf_launch_url_event *launch_url = NULL;
if (evt->type == PDF_DOCUMENT_EVENT_LAUNCH_URL)
launch_url = &((pdf_launch_url_event_internal *)evt)->launch_url;
return launch_url;
}
void pdf_event_issue_launch_url(fz_context *ctx, pdf_document *doc, const char *url, int new_frame)
{
if (doc->event_cb)
{
pdf_launch_url_event_internal e;
e.base.type = PDF_DOCUMENT_EVENT_LAUNCH_URL;
e.launch_url.url = url;
e.launch_url.new_frame = new_frame;
doc->event_cb(ctx, doc, (pdf_doc_event *)&e, doc->event_cb_data);
}
}
typedef struct
{
pdf_doc_event base;
pdf_mail_doc_event mail_doc;
} pdf_mail_doc_event_internal;
pdf_mail_doc_event *pdf_access_mail_doc_event(fz_context *ctx, pdf_doc_event *evt)
{
pdf_mail_doc_event *mail_doc = NULL;
if (evt->type == PDF_DOCUMENT_EVENT_MAIL_DOC)
mail_doc = &((pdf_mail_doc_event_internal *)evt)->mail_doc;
return mail_doc;
}
void pdf_event_issue_mail_doc(fz_context *ctx, pdf_document *doc, pdf_mail_doc_event *evt)
{
if (doc->event_cb)
{
pdf_mail_doc_event_internal e;
e.base.type = PDF_DOCUMENT_EVENT_MAIL_DOC;
e.mail_doc = *evt;
doc->event_cb(ctx, doc, (pdf_doc_event *)&e, doc->event_cb_data);
}
}
void pdf_set_doc_event_callback(fz_context *ctx, pdf_document *doc, pdf_doc_event_cb *event_cb, pdf_free_doc_event_data_cb *free_event_data_cb, void *data)
{
if (doc->free_event_data_cb)
doc->free_event_data_cb(ctx, doc->event_cb_data);
doc->event_cb = event_cb;
doc->free_event_data_cb = free_event_data_cb;
doc->event_cb_data = data;
}
void *pdf_get_doc_event_callback_data(fz_context *ctx, pdf_document *doc)
{
return doc->event_cb_data;
}
|