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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
|
#include <jni.h>
#include <time.h>
#include <android/log.h>
#include <android/bitmap.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "fitz.h"
#include "mupdf.h"
#define LOG_TAG "libmupdf"
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)
#define LOGE(...) __android_log_print(ANDROID_LOG_ERROR,LOG_TAG,__VA_ARGS__)
/* Set to 1 to enable debug log traces. */
#define DEBUG 0
/* Enable to log rendering times (render each frame 100 times and time) */
#undef TIME_DISPLAY_LIST
#define MAX_SEARCH_HITS (500)
enum
{
NONE,
TEXT,
LISTBOX,
COMBOBOX
};
/* Globals */
fz_colorspace *colorspace;
fz_document *doc;
int pagenum = 1;
int resolution = 160;
float pageWidth = 100;
float pageHeight = 100;
fz_display_list *currentPageList;
fz_display_list *currentAnnotationList;
fz_rect currentMediabox;
fz_context *ctx;
int currentPageNumber = -1;
fz_page *currentPage = NULL;
fz_bbox *hit_bbox = NULL;
JNIEXPORT int JNICALL
Java_com_artifex_mupdf_MuPDFCore_openFile(JNIEnv * env, jobject thiz, jstring jfilename)
{
const char *filename;
int pages = 0;
int result = 0;
filename = (*env)->GetStringUTFChars(env, jfilename, NULL);
if (filename == NULL)
{
LOGE("Failed to get filename");
return 0;
}
/* 128 MB store for low memory devices. Tweak as necessary. */
ctx = fz_new_context(NULL, NULL, 128 << 20);
if (!ctx)
{
LOGE("Failed to initialise context");
return 0;
}
doc = NULL;
fz_try(ctx)
{
colorspace = fz_device_rgb;
LOGE("Opening document...");
fz_try(ctx)
{
doc = fz_open_document(ctx, (char *)filename);
}
fz_catch(ctx)
{
fz_throw(ctx, "Cannot open document: '%s'\n", filename);
}
LOGE("Done!");
result = 1;
}
fz_catch(ctx)
{
LOGE("Failed: %s", ctx->error->message);
fz_close_document(doc);
doc = NULL;
fz_free_context(ctx);
ctx = NULL;
}
(*env)->ReleaseStringUTFChars(env, jfilename, filename);
return result;
}
JNIEXPORT int JNICALL
Java_com_artifex_mupdf_MuPDFCore_countPagesInternal(JNIEnv *env, jobject thiz)
{
return fz_count_pages(doc);
}
JNIEXPORT void JNICALL
Java_com_artifex_mupdf_MuPDFCore_gotoPageInternal(JNIEnv *env, jobject thiz, int page)
{
float zoom;
fz_matrix ctm;
fz_bbox bbox;
if (page == pagenum && currentPage != NULL)
return;
if (currentPage != NULL)
{
fz_free_page(doc, currentPage);
currentPage = NULL;
}
/* In the event of an error, ensure we give a non-empty page */
pageWidth = 100;
pageHeight = 100;
currentPageNumber = page;
LOGE("Goto page %d...", page);
fz_try(ctx)
{
if (currentPageList != NULL)
{
fz_free_display_list(ctx, currentPageList);
currentPageList = NULL;
}
if (currentAnnotationList != NULL)
{
fz_free_display_list(ctx, currentAnnotationList);
currentAnnotationList = NULL;
}
pagenum = page;
currentPage = fz_load_page(doc, pagenum);
zoom = resolution / 72;
currentMediabox = fz_bound_page(doc, currentPage);
ctm = fz_scale(zoom, zoom);
bbox = fz_round_rect(fz_transform_rect(ctm, currentMediabox));
pageWidth = bbox.x1-bbox.x0;
pageHeight = bbox.y1-bbox.y0;
}
fz_catch(ctx)
{
LOGE("cannot make displaylist from page %d", pagenum);
}
}
JNIEXPORT void JNICALL
Java_com_artifex_mupdf_MuPDFCore_markDirtyInternal(JNIEnv *env, jobject thiz, int page)
{
if (currentPage)
{
fz_interactive *idoc = fz_interact(doc);
if (idoc)
fz_update_page(idoc, currentPage, NULL, NULL);
}
if (currentAnnotationList != NULL && page == pagenum)
{
fz_free_display_list(ctx, currentAnnotationList);
currentAnnotationList = NULL;
}
}
JNIEXPORT float JNICALL
Java_com_artifex_mupdf_MuPDFCore_getPageWidth(JNIEnv *env, jobject thiz)
{
LOGE("PageWidth=%g", pageWidth);
return pageWidth;
}
JNIEXPORT float JNICALL
Java_com_artifex_mupdf_MuPDFCore_getPageHeight(JNIEnv *env, jobject thiz)
{
LOGE("PageHeight=%g", pageHeight);
return pageHeight;
}
JNIEXPORT jboolean JNICALL
Java_com_artifex_mupdf_MuPDFCore_javascriptSupported(JNIEnv *env, jobject thiz)
{
return fz_javascript_supported();
}
JNIEXPORT jboolean JNICALL
Java_com_artifex_mupdf_MuPDFCore_drawPage(JNIEnv *env, jobject thiz, jobject bitmap,
int pageW, int pageH, int patchX, int patchY, int patchW, int patchH)
{
AndroidBitmapInfo info;
void *pixels;
int ret;
fz_device *dev = NULL;
float zoom;
fz_matrix ctm;
fz_bbox bbox;
fz_pixmap *pix = NULL;
float xscale, yscale;
fz_bbox rect;
fz_var(pix);
fz_var(dev);
LOGI("In native method\n");
if ((ret = AndroidBitmap_getInfo(env, bitmap, &info)) < 0) {
LOGE("AndroidBitmap_getInfo() failed ! error=%d", ret);
return 0;
}
LOGI("Checking format\n");
if (info.format != ANDROID_BITMAP_FORMAT_RGBA_8888) {
LOGE("Bitmap format is not RGBA_8888 !");
return 0;
}
LOGI("locking pixels\n");
if ((ret = AndroidBitmap_lockPixels(env, bitmap, &pixels)) < 0) {
LOGE("AndroidBitmap_lockPixels() failed ! error=%d", ret);
return 0;
}
/* Call mupdf to render display list to screen */
LOGE("Rendering page=%dx%d patch=[%d,%d,%d,%d]",
pageW, pageH, patchX, patchY, patchW, patchH);
fz_try(ctx)
{
if (currentPageList == NULL)
{
/* Render to list */
currentPageList = fz_new_display_list(ctx);
dev = fz_new_list_device(ctx, currentPageList);
fz_run_page_contents(doc, currentPage, dev, fz_identity, NULL);
}
if (currentAnnotationList == NULL)
{
fz_annot *annot;
if (dev)
{
fz_free_device(dev);
dev = NULL;
}
currentAnnotationList = fz_new_display_list(ctx);
dev = fz_new_list_device(ctx, currentAnnotationList);
for (annot = fz_first_annot(doc, currentPage); annot; annot = fz_next_annot(doc, annot))
fz_run_annot(doc, currentPage, annot, dev, fz_identity, NULL);
}
rect.x0 = patchX;
rect.y0 = patchY;
rect.x1 = patchX + patchW;
rect.y1 = patchY + patchH;
pix = fz_new_pixmap_with_bbox_and_data(ctx, colorspace, rect, pixels);
if (currentPageList == NULL && currentAnnotationList == NULL)
{
fz_clear_pixmap_with_value(ctx, pix, 0xd0);
break;
}
fz_clear_pixmap_with_value(ctx, pix, 0xff);
zoom = resolution / 72;
ctm = fz_scale(zoom, zoom);
bbox = fz_round_rect(fz_transform_rect(ctm,currentMediabox));
/* Now, adjust ctm so that it would give the correct page width
* heights. */
xscale = (float)pageW/(float)(bbox.x1-bbox.x0);
yscale = (float)pageH/(float)(bbox.y1-bbox.y0);
ctm = fz_concat(ctm, fz_scale(xscale, yscale));
bbox = fz_round_rect(fz_transform_rect(ctm,currentMediabox));
dev = fz_new_draw_device(ctx, pix);
#ifdef TIME_DISPLAY_LIST
{
clock_t time;
int i;
LOGE("Executing display list");
time = clock();
for (i=0; i<100;i++) {
#endif
if (currentPageList)
fz_run_display_list(currentPageList, dev, ctm, bbox, NULL);
if (currentAnnotationList)
fz_run_display_list(currentAnnotationList, dev, ctm, bbox, NULL);
#ifdef TIME_DISPLAY_LIST
}
time = clock() - time;
LOGE("100 renders in %d (%d per sec)", time, CLOCKS_PER_SEC);
}
#endif
fz_free_device(dev);
dev = NULL;
fz_drop_pixmap(ctx, pix);
LOGE("Rendered");
}
fz_catch(ctx)
{
fz_free_device(dev);
LOGE("Render failed");
}
AndroidBitmap_unlockPixels(env, bitmap);
return 1;
}
static fz_text_char textcharat(fz_text_page *page, int idx)
{
static fz_text_char emptychar = { {0,0,0,0}, ' ' };
fz_text_block *block;
fz_text_line *line;
fz_text_span *span;
int ofs = 0;
for (block = page->blocks; block < page->blocks + page->len; block++)
{
for (line = block->lines; line < block->lines + block->len; line++)
{
for (span = line->spans; span < line->spans + line->len; span++)
{
if (idx < ofs + span->len)
return span->text[idx - ofs];
/* pseudo-newline */
if (span + 1 == line->spans + line->len)
{
if (idx == ofs + span->len)
return emptychar;
ofs++;
}
ofs += span->len;
}
}
}
return emptychar;
}
static int
charat(fz_text_page *page, int idx)
{
return textcharat(page, idx).c;
}
static fz_bbox
bboxcharat(fz_text_page *page, int idx)
{
return fz_round_rect(textcharat(page, idx).bbox);
}
static int
textlen(fz_text_page *page)
{
fz_text_block *block;
fz_text_line *line;
fz_text_span *span;
int len = 0;
for (block = page->blocks; block < page->blocks + page->len; block++)
{
for (line = block->lines; line < block->lines + block->len; line++)
{
for (span = line->spans; span < line->spans + line->len; span++)
len += span->len;
len++; /* pseudo-newline */
}
}
return len;
}
static int
match(fz_text_page *page, const char *s, int n)
{
int orig = n;
int c;
while (*s) {
s += fz_chartorune(&c, (char *)s);
if (c == ' ' && charat(page, n) == ' ') {
while (charat(page, n) == ' ')
n++;
} else {
if (tolower(c) != tolower(charat(page, n)))
return 0;
n++;
}
}
return n - orig;
}
static int
countOutlineItems(fz_outline *outline)
{
int count = 0;
while (outline)
{
if (outline->dest.kind == FZ_LINK_GOTO
&& outline->dest.ld.gotor.page >= 0
&& outline->title)
count++;
count += countOutlineItems(outline->down);
outline = outline->next;
}
return count;
}
static int
fillInOutlineItems(JNIEnv * env, jclass olClass, jmethodID ctor, jobjectArray arr, int pos, fz_outline *outline, int level)
{
while (outline)
{
if (outline->dest.kind == FZ_LINK_GOTO)
{
int page = outline->dest.ld.gotor.page;
if (page >= 0 && outline->title)
{
jobject ol;
jstring title = (*env)->NewStringUTF(env, outline->title);
if (title == NULL) return -1;
ol = (*env)->NewObject(env, olClass, ctor, level, title, page);
if (ol == NULL) return -1;
(*env)->SetObjectArrayElement(env, arr, pos, ol);
(*env)->DeleteLocalRef(env, ol);
(*env)->DeleteLocalRef(env, title);
pos++;
}
}
pos = fillInOutlineItems(env, olClass, ctor, arr, pos, outline->down, level+1);
if (pos < 0) return -1;
outline = outline->next;
}
return pos;
}
JNIEXPORT jboolean JNICALL
Java_com_artifex_mupdf_MuPDFCore_needsPasswordInternal(JNIEnv * env, jobject thiz)
{
return fz_needs_password(doc) ? JNI_TRUE : JNI_FALSE;
}
JNIEXPORT jboolean JNICALL
Java_com_artifex_mupdf_MuPDFCore_authenticatePasswordInternal(JNIEnv *env, jobject thiz, jstring password)
{
const char *pw;
int result;
pw = (*env)->GetStringUTFChars(env, password, NULL);
if (pw == NULL)
return JNI_FALSE;
result = fz_authenticate_password(doc, (char *)pw);
(*env)->ReleaseStringUTFChars(env, password, pw);
return result;
}
JNIEXPORT jboolean JNICALL
Java_com_artifex_mupdf_MuPDFCore_hasOutlineInternal(JNIEnv * env, jobject thiz)
{
fz_outline *outline = fz_load_outline(doc);
return (outline == NULL) ? JNI_FALSE : JNI_TRUE;
}
JNIEXPORT jobjectArray JNICALL
Java_com_artifex_mupdf_MuPDFCore_getOutlineInternal(JNIEnv * env, jobject thiz)
{
jclass olClass;
jmethodID ctor;
jobjectArray arr;
jobject ol;
fz_outline *outline;
int nItems;
olClass = (*env)->FindClass(env, "com/artifex/mupdf/OutlineItem");
if (olClass == NULL) return NULL;
ctor = (*env)->GetMethodID(env, olClass, "<init>", "(ILjava/lang/String;I)V");
if (ctor == NULL) return NULL;
outline = fz_load_outline(doc);
nItems = countOutlineItems(outline);
arr = (*env)->NewObjectArray(env,
nItems,
olClass,
NULL);
if (arr == NULL) return NULL;
return fillInOutlineItems(env, olClass, ctor, arr, 0, outline, 0) > 0
? arr
:NULL;
}
JNIEXPORT jobjectArray JNICALL
Java_com_artifex_mupdf_MuPDFCore_searchPage(JNIEnv * env, jobject thiz, jstring jtext)
{
jclass rectClass;
jmethodID ctor;
jobjectArray arr;
jobject rect;
fz_text_sheet *sheet = NULL;
fz_text_page *text = NULL;
fz_device *dev = NULL;
float zoom;
fz_matrix ctm;
int pos;
int len;
int i, n;
int hit_count = 0;
const char *str;
rectClass = (*env)->FindClass(env, "android/graphics/RectF");
if (rectClass == NULL) return NULL;
ctor = (*env)->GetMethodID(env, rectClass, "<init>", "(FFFF)V");
if (ctor == NULL) return NULL;
str = (*env)->GetStringUTFChars(env, jtext, NULL);
if (str == NULL) return NULL;
fz_var(sheet);
fz_var(text);
fz_var(dev);
fz_try(ctx)
{
fz_rect rect;
if (hit_bbox == NULL)
hit_bbox = fz_malloc_array(ctx, MAX_SEARCH_HITS, sizeof(*hit_bbox));
zoom = resolution / 72;
ctm = fz_scale(zoom, zoom);
rect = fz_transform_rect(ctm, currentMediabox);
sheet = fz_new_text_sheet(ctx);
text = fz_new_text_page(ctx, rect);
dev = fz_new_text_device(ctx, sheet, text);
fz_run_page(doc, currentPage, dev, ctm, NULL);
fz_free_device(dev);
dev = NULL;
len = textlen(text);
for (pos = 0; pos < len; pos++)
{
fz_bbox rr = fz_empty_bbox;
n = match(text, str, pos);
for (i = 0; i < n; i++)
rr = fz_union_bbox(rr, bboxcharat(text, pos + i));
if (!fz_is_empty_bbox(rr) && hit_count < MAX_SEARCH_HITS)
hit_bbox[hit_count++] = rr;
}
}
fz_always(ctx)
{
fz_free_text_page(ctx, text);
fz_free_text_sheet(ctx, sheet);
fz_free_device(dev);
}
fz_catch(ctx)
{
jclass cls;
(*env)->ReleaseStringUTFChars(env, jtext, str);
cls = (*env)->FindClass(env, "java/lang/OutOfMemoryError");
if (cls != NULL)
(*env)->ThrowNew(env, cls, "Out of memory in MuPDFCore_searchPage");
(*env)->DeleteLocalRef(env, cls);
return NULL;
}
(*env)->ReleaseStringUTFChars(env, jtext, str);
arr = (*env)->NewObjectArray(env,
hit_count,
rectClass,
NULL);
if (arr == NULL) return NULL;
for (i = 0; i < hit_count; i++) {
rect = (*env)->NewObject(env, rectClass, ctor,
(float) (hit_bbox[i].x0),
(float) (hit_bbox[i].y0),
(float) (hit_bbox[i].x1),
(float) (hit_bbox[i].y1));
if (rect == NULL)
return NULL;
(*env)->SetObjectArrayElement(env, arr, i, rect);
(*env)->DeleteLocalRef(env, rect);
}
return arr;
}
JNIEXPORT void JNICALL
Java_com_artifex_mupdf_MuPDFCore_destroying(JNIEnv * env, jobject thiz)
{
fz_free(ctx, hit_bbox);
hit_bbox = NULL;
fz_free_display_list(ctx, currentPageList);
currentPageList = NULL;
fz_free_display_list(ctx, currentAnnotationList);
currentAnnotationList = NULL;
if (currentPage != NULL)
{
fz_free_page(doc, currentPage);
currentPage = NULL;
}
fz_close_document(doc);
doc = NULL;
}
JNIEXPORT jobjectArray JNICALL
Java_com_artifex_mupdf_MuPDFCore_getPageLinksInternal(JNIEnv * env, jobject thiz, int pageNumber)
{
jclass linkInfoClass;
jmethodID ctor;
jobjectArray arr;
jobject linkInfo;
fz_matrix ctm;
float zoom;
fz_link *list;
fz_link *link;
int count;
linkInfoClass = (*env)->FindClass(env, "com/artifex/mupdf/LinkInfo");
if (linkInfoClass == NULL) return NULL;
ctor = (*env)->GetMethodID(env, linkInfoClass, "<init>", "(FFFFI)V");
if (ctor == NULL) return NULL;
Java_com_artifex_mupdf_MuPDFCore_gotoPageInternal(env, thiz, pageNumber);
if (currentPageNumber == -1 || currentPage == NULL)
return NULL;
zoom = resolution / 72;
ctm = fz_scale(zoom, zoom);
list = fz_load_links(doc, currentPage);
count = 0;
for (link = list; link; link = link->next)
{
if (link->dest.kind == FZ_LINK_GOTO)
count++ ;
}
arr = (*env)->NewObjectArray(env, count, linkInfoClass, NULL);
if (arr == NULL) return NULL;
count = 0;
for (link = list; link; link = link->next)
{
if (link->dest.kind == FZ_LINK_GOTO)
{
fz_rect rect = fz_transform_rect(ctm, link->rect);
linkInfo = (*env)->NewObject(env, linkInfoClass, ctor,
(float)rect.x0, (float)rect.y0, (float)rect.x1, (float)rect.y1,
link->dest.ld.gotor.page);
if (linkInfo == NULL) return NULL;
(*env)->SetObjectArrayElement(env, arr, count, linkInfo);
(*env)->DeleteLocalRef(env, linkInfo);
count ++;
}
}
return arr;
}
JNIEXPORT jobjectArray JNICALL
Java_com_artifex_mupdf_MuPDFCore_getWidgetAreasInternal(JNIEnv * env, jobject thiz, int pageNumber)
{
jclass rectFClass;
jmethodID ctor;
jobjectArray arr;
jobject rectF;
fz_interactive *idoc;
fz_widget *widget;
fz_matrix ctm;
float zoom;
int count;
rectFClass = (*env)->FindClass(env, "android/graphics/RectF");
if (rectFClass == NULL) return NULL;
ctor = (*env)->GetMethodID(env, rectFClass, "<init>", "(FFFF)V");
if (ctor == NULL) return NULL;
Java_com_artifex_mupdf_MuPDFCore_gotoPageInternal(env, thiz, pageNumber);
if (currentPageNumber == -1 || currentPage == NULL)
return NULL;
idoc = fz_interact(doc);
if (idoc == NULL)
return NULL;
zoom = resolution / 72;
ctm = fz_scale(zoom, zoom);
count = 0;
for (widget = fz_first_widget(idoc, currentPage); widget; widget = fz_next_widget(idoc, widget))
count ++;
arr = (*env)->NewObjectArray(env, count, rectFClass, NULL);
if (arr == NULL) return NULL;
count = 0;
for (widget = fz_first_widget(idoc, currentPage); widget; widget = fz_next_widget(idoc, widget))
{
fz_rect rect = fz_transform_rect(ctm, *fz_widget_bbox(widget));
rectF = (*env)->NewObject(env, rectFClass, ctor,
(float)rect.x0, (float)rect.y0, (float)rect.x1, (float)rect.y1);
if (rectF == NULL) return NULL;
(*env)->SetObjectArrayElement(env, arr, count, rectF);
(*env)->DeleteLocalRef(env, rectF);
count ++;
}
return arr;
}
JNIEXPORT int JNICALL
Java_com_artifex_mupdf_MuPDFCore_getPageLink(JNIEnv * env, jobject thiz, int pageNumber, float x, float y)
{
fz_matrix ctm;
float zoom;
fz_link *link;
fz_point p;
Java_com_artifex_mupdf_MuPDFCore_gotoPageInternal(env, thiz, pageNumber);
if (currentPageNumber == -1 || currentPage == NULL)
return -1;
p.x = x;
p.y = y;
/* Ultimately we should probably return a pointer to a java structure
* with the link details in, but for now, page number will suffice.
*/
zoom = resolution / 72;
ctm = fz_scale(zoom, zoom);
ctm = fz_invert_matrix(ctm);
p = fz_transform_point(ctm, p);
for (link = fz_load_links(doc, currentPage); link; link = link->next)
{
if (p.x >= link->rect.x0 && p.x <= link->rect.x1)
if (p.y >= link->rect.y0 && p.y <= link->rect.y1)
break;
}
if (link == NULL)
return -1;
if (link->dest.kind == FZ_LINK_URI)
{
//gotouri(link->dest.ld.uri.uri);
return -1;
}
else if (link->dest.kind == FZ_LINK_GOTO)
return link->dest.ld.gotor.page;
return -1;
}
JNIEXPORT int JNICALL
Java_com_artifex_mupdf_MuPDFCore_passClickEventInternal(JNIEnv * env, jobject thiz, int pageNumber, float x, float y)
{
fz_matrix ctm;
fz_interactive *idoc = fz_interact(doc);
float zoom;
fz_point p;
fz_ui_event event;
int changed = 0;
if (idoc == NULL)
return 0;
Java_com_artifex_mupdf_MuPDFCore_gotoPageInternal(env, thiz, pageNumber);
if (currentPageNumber == -1 || currentPage == NULL)
return 0;
p.x = x;
p.y = y;
/* Ultimately we should probably return a pointer to a java structure
* with the link details in, but for now, page number will suffice.
*/
zoom = resolution / 72;
ctm = fz_scale(zoom, zoom);
ctm = fz_invert_matrix(ctm);
p = fz_transform_point(ctm, p);
fz_try(ctx)
{
event.etype = FZ_EVENT_TYPE_POINTER;
event.event.pointer.pt = p;
event.event.pointer.ptype = FZ_POINTER_DOWN;
changed = fz_pass_event(idoc, currentPage, &event);
event.event.pointer.ptype = FZ_POINTER_UP;
changed |= fz_pass_event(idoc, currentPage, &event);
}
fz_catch(ctx)
{
LOGE("passClickEvent: %s", ctx->error->message);
}
return changed;
}
JNIEXPORT jstring JNICALL
Java_com_artifex_mupdf_MuPDFCore_getFocusedWidgetTextInternal(JNIEnv * env, jobject thiz)
{
char *text = "";
fz_try(ctx)
{
fz_interactive *idoc = fz_interact(doc);
if (idoc)
{
fz_widget *focus = fz_focused_widget(idoc);
if (focus)
text = fz_text_widget_text(idoc, focus);
}
}
fz_catch(ctx)
{
LOGE("getFocusedWidgetText failed: %s", ctx->error->message);
}
return (*env)->NewStringUTF(env, text);
}
JNIEXPORT int JNICALL
Java_com_artifex_mupdf_MuPDFCore_setFocusedWidgetTextInternal(JNIEnv * env, jobject thiz, jstring jtext)
{
const char *text;
int result = 0;
text = (*env)->GetStringUTFChars(env, jtext, NULL);
if (text == NULL)
{
LOGE("Failed to get text");
return 0;
}
fz_try(ctx)
{
fz_interactive *idoc = fz_interact(doc);
if (idoc)
{
fz_widget *focus = fz_focused_widget(idoc);
if (focus)
result = fz_text_widget_set_text(idoc, focus, text);
}
}
fz_catch(ctx)
{
LOGE("setFocusedWidgetText failed: %s", ctx->error->message);
}
(*env)->ReleaseStringUTFChars(env, jtext, text);
return result;
}
JNIEXPORT int JNICALL
Java_com_artifex_mupdf_MuPDFCore_getFocusedWidgetTypeInternal(JNIEnv * env, jobject thiz)
{
fz_interactive *idoc = fz_interact(doc);
fz_widget *focus;
if (idoc == NULL)
return NONE;
focus = fz_focused_widget(idoc);
if (focus == NULL)
return NONE;
switch (fz_widget_get_type(focus))
{
case FZ_WIDGET_TYPE_TEXT: return TEXT;
case FZ_WIDGET_TYPE_LISTBOX: return LISTBOX;
case FZ_WIDGET_TYPE_COMBOBOX: return COMBOBOX;
}
return NONE;
}
|