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
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
|
/* poppler-page.cc: qt interface to poppler
* Copyright (C) 2005, Net Integration Technologies, Inc.
* Copyright (C) 2005, Brad Hards <bradh@frogmouth.net>
* Copyright (C) 2005-2011, Albert Astals Cid <aacid@kde.org>
* Copyright (C) 2005, Stefan Kebekus <stefan.kebekus@math.uni-koeln.de>
* Copyright (C) 2006-2011, Pino Toscano <pino@kde.org>
* Copyright (C) 2008 Carlos Garcia Campos <carlosgc@gnome.org>
* Copyright (C) 2009 Shawn Rutledge <shawn.t.rutledge@gmail.com>
* Copyright (C) 2010, 2012, Guillermo Amaral <gamaral@kdab.com>
* Copyright (C) 2010 Suzuki Toshiya <mpsuzuki@hiroshima-u.ac.jp>
* Copyright (C) 2010 Matthias Fauconneau <matthias.fauconneau@gmail.com>
* Copyright (C) 2010 Hib Eris <hib@hiberis.nl>
* Copyright (C) 2012 Tobias Koenig <tokoe@kdab.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <poppler-qt4.h>
#include <QtCore/QHash>
#include <QtCore/QMap>
#include <QtCore/QVarLengthArray>
#include <QtGui/QImage>
#include <QtGui/QPainter>
#include <config.h>
#include <PDFDoc.h>
#include <Catalog.h>
#include <Form.h>
#include <ErrorCodes.h>
#include <TextOutputDev.h>
#include <Annot.h>
#include <Link.h>
#include <FileSpec.h>
#include <ArthurOutputDev.h>
#include <Rendition.h>
#if defined(HAVE_SPLASH)
#include <SplashOutputDev.h>
#include <splash/SplashBitmap.h>
#endif
#include "poppler-private.h"
#include "poppler-page-transition-private.h"
#include "poppler-page-private.h"
#include "poppler-link-extractor-private.h"
#include "poppler-annotation-helper.h"
#include "poppler-annotation-private.h"
#include "poppler-form.h"
#include "poppler-media.h"
#include "poppler-streamsequentialdevice-private.h"
namespace Poppler {
class DummyAnnotation : public Annotation
{
public:
DummyAnnotation()
: Annotation( *new AnnotationPrivate() )
{
}
virtual SubType subType() const { return A_BASE; }
};
Link* PageData::convertLinkActionToLink(::LinkAction * a, const QRectF &linkArea)
{
return convertLinkActionToLink(a, parentDoc, linkArea);
}
Link* PageData::convertLinkActionToLink(::LinkAction * a, DocumentData *parentDoc, const QRectF &linkArea)
{
if ( !a )
return NULL;
Link * popplerLink = NULL;
switch ( a->getKind() )
{
case actionGoTo:
{
LinkGoTo * g = (LinkGoTo *) a;
const LinkDestinationData ldd( g->getDest(), g->getNamedDest(), parentDoc, false );
// create link: no ext file, namedDest, object pointer
popplerLink = new LinkGoto( linkArea, QString::null, LinkDestination( ldd ) );
}
break;
case actionGoToR:
{
LinkGoToR * g = (LinkGoToR *) a;
// copy link file
const QString fileName = UnicodeParsedString( g->getFileName() );
const LinkDestinationData ldd( g->getDest(), g->getNamedDest(), parentDoc, !fileName.isEmpty() );
// ceate link: fileName, namedDest, object pointer
popplerLink = new LinkGoto( linkArea, fileName, LinkDestination( ldd ) );
}
break;
case actionLaunch:
{
LinkLaunch * e = (LinkLaunch *)a;
GooString * p = e->getParams();
popplerLink = new LinkExecute( linkArea, e->getFileName()->getCString(), p ? p->getCString() : 0 );
}
break;
case actionNamed:
{
const char * name = ((LinkNamed *)a)->getName()->getCString();
if ( !strcmp( name, "NextPage" ) )
popplerLink = new LinkAction( linkArea, LinkAction::PageNext );
else if ( !strcmp( name, "PrevPage" ) )
popplerLink = new LinkAction( linkArea, LinkAction::PagePrev );
else if ( !strcmp( name, "FirstPage" ) )
popplerLink = new LinkAction( linkArea, LinkAction::PageFirst );
else if ( !strcmp( name, "LastPage" ) )
popplerLink = new LinkAction( linkArea, LinkAction::PageLast );
else if ( !strcmp( name, "GoBack" ) )
popplerLink = new LinkAction( linkArea, LinkAction::HistoryBack );
else if ( !strcmp( name, "GoForward" ) )
popplerLink = new LinkAction( linkArea, LinkAction::HistoryForward );
else if ( !strcmp( name, "Quit" ) )
popplerLink = new LinkAction( linkArea, LinkAction::Quit );
else if ( !strcmp( name, "GoToPage" ) )
popplerLink = new LinkAction( linkArea, LinkAction::GoToPage );
else if ( !strcmp( name, "Find" ) )
popplerLink = new LinkAction( linkArea, LinkAction::Find );
else if ( !strcmp( name, "FullScreen" ) )
popplerLink = new LinkAction( linkArea, LinkAction::Presentation );
else if ( !strcmp( name, "Print" ) )
popplerLink = new LinkAction( linkArea, LinkAction::Print );
else if ( !strcmp( name, "Close" ) )
{
// acroread closes the document always, doesnt care whether
// its presentation mode or not
// popplerLink = new LinkAction( linkArea, LinkAction::EndPresentation );
popplerLink = new LinkAction( linkArea, LinkAction::Close );
}
else
{
// TODO
}
}
break;
case actionURI:
{
popplerLink = new LinkBrowse( linkArea, ((LinkURI *)a)->getURI()->getCString() );
}
break;
case actionSound:
{
::LinkSound *ls = (::LinkSound *)a;
popplerLink = new LinkSound( linkArea, ls->getVolume(), ls->getSynchronous(), ls->getRepeat(), ls->getMix(), new SoundObject( ls->getSound() ) );
}
break;
case actionJavaScript:
{
::LinkJavaScript *ljs = (::LinkJavaScript *)a;
popplerLink = new LinkJavaScript( linkArea, UnicodeParsedString(ljs->getScript()) );
}
break;
case actionMovie:
{
::LinkMovie *lm = (::LinkMovie *)a;
const QString title = ( lm->hasAnnotTitle() ? UnicodeParsedString( lm->getAnnotTitle() ) : QString() );
Ref reference;
reference.num = reference.gen = -1;
if ( lm->hasAnnotRef() )
reference = *lm->getAnnotRef();
LinkMovie::Operation operation = LinkMovie::Play;
switch ( lm->getOperation() )
{
case ::LinkMovie::operationTypePlay:
operation = LinkMovie::Play;
break;
case ::LinkMovie::operationTypePause:
operation = LinkMovie::Pause;
break;
case ::LinkMovie::operationTypeResume:
operation = LinkMovie::Resume;
break;
case ::LinkMovie::operationTypeStop:
operation = LinkMovie::Stop;
break;
};
popplerLink = new LinkMovie( linkArea, operation, title, reference );
}
break;
case actionRendition:
{
::LinkRendition *lrn = (::LinkRendition *)a;
popplerLink = new LinkRendition( linkArea, lrn->getMedia() );
}
break;
case actionUnknown:
break;
}
return popplerLink;
}
Page::Page(DocumentData *doc, int index) {
m_page = new PageData();
m_page->index = index;
m_page->parentDoc = doc;
m_page->page = doc->doc->getPage(m_page->index + 1);
m_page->transition = 0;
}
Page::~Page()
{
delete m_page->transition;
delete m_page;
}
QImage Page::renderToImage(double xres, double yres, int x, int y, int w, int h, Rotation rotate) const
{
int rotation = (int)rotate * 90;
QImage img;
switch(m_page->parentDoc->m_backend)
{
case Poppler::Document::SplashBackend:
{
#if defined(HAVE_SPLASH)
SplashOutputDev *splash_output = static_cast<SplashOutputDev *>(m_page->parentDoc->getOutputDev());
m_page->parentDoc->doc->displayPageSlice(splash_output, m_page->index + 1, xres, yres,
rotation, false, true, false, x, y, w, h);
SplashBitmap *bitmap = splash_output->getBitmap();
int bw = bitmap->getWidth();
int bh = bitmap->getHeight();
SplashColorPtr dataPtr = splash_output->getBitmap()->getDataPtr();
if (QSysInfo::BigEndian == QSysInfo::ByteOrder)
{
uchar c;
int count = bw * bh * 4;
for (int k = 0; k < count; k += 4)
{
c = dataPtr[k];
dataPtr[k] = dataPtr[k+3];
dataPtr[k+3] = c;
c = dataPtr[k+1];
dataPtr[k+1] = dataPtr[k+2];
dataPtr[k+2] = c;
}
}
// construct a qimage SHARING the raw bitmap data in memory
QImage tmpimg( dataPtr, bw, bh, QImage::Format_ARGB32 );
img = tmpimg.copy();
// unload underlying xpdf bitmap
splash_output->startPage( 0, NULL );
#endif
break;
}
case Poppler::Document::ArthurBackend:
{
QSize size = pageSize();
QImage tmpimg(w == -1 ? qRound( size.width() * xres / 72.0 ) : w, h == -1 ? qRound( size.height() * yres / 72.0 ) : h, QImage::Format_ARGB32);
QPainter painter(&tmpimg);
renderToPainter(&painter, xres, yres, x, y, w, h, rotate, DontSaveAndRestore);
painter.end();
img = tmpimg;
break;
}
}
return img;
}
bool Page::renderToPainter(QPainter* painter, double xres, double yres, int x, int y, int w, int h, Rotation rotate, PainterFlags flags) const
{
if (!painter)
return false;
switch(m_page->parentDoc->m_backend)
{
case Poppler::Document::SplashBackend:
return false;
case Poppler::Document::ArthurBackend:
{
const bool savePainter = !(flags & DontSaveAndRestore);
if (savePainter)
painter->save();
if (m_page->parentDoc->m_hints & Document::Antialiasing)
painter->setRenderHint(QPainter::Antialiasing);
if (m_page->parentDoc->m_hints & Document::TextAntialiasing)
painter->setRenderHint(QPainter::TextAntialiasing);
painter->translate(x == -1 ? 0 : -x, y == -1 ? 0 : -y);
ArthurOutputDev arthur_output(painter);
arthur_output.startDoc(m_page->parentDoc->doc->getXRef());
m_page->parentDoc->doc->displayPageSlice(&arthur_output,
m_page->index + 1,
xres,
yres,
(int)rotate * 90,
false,
true,
false,
x,
y,
w,
h);
if (savePainter)
painter->restore();
return true;
}
}
return false;
}
QImage Page::thumbnail() const
{
unsigned char* data = 0;
int w = 0;
int h = 0;
int rowstride = 0;
GBool r = m_page->page->loadThumb(&data, &w, &h, &rowstride);
QImage ret;
if (r)
{
// first construct a temporary image with the data got,
// then force a copy of it so we can free the raw thumbnail data
ret = QImage(data, w, h, rowstride, QImage::Format_RGB888).copy();
gfree(data);
}
return ret;
}
QString Page::text(const QRectF &r, TextLayout textLayout) const
{
TextOutputDev *output_dev;
GooString *s;
PDFRectangle *rect;
QString result;
const GBool rawOrder = textLayout == RawOrderLayout;
output_dev = new TextOutputDev(0, gFalse, 0, rawOrder, gFalse);
m_page->parentDoc->doc->displayPageSlice(output_dev, m_page->index + 1, 72, 72,
0, false, true, false, -1, -1, -1, -1);
if (r.isNull())
{
rect = m_page->page->getCropBox();
s = output_dev->getText(rect->x1, rect->y1, rect->x2, rect->y2);
}
else
{
s = output_dev->getText(r.left(), r.top(), r.right(), r.bottom());
}
result = QString::fromUtf8(s->getCString());
delete output_dev;
delete s;
return result;
}
QString Page::text(const QRectF &r) const
{
return text(r, PhysicalLayout);
}
bool Page::search(const QString &text, double &sLeft, double &sTop, double &sRight, double &sBottom, SearchDirection direction, SearchMode caseSensitive, Rotation rotate) const
{
const QChar * str = text.unicode();
int len = text.length();
QVector<Unicode> u(len);
for (int i = 0; i < len; ++i) u[i] = str[i].unicode();
GBool sCase;
if (caseSensitive == CaseSensitive) sCase = gTrue;
else sCase = gFalse;
bool found = false;
int rotation = (int)rotate * 90;
// fetch ourselves a textpage
TextOutputDev td(NULL, gTrue, 0, gFalse, gFalse);
m_page->parentDoc->doc->displayPage( &td, m_page->index + 1, 72, 72, rotation, false, true, false );
TextPage *textPage=td.takeText();
if (direction == FromTop)
found = textPage->findText( u.data(), len,
gTrue, gTrue, gFalse, gFalse, sCase, gFalse, gFalse, &sLeft, &sTop, &sRight, &sBottom );
else if ( direction == NextResult )
found = textPage->findText( u.data(), len,
gFalse, gTrue, gTrue, gFalse, sCase, gFalse, gFalse, &sLeft, &sTop, &sRight, &sBottom );
else if ( direction == PreviousResult )
found = textPage->findText( u.data(), len,
gFalse, gTrue, gTrue, gFalse, sCase, gTrue, gFalse, &sLeft, &sTop, &sRight, &sBottom );
textPage->decRefCnt();
return found;
}
bool Page::search(const QString &text, QRectF &rect, SearchDirection direction, SearchMode caseSensitive, Rotation rotate) const
{
double sLeft, sTop, sRight, sBottom;
sLeft = rect.left();
sTop = rect.top();
sRight = rect.right();
sBottom = rect.bottom();
bool found = search(text, sLeft, sTop, sRight, sBottom, direction, caseSensitive, rotate);
rect.setLeft( sLeft );
rect.setTop( sTop );
rect.setRight( sRight );
rect.setBottom( sBottom );
return found;
}
QList<TextBox*> Page::textList(Rotation rotate) const
{
TextOutputDev *output_dev;
QList<TextBox*> output_list;
output_dev = new TextOutputDev(0, gFalse, 0, gFalse, gFalse);
int rotation = (int)rotate * 90;
m_page->parentDoc->doc->displayPageSlice(output_dev, m_page->index + 1, 72, 72,
rotation, false, false, false, -1, -1, -1, -1);
TextWordList *word_list = output_dev->makeWordList();
if (!word_list) {
delete output_dev;
return output_list;
}
QHash<TextWord *, TextBox*> wordBoxMap;
for (int i = 0; i < word_list->getLength(); i++) {
TextWord *word = word_list->get(i);
GooString *gooWord = word->getText();
QString string = QString::fromUtf8(gooWord->getCString());
delete gooWord;
double xMin, yMin, xMax, yMax;
word->getBBox(&xMin, &yMin, &xMax, &yMax);
TextBox* text_box = new TextBox(string, QRectF(xMin, yMin, xMax-xMin, yMax-yMin));
text_box->m_data->hasSpaceAfter = word->hasSpaceAfter() == gTrue;
text_box->m_data->charBBoxes.reserve(word->getLength());
for (int j = 0; j < word->getLength(); ++j)
{
word->getCharBBox(j, &xMin, &yMin, &xMax, &yMax);
text_box->m_data->charBBoxes.append(QRectF(xMin, yMin, xMax-xMin, yMax-yMin));
}
wordBoxMap.insert(word, text_box);
output_list.append(text_box);
}
for (int i = 0; i < word_list->getLength(); i++) {
TextWord *word = word_list->get(i);
TextBox* text_box = wordBoxMap.value(word);
text_box->m_data->nextWord = wordBoxMap.value(word->nextWord());
}
delete word_list;
delete output_dev;
return output_list;
}
PageTransition *Page::transition() const
{
if (!m_page->transition) {
Object o;
PageTransitionParams params;
params.dictObj = m_page->page->getTrans(&o);
if (params.dictObj->isDict()) m_page->transition = new PageTransition(params);
o.free();
}
return m_page->transition;
}
Link *Page::action( PageAction act ) const
{
if ( act == Page::Opening || act == Page::Closing )
{
Object o;
m_page->page->getActions(&o);
if (!o.isDict())
{
o.free();
return 0;
}
Dict *dict = o.getDict();
Object o2;
const char *key = act == Page::Opening ? "O" : "C";
dict->lookup((char*)key, &o2);
::LinkAction *lact = ::LinkAction::parseAction(&o2, m_page->parentDoc->doc->getCatalog()->getBaseURI() );
o2.free();
o.free();
Link *popplerLink = NULL;
if (lact != NULL)
{
popplerLink = m_page->convertLinkActionToLink(lact, QRectF());
delete lact;
}
return popplerLink;
}
return 0;
}
QSizeF Page::pageSizeF() const
{
Page::Orientation orient = orientation();
if ( ( Page::Landscape == orient ) || (Page::Seascape == orient ) ) {
return QSizeF( m_page->page->getCropHeight(), m_page->page->getCropWidth() );
} else {
return QSizeF( m_page->page->getCropWidth(), m_page->page->getCropHeight() );
}
}
QSize Page::pageSize() const
{
return pageSizeF().toSize();
}
Page::Orientation Page::orientation() const
{
const int rotation = m_page->page->getRotate();
switch (rotation) {
case 90:
return Page::Landscape;
break;
case 180:
return Page::UpsideDown;
break;
case 270:
return Page::Seascape;
break;
default:
return Page::Portrait;
}
}
void Page::defaultCTM(double *CTM, double dpiX, double dpiY, int rotate, bool upsideDown)
{
m_page->page->getDefaultCTM(CTM, dpiX, dpiY, rotate, gFalse, upsideDown);
}
QList<Link*> Page::links() const
{
LinkExtractorOutputDev link_dev(m_page);
m_page->parentDoc->doc->processLinks(&link_dev, m_page->index + 1);
QList<Link*> popplerLinks = link_dev.links();
return popplerLinks;
}
QList<Annotation*> Page::annotations() const
{
::Page *pdfPage = m_page->page;
Annots* annots = pdfPage->getAnnots();
const uint numAnnotations = annots->getNumAnnots();
if ( numAnnotations == 0 )
{
return QList<Annotation*>();
}
// ID to Annotation/PopupWindow maps
QMap< int, Annotation * > annotationsMap;
QHash< AnnotPopup *, PopupWindow * > popupsMap;
// lists of Windows and Revisions that needs resolution
QLinkedList< ResolveRevision > resolveRevList;
QLinkedList< ResolveWindow > resolvePopList;
QLinkedList< PostProcessText > ppTextList;
// build a normalized transform matrix for this page at 100% scale
GfxState * gfxState = new GfxState( 72.0, 72.0, pdfPage->getCropBox(), pdfPage->getRotate(), gTrue );
double * gfxCTM = gfxState->getCTM();
double MTX[6];
for ( int i = 0; i < 6; i+=2 )
{
MTX[i] = gfxCTM[i] / pdfPage->getCropWidth();
MTX[i+1] = gfxCTM[i+1] / pdfPage->getCropHeight();
}
delete gfxState;
/** 1 - PARSE ALL ANNOTATIONS AND POPUPS FROM THE PAGE */
for ( uint j = 0; j < numAnnotations; j++ )
{
// get the j-th annotation
Annot * ann = annots->getAnnot( j );
if ( !ann )
{
qDebug() << "Annot" << j << "is null.";
continue;
}
Annotation * annotation = 0;
int annotID = ann->getId();
AnnotMarkup * markupann = dynamic_cast< AnnotMarkup * >( ann );
bool addToPage = true; // Popup annots are added to custom queue
/** 1.1. GET Subtype */
Annot::AnnotSubtype subType = ann->getType();
/** 1.2. CREATE Annotation / PopupWindow and PARSE specific params */
switch ( subType )
{
case Annot::typeText:
{
// parse TextAnnotation params
AnnotText * textann = static_cast< AnnotText * >( ann );
TextAnnotation * t = new TextAnnotation();
annotation = t;
// -> textType
t->setTextType( TextAnnotation::Linked );
// -> textIcon
t->setTextIcon( QString::fromLatin1( textann->getIcon()->getCString() ) );
// request for postprocessing window geometry
PostProcessText request;
request.textAnnotation = t;
request.opened = textann->getOpen();
ppTextList.append( request );
break;
}
case Annot::typeFreeText:
{
// parse TextAnnotation params
AnnotFreeText * textann = static_cast< AnnotFreeText * >( ann );
TextAnnotation * t = new TextAnnotation();
annotation = t;
// -> textType
t->setTextType( TextAnnotation::InPlace );
#if 0
// -> textFont
QString textFormat;
XPDFReader::lookupString( annotDict, "DA", textFormat );
// TODO, fill t->textFont using textFormat if not empty
#endif
// -> inplaceAlign
t->setInplaceAlign( textann->getQuadding() );
// -> inplaceText (simple)
QString tmpstring;
GooString *styleString = textann->getStyleString();
if ( styleString )
tmpstring = UnicodeParsedString( styleString );
#if 0
// -> inplaceText (complex override)
XPDFReader::lookupString( annotDict, "RC", tmpstring );
#endif
t->setInplaceText( tmpstring );
// -> inplaceCallout
AnnotCalloutLine *callout = textann->getCalloutLine();
if ( callout )
{
QPointF tmppoint;
XPDFReader::transform( MTX, callout->getX1(), callout->getY1(), tmppoint );
t->setCalloutPoint( 0, tmppoint );
XPDFReader::transform( MTX, callout->getX2(), callout->getY2(), tmppoint );
t->setCalloutPoint( 1, tmppoint );
if ( AnnotCalloutMultiLine * callout_v6 = dynamic_cast< AnnotCalloutMultiLine * >( callout ) )
{
XPDFReader::transform( MTX, callout_v6->getX3(), callout_v6->getY3(), tmppoint );
t->setCalloutPoint( 2, tmppoint );
}
}
// -> inplaceIntent
t->setInplaceIntent( (TextAnnotation::InplaceIntent)textann->getIntent() );
AnnotBorderEffect *border_effect = textann->getBorderEffect();
if ( border_effect )
{
// -> style.effect
t->style.effect = (Annotation::LineEffect)border_effect->getEffectType();
// -> style.effectIntensity
t->style.effectIntensity = (int)border_effect->getIntensity();
}
break;
}
case Annot::typeLine:
{
// parse LineAnnotation params
AnnotLine * lineann = static_cast< AnnotLine * >( ann );
LineAnnotation * l = new LineAnnotation();
annotation = l;
// -> linePoints
QLinkedList<QPointF> linePoints;
QPointF p;
XPDFReader::transform( MTX, lineann->getX1(), lineann->getY1(), p );
linePoints.push_back( p );
XPDFReader::transform( MTX, lineann->getX2(), lineann->getY2(), p );
linePoints.push_back( p );
l->setLinePoints( linePoints );
// -> lineStartStyle
l->setLineStartStyle( (LineAnnotation::TermStyle)lineann->getStartStyle() );
// -> lineEndStyle
l->setLineEndStyle( (LineAnnotation::TermStyle)lineann->getEndStyle() );
// -> lineClosed
l->setLineClosed( false );
// -> lineInnerColor
l->setLineInnerColor( convertAnnotColor( lineann->getInteriorColor() ) );
// -> lineLeadingFwdPt
l->setLineLeadingForwardPoint( lineann->getLeaderLineLength() );
// -> lineLeadingBackPt
l->setLineLeadingBackPoint( lineann->getLeaderLineExtension() );
// -> lineShowCaption
l->setLineShowCaption( lineann->getCaption() );
// -> lineIntent
l->setLineIntent( (LineAnnotation::LineIntent)( lineann->getIntent() + 1 ) );
break;
}
case Annot::typePolygon:
case Annot::typePolyLine:
{
// parse LineAnnotation params
AnnotPolygon * polyann = static_cast< AnnotPolygon * >( ann );
LineAnnotation * l = new LineAnnotation();
annotation = l;
// -> polyPoints
QLinkedList<QPointF> polyPoints;
AnnotPath * vertices = polyann->getVertices();
for ( int i = 0; i < vertices->getCoordsLength(); ++i )
{
QPointF p;
XPDFReader::transform( MTX, vertices->getX( i ), vertices->getY( i ), p );
polyPoints.push_back( p );
}
l->setLinePoints( polyPoints );
// -> polyStartStyle
l->setLineStartStyle( (LineAnnotation::TermStyle)polyann->getStartStyle() );
// -> polyEndStyle
l->setLineEndStyle( (LineAnnotation::TermStyle)polyann->getEndStyle() );
// -> polyClosed
l->setLineClosed( subType == Annot::typePolygon );
// -> polyInnerColor
l->setLineInnerColor( convertAnnotColor( polyann->getInteriorColor() ) );
// -> polyIntent
switch ( polyann->getIntent() )
{
case AnnotPolygon::polygonCloud:
l->setLineIntent( LineAnnotation::PolygonCloud );
break;
case AnnotPolygon::polylineDimension:
case AnnotPolygon::polygonDimension:
l->setLineIntent( LineAnnotation::Dimension );
break;
}
break;
}
case Annot::typeSquare:
case Annot::typeCircle:
{
// parse GeomAnnotation params
AnnotGeometry * geomann = static_cast< AnnotGeometry * >( ann );
GeomAnnotation * g = new GeomAnnotation();
annotation = g;
// -> highlightType
if ( subType == Annot::typeSquare )
g->setGeomType( GeomAnnotation::InscribedSquare );
else if ( subType == Annot::typeCircle )
g->setGeomType( GeomAnnotation::InscribedCircle );
// -> geomInnerColor
g->setGeomInnerColor( convertAnnotColor( geomann->getInteriorColor() ) );
AnnotBorderEffect *border_effect = geomann->getBorderEffect();
if ( border_effect )
{
// -> style.effect
g->style.effect = (Annotation::LineEffect)border_effect->getEffectType();
// -> style.effectIntensity
g->style.effectIntensity = (int)border_effect->getIntensity();
}
// TODO RD
break;
}
case Annot::typeHighlight:
case Annot::typeUnderline:
case Annot::typeSquiggly:
case Annot::typeStrikeOut:
{
AnnotTextMarkup * hlann = static_cast< AnnotTextMarkup * >( ann );
HighlightAnnotation * h = new HighlightAnnotation();
annotation = h;
// -> highlightType
if ( subType == Annot::typeHighlight )
h->setHighlightType( HighlightAnnotation::Highlight );
else if ( subType == Annot::typeUnderline )
h->setHighlightType( HighlightAnnotation::Underline );
else if ( subType == Annot::typeSquiggly )
h->setHighlightType( HighlightAnnotation::Squiggly );
else if ( subType == Annot::typeStrikeOut )
h->setHighlightType( HighlightAnnotation::StrikeOut );
// -> highlightQuads
AnnotQuadrilaterals *hlquads = hlann->getQuadrilaterals();
if ( !hlquads || !hlquads->getQuadrilateralsLength() )
{
qDebug() << "Not enough quads for a Highlight annotation.";
delete annotation;
continue;
}
QList< HighlightAnnotation::Quad > quads;
const int quadsCount = hlquads->getQuadrilateralsLength();
for ( int q = 0; q < quadsCount; ++q )
{
HighlightAnnotation::Quad quad;
XPDFReader::transform( MTX, hlquads->getX1( q ), hlquads->getY1( q ), quad.points[ 0 ] );
XPDFReader::transform( MTX, hlquads->getX2( q ), hlquads->getY2( q ), quad.points[ 1 ] );
XPDFReader::transform( MTX, hlquads->getX3( q ), hlquads->getY3( q ), quad.points[ 2 ] );
XPDFReader::transform( MTX, hlquads->getX4( q ), hlquads->getY4( q ), quad.points[ 3 ] );
// ### PDF1.6 specs says that point are in ccw order, but in fact
// points 3 and 4 are swapped in every PDF around!
QPointF tmpPoint = quad.points[ 2 ];
quad.points[ 2 ] = quad.points[ 3 ];
quad.points[ 3 ] = tmpPoint;
// initialize other properties and append quad
quad.capStart = true; // unlinked quads are always capped
quad.capEnd = true; // unlinked quads are always capped
quad.feather = 0.1; // default feather
quads.append( quad );
}
h->setHighlightQuads( quads );
break;
}
case Annot::typeStamp:
{
AnnotStamp * stampann = static_cast< AnnotStamp * >( ann );
StampAnnotation * s = new StampAnnotation();
annotation = s;
// -> stampIcon
s->setStampIconName( QString::fromLatin1( stampann->getIcon()->getCString() ) );
break;
}
case Annot::typeInk:
{
// parse InkAnnotation params
AnnotInk * inkann = static_cast< AnnotInk * >( ann );
InkAnnotation * k = new InkAnnotation();
annotation = k;
// -> inkPaths
AnnotPath ** paths = inkann->getInkList();
if ( !paths || !inkann->getInkListLength() )
{
qDebug() << "InkList not present for ink annot";
delete annotation;
continue;
}
QList< QLinkedList<QPointF> > inkPaths;
const int pathsNumber = inkann->getInkListLength();
for ( int m = 0; m < pathsNumber; m++ )
{
// transform each path in a list of normalized points ..
QLinkedList<QPointF> localList;
AnnotPath * path = paths[ m ];
const int pointsNumber = path ? path->getCoordsLength() : 0;
for ( int n = 0; n < pointsNumber; ++n )
{
// get the x,y numbers for current point
double x = path->getX( n );
double y = path->getY( n );
// add normalized point to localList
QPointF np;
XPDFReader::transform( MTX, x, y, np );
localList.push_back( np );
}
// ..and add it to the annotation
inkPaths.push_back( localList );
}
k->setInkPaths( inkPaths );
break;
}
case Annot::typePopup:
{
AnnotPopup * popupann = static_cast< AnnotPopup * >( ann );
// create PopupWindow and add it to the popupsMap
PopupWindow * popup = new PopupWindow();
popupsMap[ popupann ] = popup;
addToPage = false;
// get window specific properties if any
popup->shown = popupann->getOpen();
// no need to parse parent annotation id
//XPDFReader::lookupIntRef( annotDict, "Parent", popup->... );
// use the 'dummy annotation' for getting other parameters
popup->dummyAnnotation = new DummyAnnotation();
annotation = popup->dummyAnnotation;
break;
}
case Annot::typeLink:
{
// parse Link params
AnnotLink * linkann = static_cast< AnnotLink * >( ann );
LinkAnnotation * l = new LinkAnnotation();
annotation = l;
// -> hlMode
l->setLinkHighlightMode( (LinkAnnotation::HighlightMode)linkann->getLinkEffect() );
// -> link region
// TODO
// reading link action
if ( linkann->getAction() )
{
Link * popplerLink = m_page->convertLinkActionToLink( linkann->getAction(), QRectF() );
if ( popplerLink )
{
l->setLinkDestination( popplerLink );
}
}
break;
}
case Annot::typeCaret:
{
// parse CaretAnnotation params
AnnotCaret * caretann = static_cast< AnnotCaret * >( ann );
CaretAnnotation * c = new CaretAnnotation();
annotation = c;
// -> caretSymbol
c->setCaretSymbol( (CaretAnnotation::CaretSymbol)caretann->getSymbol() );
// TODO RD
break;
}
case Annot::typeFileAttachment:
{
AnnotFileAttachment * attachann = static_cast< AnnotFileAttachment * >( ann );
FileAttachmentAnnotation * f = new FileAttachmentAnnotation();
annotation = f;
// -> fileIcon
f->setFileIconName( QString::fromLatin1( attachann->getName()->getCString() ) );
// -> embeddedFile
FileSpec *filespec = new FileSpec( attachann->getFile() );
f->setEmbeddedFile( new EmbeddedFile( *new EmbeddedFileData( filespec ) ) );
break;
}
case Annot::typeSound:
{
AnnotSound * soundann = static_cast< AnnotSound * >( ann );
SoundAnnotation * s = new SoundAnnotation();
annotation = s;
// -> soundIcon
s->setSoundIconName( QString::fromLatin1( soundann->getName()->getCString() ) );
// -> sound
s->setSound( new SoundObject( soundann->getSound() ) );
break;
}
case Annot::typeMovie:
{
AnnotMovie * movieann = static_cast< AnnotMovie * >( ann );
MovieAnnotation * m = new MovieAnnotation();
annotation = m;
// -> movie
MovieObject *movie = new MovieObject( movieann );
m->setMovie( movie );
// -> movieTitle
GooString * movietitle = movieann->getTitle();
if ( movietitle )
{
m->setMovieTitle( QString::fromLatin1( movietitle->getCString() ) );
}
break;
}
case Annot::typeScreen:
{
AnnotScreen * screenann = static_cast< AnnotScreen * >( ann );
if (!screenann->getAction())
continue;
ScreenAnnotation * s = new ScreenAnnotation();
annotation = s;
// -> screen
s->setAction( static_cast<Poppler::LinkRendition *>(m_page->convertLinkActionToLink( screenann->getAction(), QRectF() ) ) );
// -> screenTitle
GooString * screentitle = screenann->getTitle();
if ( screentitle )
s->setScreenTitle( UnicodeParsedString( screentitle ) );
break;
}
// special case for ignoring unknwon annotations
case Annot::typeUnknown:
continue;
// handled as forms or some other way
case Annot::typeWidget:
continue;
default:
{
#define CASE_FOR_TYPE( thetype ) \
case Annot::type ## thetype: \
type = #thetype ; \
break;
QByteArray type;
switch ( subType )
{
CASE_FOR_TYPE( Screen )
CASE_FOR_TYPE( PrinterMark )
CASE_FOR_TYPE( TrapNet )
CASE_FOR_TYPE( Watermark )
CASE_FOR_TYPE( 3D )
default: type = QByteArray::number( subType );
}
// MISSING: Widget, Screen, PrinterMark, TrapNet, Watermark, 3D
qDebug() << "Annotation" << type.constData() << "not supported.";
continue;
#undef CASE_FOR_TYPE
}
}
/** 1.3. PARSE common parameters */
// -> boundary
PDFRectangle *boundary = ann->getRect();
// transform annotation rect to uniform coords
QPointF topLeft, bottomRight;
XPDFReader::transform( MTX, boundary->x1, boundary->y1, topLeft );
XPDFReader::transform( MTX, boundary->x2, boundary->y2, bottomRight );
QRectF boundaryRect;
boundaryRect.setTopLeft(topLeft);
boundaryRect.setBottomRight(bottomRight);
if ( boundaryRect.left() > boundaryRect.right() )
{
double aux = boundaryRect.left();
boundaryRect.setLeft( boundaryRect.right() );
boundaryRect.setRight(aux);
}
if ( boundaryRect.top() > boundaryRect.bottom() )
{
double aux = boundaryRect.top();
boundaryRect.setTop( boundaryRect.bottom() );
boundaryRect.setBottom(aux);
//annotation->rUnscaledWidth = (r[2] > r[0]) ? r[2] - r[0] : r[0] - r[2];
//annotation->rUnscaledHeight = (r[3] > r[1]) ? r[3] - r[1] : r[1] - r[3];
}
annotation->setBoundary( boundaryRect );
// -> PDF object reference
annotation->d_ptr->pdfObjectReference = ann->getRef();
// -> contents
annotation->setContents( UnicodeParsedString( ann->getContents() ) );
// -> uniqueName
annotation->setUniqueName( UnicodeParsedString( ann->getName() ) );
// -> modifyDate (and -> creationDate)
GooString *modDate = ann->getModified();
if ( modDate )
{
annotation->setModificationDate( convertDate( modDate->getCString() ) );
}
if ( annotation->creationDate().isNull() && !annotation->modificationDate().isNull() )
annotation->setCreationDate( annotation->modificationDate() );
// -> flags: set the external attribute since it's embedded on file
int annoflags = 0;
annoflags |= Annotation::External;
// -> flags
int flags = ann->getFlags();
if ( flags & Annot::flagHidden )
annoflags |= Annotation::Hidden;
if ( flags & Annot::flagNoZoom )
annoflags |= Annotation::FixedSize;
if ( flags & Annot::flagNoRotate )
annoflags |= Annotation::FixedRotation;
if ( !( flags & Annot::flagPrint ) )
annoflags |= Annotation::DenyPrint;
if ( flags & Annot::flagReadOnly )
annoflags |= (Annotation::DenyWrite | Annotation::DenyDelete);
if ( flags & Annot::flagLocked )
annoflags |= Annotation::DenyDelete;
if ( flags & Annot::flagToggleNoView )
annoflags |= Annotation::ToggleHidingOnMouse;
annotation->setFlags( annoflags );
// -> style
AnnotBorder *border = ann->getBorder();
if ( border )
{
if ( border->getType() == AnnotBorder::typeArray )
{
AnnotBorderArray * border_array = static_cast< AnnotBorderArray * >( border );
// -> style.xCorners
annotation->style.xCorners = border_array->getHorizontalCorner();
// -> style.yCorners
annotation->style.yCorners = border_array->getVerticalCorner();
}
// -> style.width
annotation->style.width = border->getWidth();
// -> style.style
annotation->style.style = (Annotation::LineStyle)( 1 << border->getStyle() );
#if 0
// -> style.marks and style.spaces
// TODO
Object dashArray;
bsObj.getDict()->lookup( "D", &dashArray );
if ( dashArray.isArray() )
{
int dashMarks = 3;
int dashSpaces = 0;
Object intObj;
dashArray.arrayGet( 0, &intObj );
if ( intObj.isInt() )
dashMarks = intObj.getInt();
intObj.free();
dashArray.arrayGet( 1, &intObj );
if ( intObj.isInt() )
dashSpaces = intObj.getInt();
intObj.free();
annotation->style.marks = dashMarks;
annotation->style.spaces = dashSpaces;
}
#endif
}
// -> style.color
annotation->style.color = convertAnnotColor( ann->getColor() );
/** 1.4. PARSE markup { common, Popup, Revision } parameters */
if ( markupann )
{
// -> creationDate
GooString *createDate = markupann->getDate();
if ( createDate )
{
annotation->setCreationDate( convertDate( createDate->getCString() ) );
}
// -> style.opacity
annotation->style.opacity = markupann->getOpacity();
// -> window.title and author
annotation->window.title = UnicodeParsedString( markupann->getLabel() );
annotation->setAuthor( annotation->window.title );
// -> window.summary
annotation->window.summary = UnicodeParsedString( markupann->getSubject() );
#if 0
// -> window.text
// TODO
XPDFReader::lookupString( annotDict, "RC", annotation->window.text );
#endif
// if a popup is referenced, schedule for resolving it later
AnnotPopup *popup = markupann->getPopup();
if ( popup )
{
ResolveWindow request;
request.popup = popup;
request.annotation = annotation;
resolvePopList.append( request );
}
// if an older version is referenced, schedule for reparenting
int parentID = markupann->getInReplyToID();
if ( parentID )
{
ResolveRevision request;
request.nextAnnotation = annotation;
request.nextAnnotationID = annotID;
request.prevAnnotationID = parentID;
// -> request.nextScope
request.nextScope = Annotation::Reply;
switch ( markupann->getReplyTo() )
{
case AnnotMarkup::replyTypeR:
request.nextScope = Annotation::Reply;
break;
case AnnotMarkup::replyTypeGroup:
request.nextScope = Annotation::Group;
break;
}
// -> revision.type (StateModel is deduced from type, not parsed)
request.nextType = Annotation::None;
if ( subType == Annot::typeText )
{
AnnotText * textann = static_cast< AnnotText * >( ann );
switch ( textann->getState() )
{
case AnnotText::stateMarked:
request.nextType = Annotation::Marked;
break;
case AnnotText::stateUnmarked:
request.nextType = Annotation::Unmarked;
break;
case AnnotText::stateAccepted:
request.nextType = Annotation::Accepted;
break;
case AnnotText::stateRejected:
request.nextType = Annotation::Rejected;
break;
case AnnotText::stateCancelled:
request.nextType = Annotation::Cancelled;
break;
case AnnotText::stateCompleted:
request.nextType = Annotation::Completed;
break;
case AnnotText::stateNone:
case AnnotText::stateUnknown:
;
}
}
// schedule for later reparenting
resolveRevList.append( request );
}
}
/** 1.5. ADD ANNOTATION to the annotationsMap */
if ( addToPage )
{
if ( annotationsMap.contains( annotID ) )
qDebug() << "Clash for annotations with ID:" << annotID;
annotationsMap[ annotID ] = annotation;
}
} // end Annotation/PopupWindow parsing loop
/** 2 - RESOLVE POPUPS (popup.* -> annotation.window) */
if ( !resolvePopList.isEmpty() && !popupsMap.isEmpty() )
{
QLinkedList< ResolveWindow >::iterator it = resolvePopList.begin(),
end = resolvePopList.end();
for ( ; it != end; ++it )
{
const ResolveWindow & request = *it;
if ( !popupsMap.contains( request.popup ) )
// warn aboud problems in popup resolving logic
qDebug() << "Cannot resolve popup"
<< request.popup << ".";
else
{
// set annotation's window properties taking ones from popup
PopupWindow * pop = popupsMap[ request.popup ];
Annotation * pa = pop->dummyAnnotation;
Annotation::Window & w = request.annotation->window;
// transfer properties to Annotation's window
w.flags = pa->flags() & (Annotation::Hidden |
Annotation::FixedSize | Annotation::FixedRotation);
if ( !pop->shown )
w.flags |= Annotation::Hidden;
w.topLeft.setX(pa->boundary().left());
w.topLeft.setY(pa->boundary().top());
w.width = (int)( pa->boundary().right() - pa->boundary().left() );
w.height = (int)( pa->boundary().bottom() - pa->boundary().top() );
}
}
// clear data
QHash< AnnotPopup *, PopupWindow * >::Iterator dIt = popupsMap.begin(), dEnd = popupsMap.end();
for ( ; dIt != dEnd; ++dIt )
{
PopupWindow * p = dIt.value();
delete p->dummyAnnotation;
delete p;
}
}
/** 3 - RESOLVE REVISIONS (parent.revisions.append( children )) */
if ( !resolveRevList.isEmpty() )
{
// append children to parents
QVarLengthArray< int > excludeIDs( resolveRevList.count() ); // can't even reach this size
int excludeIndex = 0; // index in excludeIDs array
QLinkedList< ResolveRevision >::iterator it = resolveRevList.begin(), end = resolveRevList.end();
for ( ; it != end; ++it )
{
const ResolveRevision & request = *it;
int parentID = request.prevAnnotationID;
if ( !annotationsMap.contains( parentID ) )
// warn about problems in reparenting logic
qDebug() << "Cannot reparent annotation to"
<< parentID << ".";
else
{
// compile and add a Revision structure to the parent annotation
Annotation::Revision childRevision;
childRevision.annotation = request.nextAnnotation;
childRevision.scope = request.nextScope;
childRevision.type = request.nextType;
annotationsMap[ parentID ]->revisions().append( childRevision );
// exclude child annotation from being rooted in page
excludeIDs[ excludeIndex++ ] = request.nextAnnotationID;
}
}
// prevent children from being attached to page as roots
for ( int i = 0; i < excludeIndex; i++ )
annotationsMap.remove( excludeIDs[ i ] );
}
/** 4 - POSTPROCESS TextAnnotations (when window geom is embedded) */
if ( !ppTextList.isEmpty() )
{
QLinkedList< PostProcessText >::const_iterator it = ppTextList.begin(), end = ppTextList.end();
for ( ; it != end; ++it )
{
const PostProcessText & request = *it;
Annotation::Window & window = request.textAnnotation->window;
// if not present, 'create' the window in-place over the annotation
if ( window.flags == -1 )
{
window.flags = 0;
QRectF geom = request.textAnnotation->boundary();
// initialize window geometry to annotation's one
window.width = (int)( geom.right() - geom.left() );
window.height = (int)( geom.bottom() - geom.top() );
window.topLeft.setX( geom.left() > 0.0 ? geom.left() : 0.0 );
window.topLeft.setY( geom.top() > 0.0 ? geom.top() : 0.0 );
}
// (pdf) if text is not 'opened', force window hiding. if the window
// was parsed from popup, the flag should already be set
if ( !request.opened && window.flags != -1 )
window.flags |= Annotation::Hidden;
}
}
/** 5 - finally RETURN ANNOTATIONS */
return annotationsMap.values();
}
QList<FormField*> Page::formFields() const
{
QList<FormField*> fields;
::Page *p = m_page->page;
::FormPageWidgets * form = p->getFormWidgets();
int formcount = form->getNumWidgets();
for (int i = 0; i < formcount; ++i)
{
::FormWidget *fm = form->getWidget(i);
FormField * ff = NULL;
switch (fm->getType())
{
case formButton:
{
ff = new FormFieldButton(m_page->parentDoc, p, static_cast<FormWidgetButton*>(fm));
}
break;
case formText:
{
ff = new FormFieldText(m_page->parentDoc, p, static_cast<FormWidgetText*>(fm));
}
break;
case formChoice:
{
ff = new FormFieldChoice(m_page->parentDoc, p, static_cast<FormWidgetChoice*>(fm));
}
break;
default: ;
}
if (ff)
fields.append(ff);
}
delete form;
return fields;
}
double Page::duration() const
{
return m_page->page->getDuration();
}
QString Page::label() const
{
GooString goo;
if (!m_page->parentDoc->doc->getCatalog()->indexToLabel(m_page->index, &goo))
return QString();
return UnicodeParsedString(&goo);
}
}
|