Spaces:
Running
Running
File size: 17,370 Bytes
5cee033 |
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 |
/* poppler-link.cc: qt interface to poppler
* Copyright (C) 2006-2007, 2013, 2016-2021, Albert Astals Cid
* Copyright (C) 2007-2008, Pino Toscano <[email protected]>
* Copyright (C) 2010 Hib Eris <[email protected]>
* Copyright (C) 2012, Tobias Koenig <[email protected]>
* Copyright (C) 2012, Guillermo A. Amaral B. <[email protected]>
* Copyright (C) 2018 Intevation GmbH <[email protected]>
* Copyright (C) 2018 Adam Reichold <[email protected]>
* Copyright (C) 2020 Oliver Sander <[email protected]>
* Adapting code from
* Copyright (C) 2004 by Enrico Ros <[email protected]>
*
* 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-qt5.h>
#include <poppler-link-private.h>
#include <poppler-private.h>
#include <poppler-media.h>
#include <QtCore/QStringList>
#include "poppler-annotation-private.h"
#include "Link.h"
#include "Rendition.h"
namespace Poppler {
class LinkDestinationPrivate : public QSharedData
{
public:
LinkDestinationPrivate();
LinkDestination::Kind kind; // destination type
QString name;
int pageNum; // page number
double left, bottom; // position
double right, top;
double zoom; // zoom factor
bool changeLeft : 1, changeTop : 1; // for destXYZ links, which position
bool changeZoom : 1; // components to change
};
LinkDestinationPrivate::LinkDestinationPrivate()
{
// sane defaults
kind = LinkDestination::destXYZ;
pageNum = 0;
left = 0;
bottom = 0;
right = 0;
top = 0;
zoom = 1;
changeLeft = true;
changeTop = true;
changeZoom = false;
}
LinkPrivate::~LinkPrivate()
{
qDeleteAll(nextLinks);
}
LinkOCGStatePrivate::~LinkOCGStatePrivate() = default;
LinkHidePrivate::~LinkHidePrivate() = default;
class LinkGotoPrivate : public LinkPrivate
{
public:
LinkGotoPrivate(const QRectF &area, const LinkDestination &dest);
~LinkGotoPrivate() override;
QString extFileName;
LinkDestination destination;
};
LinkGotoPrivate::LinkGotoPrivate(const QRectF &area, const LinkDestination &dest) : LinkPrivate(area), destination(dest) { }
LinkGotoPrivate::~LinkGotoPrivate() = default;
class LinkExecutePrivate : public LinkPrivate
{
public:
explicit LinkExecutePrivate(const QRectF &area);
~LinkExecutePrivate() override;
QString fileName;
QString parameters;
};
LinkExecutePrivate::LinkExecutePrivate(const QRectF &area) : LinkPrivate(area) { }
LinkExecutePrivate::~LinkExecutePrivate() = default;
class LinkBrowsePrivate : public LinkPrivate
{
public:
explicit LinkBrowsePrivate(const QRectF &area);
~LinkBrowsePrivate() override;
QString url;
};
LinkBrowsePrivate::LinkBrowsePrivate(const QRectF &area) : LinkPrivate(area) { }
LinkBrowsePrivate::~LinkBrowsePrivate() = default;
class LinkActionPrivate : public LinkPrivate
{
public:
explicit LinkActionPrivate(const QRectF &area);
~LinkActionPrivate() override;
LinkAction::ActionType type;
};
LinkActionPrivate::LinkActionPrivate(const QRectF &area) : LinkPrivate(area) { }
LinkActionPrivate::~LinkActionPrivate() = default;
class LinkSoundPrivate : public LinkPrivate
{
public:
explicit LinkSoundPrivate(const QRectF &area);
~LinkSoundPrivate() override;
double volume;
bool sync : 1;
bool repeat : 1;
bool mix : 1;
SoundObject *sound;
};
LinkSoundPrivate::LinkSoundPrivate(const QRectF &area) : LinkPrivate(area), sound(nullptr) { }
LinkSoundPrivate::~LinkSoundPrivate()
{
delete sound;
}
class LinkRenditionPrivate : public LinkPrivate
{
public:
explicit LinkRenditionPrivate(const QRectF &area, ::MediaRendition *rendition, ::LinkRendition::RenditionOperation operation, const QString &script, const Ref ref);
~LinkRenditionPrivate() override;
MediaRendition *rendition;
LinkRendition::RenditionAction action;
QString script;
Ref annotationReference;
};
LinkRenditionPrivate::LinkRenditionPrivate(const QRectF &area, ::MediaRendition *r, ::LinkRendition::RenditionOperation operation, const QString &javaScript, const Ref ref)
: LinkPrivate(area), rendition(r ? new MediaRendition(r) : nullptr), action(LinkRendition::PlayRendition), script(javaScript), annotationReference(ref)
{
switch (operation) {
case ::LinkRendition::NoRendition:
action = LinkRendition::NoRendition;
break;
case ::LinkRendition::PlayRendition:
action = LinkRendition::PlayRendition;
break;
case ::LinkRendition::StopRendition:
action = LinkRendition::StopRendition;
break;
case ::LinkRendition::PauseRendition:
action = LinkRendition::PauseRendition;
break;
case ::LinkRendition::ResumeRendition:
action = LinkRendition::ResumeRendition;
break;
}
}
LinkRenditionPrivate::~LinkRenditionPrivate()
{
delete rendition;
}
class LinkJavaScriptPrivate : public LinkPrivate
{
public:
explicit LinkJavaScriptPrivate(const QRectF &area);
~LinkJavaScriptPrivate() override;
QString js;
};
LinkJavaScriptPrivate::LinkJavaScriptPrivate(const QRectF &area) : LinkPrivate(area) { }
LinkJavaScriptPrivate::~LinkJavaScriptPrivate() = default;
class LinkMoviePrivate : public LinkPrivate
{
public:
LinkMoviePrivate(const QRectF &area, LinkMovie::Operation operation, const QString &title, const Ref reference);
~LinkMoviePrivate() override;
LinkMovie::Operation operation;
QString annotationTitle;
Ref annotationReference;
};
LinkMoviePrivate::LinkMoviePrivate(const QRectF &area, LinkMovie::Operation _operation, const QString &title, const Ref reference) : LinkPrivate(area), operation(_operation), annotationTitle(title), annotationReference(reference) { }
LinkMoviePrivate::~LinkMoviePrivate() = default;
static void cvtUserToDev(::Page *page, double xu, double yu, int *xd, int *yd)
{
double ctm[6];
page->getDefaultCTM(ctm, 72.0, 72.0, 0, false, true);
*xd = (int)(ctm[0] * xu + ctm[2] * yu + ctm[4] + 0.5);
*yd = (int)(ctm[1] * xu + ctm[3] * yu + ctm[5] + 0.5);
}
LinkDestination::LinkDestination(const LinkDestinationData &data) : d(new LinkDestinationPrivate)
{
bool deleteDest = false;
const LinkDest *ld = data.ld;
if (data.namedDest && !ld && !data.externalDest) {
deleteDest = true;
ld = data.doc->doc->findDest(data.namedDest).release();
}
// in case this destination was named one, and it was not resolved
if (data.namedDest && !ld) {
d->name = QString::fromLatin1(data.namedDest->c_str());
}
if (!ld) {
return;
}
if (ld->getKind() == ::destXYZ) {
d->kind = destXYZ;
} else if (ld->getKind() == ::destFit) {
d->kind = destFit;
} else if (ld->getKind() == ::destFitH) {
d->kind = destFitH;
} else if (ld->getKind() == ::destFitV) {
d->kind = destFitV;
} else if (ld->getKind() == ::destFitR) {
d->kind = destFitR;
} else if (ld->getKind() == ::destFitB) {
d->kind = destFitB;
} else if (ld->getKind() == ::destFitBH) {
d->kind = destFitBH;
} else if (ld->getKind() == ::destFitBV) {
d->kind = destFitBV;
}
if (!ld->isPageRef()) {
d->pageNum = ld->getPageNum();
} else {
const Ref ref = ld->getPageRef();
d->pageNum = data.doc->doc->findPage(ref);
}
double left = ld->getLeft();
double bottom = ld->getBottom();
double right = ld->getRight();
double top = ld->getTop();
d->zoom = ld->getZoom();
d->changeLeft = ld->getChangeLeft();
d->changeTop = ld->getChangeTop();
d->changeZoom = ld->getChangeZoom();
int leftAux = 0, topAux = 0, rightAux = 0, bottomAux = 0;
if (!data.externalDest) {
::Page *page;
if (d->pageNum > 0 && d->pageNum <= data.doc->doc->getNumPages() && (page = data.doc->doc->getPage(d->pageNum))) {
cvtUserToDev(page, left, top, &leftAux, &topAux);
cvtUserToDev(page, right, bottom, &rightAux, &bottomAux);
d->left = leftAux / (double)page->getCropWidth();
d->top = topAux / (double)page->getCropHeight();
d->right = rightAux / (double)page->getCropWidth();
d->bottom = bottomAux / (double)page->getCropHeight();
} else {
d->pageNum = 0;
}
}
if (deleteDest) {
delete ld;
}
}
LinkDestination::LinkDestination(const QString &description) : d(new LinkDestinationPrivate)
{
const QStringList tokens = description.split(';');
if (tokens.size() >= 10) {
d->kind = static_cast<Kind>(tokens.at(0).toInt());
d->pageNum = tokens.at(1).toInt();
d->left = tokens.at(2).toDouble();
d->bottom = tokens.at(3).toDouble();
d->right = tokens.at(4).toDouble();
d->top = tokens.at(5).toDouble();
d->zoom = tokens.at(6).toDouble();
d->changeLeft = static_cast<bool>(tokens.at(7).toInt());
d->changeTop = static_cast<bool>(tokens.at(8).toInt());
d->changeZoom = static_cast<bool>(tokens.at(9).toInt());
}
}
LinkDestination::LinkDestination(const LinkDestination &other) : d(other.d) { }
LinkDestination::~LinkDestination() { }
LinkDestination::Kind LinkDestination::kind() const
{
return d->kind;
}
int LinkDestination::pageNumber() const
{
return d->pageNum;
}
double LinkDestination::left() const
{
return d->left;
}
double LinkDestination::bottom() const
{
return d->bottom;
}
double LinkDestination::right() const
{
return d->right;
}
double LinkDestination::top() const
{
return d->top;
}
double LinkDestination::zoom() const
{
return d->zoom;
}
bool LinkDestination::isChangeLeft() const
{
return d->changeLeft;
}
bool LinkDestination::isChangeTop() const
{
return d->changeTop;
}
bool LinkDestination::isChangeZoom() const
{
return d->changeZoom;
}
QString LinkDestination::toString() const
{
QString s = QString::number((qint8)d->kind);
s += ";" + QString::number(d->pageNum);
s += ";" + QString::number(d->left);
s += ";" + QString::number(d->bottom);
s += ";" + QString::number(d->right);
s += ";" + QString::number(d->top);
s += ";" + QString::number(d->zoom);
s += ";" + QString::number((qint8)d->changeLeft);
s += ";" + QString::number((qint8)d->changeTop);
s += ";" + QString::number((qint8)d->changeZoom);
return s;
}
QString LinkDestination::destinationName() const
{
return d->name;
}
LinkDestination &LinkDestination::operator=(const LinkDestination &other)
{
if (this == &other) {
return *this;
}
d = other.d;
return *this;
}
// Link
Link::~Link()
{
delete d_ptr;
}
Link::Link(const QRectF &linkArea) : d_ptr(new LinkPrivate(linkArea)) { }
Link::Link(LinkPrivate &dd) : d_ptr(&dd) { }
Link::LinkType Link::linkType() const
{
return None;
}
QRectF Link::linkArea() const
{
Q_D(const Link);
return d->linkArea;
}
QVector<Link *> Link::nextLinks() const
{
return d_ptr->nextLinks;
}
// LinkGoto
LinkGoto::LinkGoto(const QRectF &linkArea, QString extFileName, const LinkDestination &destination) // clazy:exclude=function-args-by-ref
: Link(*new LinkGotoPrivate(linkArea, destination))
{
Q_D(LinkGoto);
d->extFileName = std::move(extFileName); // TODO remove when extFileName moves to be a const &
}
LinkGoto::~LinkGoto() { }
bool LinkGoto::isExternal() const
{
Q_D(const LinkGoto);
return !d->extFileName.isEmpty();
}
QString LinkGoto::fileName() const
{
Q_D(const LinkGoto);
return d->extFileName;
}
LinkDestination LinkGoto::destination() const
{
Q_D(const LinkGoto);
return d->destination;
}
Link::LinkType LinkGoto::linkType() const
{
return Goto;
}
// LinkExecute
LinkExecute::LinkExecute(const QRectF &linkArea, const QString &file, const QString ¶ms) : Link(*new LinkExecutePrivate(linkArea))
{
Q_D(LinkExecute);
d->fileName = file;
d->parameters = params;
}
LinkExecute::~LinkExecute() { }
QString LinkExecute::fileName() const
{
Q_D(const LinkExecute);
return d->fileName;
}
QString LinkExecute::parameters() const
{
Q_D(const LinkExecute);
return d->parameters;
}
Link::LinkType LinkExecute::linkType() const
{
return Execute;
}
// LinkBrowse
LinkBrowse::LinkBrowse(const QRectF &linkArea, const QString &url) : Link(*new LinkBrowsePrivate(linkArea))
{
Q_D(LinkBrowse);
d->url = url;
}
LinkBrowse::~LinkBrowse() { }
QString LinkBrowse::url() const
{
Q_D(const LinkBrowse);
return d->url;
}
Link::LinkType LinkBrowse::linkType() const
{
return Browse;
}
// LinkAction
LinkAction::LinkAction(const QRectF &linkArea, ActionType actionType) : Link(*new LinkActionPrivate(linkArea))
{
Q_D(LinkAction);
d->type = actionType;
}
LinkAction::~LinkAction() { }
LinkAction::ActionType LinkAction::actionType() const
{
Q_D(const LinkAction);
return d->type;
}
Link::LinkType LinkAction::linkType() const
{
return Action;
}
// LinkSound
LinkSound::LinkSound(const QRectF &linkArea, double volume, bool sync, bool repeat, bool mix, SoundObject *sound) : Link(*new LinkSoundPrivate(linkArea))
{
Q_D(LinkSound);
d->volume = volume;
d->sync = sync;
d->repeat = repeat;
d->mix = mix;
d->sound = sound;
}
LinkSound::~LinkSound() { }
Link::LinkType LinkSound::linkType() const
{
return Sound;
}
double LinkSound::volume() const
{
Q_D(const LinkSound);
return d->volume;
}
bool LinkSound::synchronous() const
{
Q_D(const LinkSound);
return d->sync;
}
bool LinkSound::repeat() const
{
Q_D(const LinkSound);
return d->repeat;
}
bool LinkSound::mix() const
{
Q_D(const LinkSound);
return d->mix;
}
SoundObject *LinkSound::sound() const
{
Q_D(const LinkSound);
return d->sound;
}
// LinkRendition
LinkRendition::LinkRendition(const QRectF &linkArea, ::MediaRendition *rendition, int operation, const QString &script, const Ref &annotationReference) // clazy:exclude=function-args-by-value
: Link(*new LinkRenditionPrivate(linkArea, rendition, static_cast<enum ::LinkRendition::RenditionOperation>(operation), script, annotationReference))
{
}
LinkRendition::~LinkRendition() { }
Link::LinkType LinkRendition::linkType() const
{
return Rendition;
}
MediaRendition *LinkRendition::rendition() const
{
Q_D(const LinkRendition);
return d->rendition;
}
LinkRendition::RenditionAction LinkRendition::action() const
{
Q_D(const LinkRendition);
return d->action;
}
QString LinkRendition::script() const
{
Q_D(const LinkRendition);
return d->script;
}
bool LinkRendition::isReferencedAnnotation(const ScreenAnnotation *annotation) const
{
Q_D(const LinkRendition);
if (d->annotationReference != Ref::INVALID() && d->annotationReference == annotation->d_ptr->pdfObjectReference()) {
return true;
}
return false;
}
// LinkJavaScript
LinkJavaScript::LinkJavaScript(const QRectF &linkArea, const QString &js) : Link(*new LinkJavaScriptPrivate(linkArea))
{
Q_D(LinkJavaScript);
d->js = js;
}
LinkJavaScript::~LinkJavaScript() { }
Link::LinkType LinkJavaScript::linkType() const
{
return JavaScript;
}
QString LinkJavaScript::script() const
{
Q_D(const LinkJavaScript);
return d->js;
}
// LinkMovie
LinkMovie::LinkMovie(const QRectF &linkArea, Operation operation, const QString &annotationTitle, const Ref &annotationReference) // clazy:exclude=function-args-by-value
: Link(*new LinkMoviePrivate(linkArea, operation, annotationTitle, annotationReference))
{
}
LinkMovie::~LinkMovie() { }
Link::LinkType LinkMovie::linkType() const
{
return Movie;
}
LinkMovie::Operation LinkMovie::operation() const
{
Q_D(const LinkMovie);
return d->operation;
}
bool LinkMovie::isReferencedAnnotation(const MovieAnnotation *annotation) const
{
Q_D(const LinkMovie);
if (d->annotationReference != Ref::INVALID() && d->annotationReference == annotation->d_ptr->pdfObjectReference()) {
return true;
} else if (!d->annotationTitle.isNull()) {
return (annotation->movieTitle() == d->annotationTitle);
}
return false;
}
LinkOCGState::LinkOCGState(LinkOCGStatePrivate *ocgp) : Link(*ocgp) { }
LinkOCGState::~LinkOCGState() { }
Link::LinkType LinkOCGState::linkType() const
{
return OCGState;
}
// LinkHide
LinkHide::LinkHide(LinkHidePrivate *lhidep) : Link(*lhidep) { }
LinkHide::~LinkHide() { }
Link::LinkType LinkHide::linkType() const
{
return Hide;
}
QVector<QString> LinkHide::targets() const
{
Q_D(const LinkHide);
return QVector<QString>() << d->targetName;
}
bool LinkHide::isShowAction() const
{
Q_D(const LinkHide);
return d->isShow;
}
}
|