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
|
//
// Class: DocumentWidget
//
// Widget for displaying TeX DVI files.
// Part of KDVI- A previewer for TeX DVI files.
//
// (C) 2001 Stefan Kebekus
// Copyright (C) 2004-2005 Wilfried Huss <Wilfried.Huss@gmx.at>
// Distributed under the GPL
//
#include <config.h>
#include <kaction.h>
#include <kapplication.h>
#include <kdebug.h>
#include <kglobalsettings.h>
#include <kiconloader.h>
#include <klocale.h>
#include <qclipboard.h>
#include <qcursor.h>
#include <qimage.h>
#include <qpainter.h>
#include <qpixmap.h>
#include "documentWidget.h"
#include "pageView.h"
#include "documentPageCache.h"
#include "hyperlink.h"
#include "renderedDocumentPagePixmap.h"
#include "textBox.h"
#include "kvsprefs.h"
//#define DEBUG_DOCUMENTWIDGET
const int DocumentWidget::bottom_right_corner[16] =
{ 61, 71, 85, 95,
71, 78, 89, 96,
85, 89, 95, 98,
95, 97, 98, 99 };
const int DocumentWidget::bottom_left_corner[16] =
{ 95, 85, 71, 61,
97, 89, 78, 71,
98, 95, 89, 85,
99, 98, 96, 95 };
const int DocumentWidget::shadow_strip[4] =
{ 56, 67, 83, 94 };
QColor DocumentWidget::backgroundColorForCorners;
namespace {
/** Holds the icon used as a overlay on pages which are not drawn yet. */
QPixmap* busyIcon = 0;
/** Internal storages used in the shadow drawing routines in the
drawContents method.*/
QPixmap* URShadow = 0;
QPixmap* BRShadow = 0;
QPixmap* BLShadow = 0;
} // namespace anon
DocumentWidget::DocumentWidget(QWidget *parent, PageView *sv, DocumentPageCache *cache, const char *name )
: QWidget( parent, name ), indexOfUnderlinedLink(-1)
{
moveTool = true;
selectionNeedsUpdating = false;
// Variables used in animation.
animationCounter = 0;
timerIdent = 0;
documentCache = cache;
scrollView = sv;
pixmapRequested = false;
scrollGuide = -1;
setMouseTracking(true);
setFocusPolicy(QWidget::ClickFocus);
connect(&clearStatusBarTimer, SIGNAL(timeout()), this, SLOT(clearStatusBar()));
setBackgroundMode(Qt::NoBackground);
if (!busyIcon)
{
busyIcon = new QPixmap(KGlobal::iconLoader()->loadIcon("gear", KIcon::NoGroup, KIcon::SizeMedium));
URShadow = new QPixmap();
BRShadow = new QPixmap();
BLShadow = new QPixmap();
URShadow->resize(4,4);
BRShadow->resize(4,4);
BLShadow->resize(4,4);
}
}
void DocumentWidget::setPageNumber(Q_UINT16 nr)
{
pageNr = nr;
selectionNeedsUpdating = true;
// We have to reset this, because otherwise we might crash in the mouseMoveEvent
// After switching pages in SinglePageMode or OverviewMode.
indexOfUnderlinedLink = -1;
// Resize Widget if the size of the new page is different than the size of the old page.
QSize _pageSize = documentCache->sizeOfPageInPixel(pageNr);
if (_pageSize != pageSize())
{
setPageSize(_pageSize);
}
update();
}
QRect DocumentWidget::linkFlashRect()
{
int width = pageSize().width()/(11 - animationCounter);
int height = pageSize().height()/(60 - 4 * animationCounter);
return QRect((pageSize().width()-width)/2, flashOffset - height/2, width, height);
}
void DocumentWidget::timerEvent( QTimerEvent *e )
{
if (animationCounter == 0) {
killTimer(e->timerId());
timerIdent = startTimer(50); // Proceed with the animation in 1/10s intervals
}
animationCounter++;
QRect flashRect = linkFlashRect();
flashRect.addCoords(-1, -1, 1, 1);
if (animationCounter >= 10) {
killTimer(e->timerId());
timerIdent = 0;
animationCounter = 0;
}
repaint(flashRect, false);
}
void DocumentWidget::flash(int fo)
{
if (timerIdent != 0)
{
killTimer(timerIdent);
// Delete old flash rectangle
animationCounter = 10;
QRect flashRect = linkFlashRect();
flashRect.addCoords(-1, -1, 1, 1);
repaint(flashRect, false);
}
animationCounter = 0;
flashOffset = fo;
timerIdent = startTimer(50); // Start the animation. The animation proceeds in 1/10s intervals
}
void DocumentWidget::paintEvent(QPaintEvent *e)
{
#ifdef DEBUG_DOCUMENTWIDGET
kdDebug(1223) << "DocumentWidget::paintEvent() called" << endl;
#endif
// Check if this widget is really visible to the user. If not, there
// is nothing to do. Remark: if we don't do this, then under QT
// 3.2.3 the following happens: when the user changes the zoom
// value, all those widgets are updated which the user has EVER
// seen, not just those that are visible at the moment. If the
// document contains several thousand pages, it is easily possible
// that this means that a few hundred of these are re-painted (which
// takes substantial time) although perhaps only three widgets are
// visible and *should* be updated. I believe this is some error in
// QT, but I am not positive about that ---Stefan Kebekus.
if (!isVisible())
{
//kdDebug() << "widget of page " << pageNr << " is not visible. Abort rendering" << endl;
kapp->processEvents();
return;
}
QPainter p(this);
p.setClipRegion(e->region());
// Paint a black border around the widget
p.setRasterOp(Qt::CopyROP);
p.setBrush(NoBrush);
p.setPen(Qt::black);
QRect outlineRect = pageRect();
outlineRect.addCoords(-1, -1, 1, 1);
p.drawRect(outlineRect);
// Paint page shadow
QColor backgroundColor = colorGroup().mid();
// (Re-)generate the Pixmaps for the shadow corners, if necessary
if (backgroundColor != backgroundColorForCorners)
{
backgroundColorForCorners = backgroundColor;
QImage tmp(4, 4, 32);
for(int x=0; x<4; x++)
for(int y=0; y<4; y++)
tmp.setPixel(x, y, backgroundColor.light(bottom_right_corner[x+4*y]).rgb() );
BRShadow->convertFromImage(tmp);
for(int x=0; x<4; x++)
for(int y=0; y<4; y++)
tmp.setPixel(x, y, backgroundColor.light(bottom_left_corner[x+4*y]).rgb() );
BLShadow->convertFromImage(tmp);
URShadow->convertFromImage(tmp.mirror(true, true));
}
// Draw right and bottom shadows
for(int i=0; i<4; i++)
{
p.setPen(backgroundColor.light(shadow_strip[i]));
// Right shadow
p.drawLine(pageSize().width()+i+2, 8, pageSize().width()+i+2, pageSize().height()+2);
// Bottom shadow
p.drawLine(8, pageSize().height()+i+2, pageSize().width()+2, pageSize().height()+i+2);
}
// Draw shadow corners
p.drawPixmap(pageSize().width()+2, pageSize().height()+2, *BRShadow);
p.drawPixmap(4, pageSize().height()+2, *BLShadow);
p.drawPixmap(pageSize().width()+2, 4, *URShadow);
// Draw corners
p.fillRect(0, pageSize().height()+2, 4, 4, backgroundColor);
p.fillRect(pageSize().width()+2, 0, 4, 4, backgroundColor);
if (!documentCache->isPageCached(pageNr, pageSize()))
{
QRect destRect = e->rect().intersect(pageRect());
if (KVSPrefs::changeColors() && KVSPrefs::renderMode() == KVSPrefs::EnumRenderMode::Paper)
p.fillRect(destRect, KVSPrefs::paperColor());
else
p.fillRect(destRect, Qt::white);
// Draw busy indicator.
// Im not really sure if this is a good idea.
// While it is nice to see an indication that something is happening for pages which
// take long to redraw, it gets quite annoing for fast redraws.
// TODO: Disable or find something less distractiong.
p.drawPixmap(10, 10, *busyIcon);
if (!pixmapRequested)
{
// Request page pixmap.
pixmapRequested = true;
QTimer::singleShot(50, this, SLOT(delayedRequestPage()));
}
return;
}
RenderedDocumentPagePixmap *pageData = documentCache->getPage(pageNr);
if (pageData == 0) {
#ifdef DEBUG_DOCUMENTWIDGET
kdDebug(1223) << "DocumentWidget::paintEvent: no documentPage generated" << endl;
#endif
return;
}
QMemArray<QRect> damagedRects = e->region().rects();
for (unsigned int i = 0; i < damagedRects.count(); i++)
{
// Paint the page where it intersects with the damaged area.
QRect destRect = damagedRects[i].intersect(pageRect());
// The actual page starts at point (1,1) because of the outline.
// Therefore we need to shift the destination rectangle.
QRect pixmapRect = destRect;
pixmapRect.moveBy(-1,-1);
if (KVSPrefs::changeColors() && KVSPrefs::renderMode() != KVSPrefs::EnumRenderMode::Paper)
{
// Paint widget contents with accessibility changes.
bitBlt ( this, destRect.topLeft(), &pageData->accessiblePixmap(), pixmapRect, CopyROP);
}
else
{
// Paint widget contents
bitBlt ( this, destRect.topLeft(), pageData, pixmapRect, CopyROP);
}
}
// Underline hyperlinks
if (KVSPrefs::underlineLinks() == KVSPrefs::EnumUnderlineLinks::Enabled ||
KVSPrefs::underlineLinks() == KVSPrefs::EnumUnderlineLinks::OnlyOnHover)
{
int h = 2; // Height of line.
for(int i = 0; i < (int)pageData->hyperLinkList.size(); i++)
{
if (KVSPrefs::underlineLinks() == KVSPrefs::EnumUnderlineLinks::OnlyOnHover &&
i != indexOfUnderlinedLink)
continue;
int x = pageData->hyperLinkList[i].box.left();
int w = pageData->hyperLinkList[i].box.width();
int y = pageData->hyperLinkList[i].baseline;
QRect hyperLinkRect(x, y, w, h);
if (hyperLinkRect.intersects(e->rect()))
{
#ifdef DEBUG_DOCUMENTWIDGET
kdDebug(1223) << "Underline hyperlink \"" << pageData->hyperLinkList[i].linkText << "\"" << endl;
#endif
p.fillRect(x, y, w, h, KGlobalSettings::linkColor());
}
}
}
// Paint flashing frame, if appropriate
if (animationCounter > 0 && animationCounter < 10)
{
int gbChannel = 255 - (9-animationCounter)*28;
p.setPen(QPen(QColor(255, gbChannel, gbChannel), 3));
p.drawRect(linkFlashRect());
}
// Mark selected text.
TextSelection selection = documentCache->selectedText();
if ((selection.getPageNumber() != 0) && (selection.getPageNumber() == pageNr))
{
if (selectionNeedsUpdating)
{
//The zoom value has changed, therefore we need to recalculate
//the selected region.
selectedRegion = pageData->selectedRegion(selection);
selectionNeedsUpdating = false;
}
p.setPen(NoPen);
p.setBrush(white);
p.setRasterOp(Qt::XorROP);
QMemArray<QRect> selectionRects = selectedRegion.rects();
for (unsigned int i = 0; i < selectionRects.count(); i++)
p.drawRect(selectionRects[i]);
}
// Draw scroll Guide
if (scrollGuide >= 0)
{
// Don't draw over the page shadow
p.setClipRegion(e->region().intersect(pageRect()));
p.setRasterOp(Qt::CopyROP);
p.setPen(Qt::red);
p.drawLine(1, scrollGuide, pageSize().width(), scrollGuide);
}
}
void DocumentWidget::drawScrollGuide(int ycoord)
{
//kdDebug() << "draw scroll guide for page " << pageNr << " at y = " << ycoord << endl;
scrollGuide = ycoord;
update(QRect(1, scrollGuide, pageSize().width(), 1));
QTimer::singleShot(1000, this, SLOT(clearScrollGuide()));
}
void DocumentWidget::clearScrollGuide()
{
//kdDebug() << "clear scroll guide for page " << pageNr << " at y = " << scrollGuide << endl;
int temp = scrollGuide;
scrollGuide = -1;
update(QRect(1, temp, pageSize().width(), 1));
}
void DocumentWidget::select(const TextSelection& newSelection)
{
// Get a pointer to the page contents
RenderedDocumentPage *pageData = documentCache->getPage(pageNr);
if (pageData == 0) {
kdDebug(1223) << "DocumentWidget::select() pageData for page #" << pageNr << " is empty" << endl;
return;
}
documentCache->selectText(newSelection);
selectedRegion = pageData->selectedRegion(documentCache->selectedText());
selectionNeedsUpdating = false;
update();
}
void DocumentWidget::selectAll()
{
// pageNr == 0 indicated an invalid page (e.g. page number not yet
// set)
if (pageNr == 0)
return;
// Get a pointer to the page contents
RenderedDocumentPage *pageData = documentCache->getPage(pageNr);
if (pageData == 0) {
kdDebug(1223) << "DocumentWidget::selectAll() pageData for page #" << pageNr << " is empty" << endl;
return;
}
TextSelection selection;
// mark everything as selected
QString selectedText("");
for(unsigned int i = 0; i < pageData->textBoxList.size(); i++) {
selectedText += pageData->textBoxList[i].text;
selectedText += "\n";
}
selection.set(pageNr, 0, pageData->textBoxList.size()-1, selectedText);
selectedRegion = pageData->selectedRegion(selection);
documentCache->selectText(selection);
// Re-paint
update();
}
void DocumentWidget::mousePressEvent ( QMouseEvent * e )
{
#ifdef DEBUG_DOCUMENTWIDGET
kdDebug(1223) << "DocumentWidget::mousePressEvent(...) called" << endl;
#endif
// Make sure the event is passed on to the higher-level widget;
// otherwise QT gets the coordinated in the mouse move events wrong
e->ignore();
// pageNr == 0 indicated an invalid page (e.g. page number not yet
// set)
if (pageNr == 0)
return;
// Get a pointer to the page contents
RenderedDocumentPage *pageData = documentCache->getPage(pageNr);
if (pageData == 0) {
kdDebug(1223) << "DocumentWidget::selectAll() pageData for page #" << pageNr << " is empty" << endl;
return;
}
// Check if the mouse is pressed on a regular hyperlink
if (e->button() == LeftButton) {
if (pageData->hyperLinkList.size() > 0)
for(unsigned int i = 0; i < pageData->hyperLinkList.size(); i++) {
if (pageData->hyperLinkList[i].box.contains(e->pos())) {
emit(localLink(pageData->hyperLinkList[i].linkText));
return;
}
}
if (moveTool)
setCursor(Qt::SizeAllCursor);
else
setCursor(Qt::IbeamCursor);
}
if (e->button() == RightButton || (!moveTool && e->button() == LeftButton))
{
setCursor(Qt::IbeamCursor);
// If Shift is not pressed clear the current selection,
// otherwise modify the existing selection.
if (!(e->state() & ShiftButton))
{
firstSelectedPoint = e->pos();
selectedRectangle = QRect();
selectedRegion = QRegion();
emit clearSelection();
}
}
}
void DocumentWidget::mouseReleaseEvent ( QMouseEvent *e )
{
// Make sure the event is passed on to the higher-level widget;
// otherwise the mouse cursor in the centeringScrollview is wrong
e->ignore();
if (e->button() == RightButton || (!moveTool && e->button() == LeftButton))
{
// If the selectedRectangle is empty then there was only a single right click.
if (firstSelectedPoint == e->pos())
{
if (pageNr == 0)
return;
// Get a pointer to the page contents
RenderedDocumentPage* pageData = documentCache->getPage(pageNr);
if (pageData == 0)
{
kdDebug(1223) << "DocumentWidget::mouseReleaseEvent() pageData for page #" << pageNr << " is empty" << endl;
return;
}
TextSelection newTextSelection = pageData->select(firstSelectedPoint);
updateSelection(newTextSelection);
}
}
//Reset the cursor to the usual arrow if we use the move tool, and
// The textselection cursor if we use the selection tool.
setStandardCursor();
}
void DocumentWidget::mouseMoveEvent ( QMouseEvent * e )
{
#ifdef DEBUG_DOCUMENTWIDGET
kdDebug(1223) << "DocumentWidget::mouseMoveEvent(...) called" << endl;
#endif
// pageNr == 0 indicated an invalid page (e.g. page number not yet
// set)
if (pageNr == 0)
return;
// Get a pointer to the page contents
RenderedDocumentPage *pageData = documentCache->getPage(pageNr);
if (pageData == 0) {
kdDebug(1223) << "DocumentWidget::selectAll() pageData for page #" << pageNr << " is empty" << endl;
return;
}
// If no mouse button pressed
if (e->state() == 0) {
// Remember the index of the underlined link.
int lastUnderlinedLink = indexOfUnderlinedLink;
// go through hyperlinks
for(unsigned int i = 0; i < pageData->hyperLinkList.size(); i++) {
if (pageData->hyperLinkList[i].box.contains(e->pos())) {
clearStatusBarTimer.stop();
setCursor(pointingHandCursor);
QString link = pageData->hyperLinkList[i].linkText;
if ( link.startsWith("#") )
link = link.remove(0,1);
emit setStatusBarText( i18n("Link to %1").arg(link) );
indexOfUnderlinedLink = i;
if (KVSPrefs::underlineLinks() == KVSPrefs::EnumUnderlineLinks::OnlyOnHover &&
indexOfUnderlinedLink != lastUnderlinedLink)
{
QRect newUnderline = pageData->hyperLinkList[i].box;
// Increase Rectangle so that the whole line really lines in it.
newUnderline.addCoords(0, 0, 0, 2);
// Redraw widget
update(newUnderline);
if (lastUnderlinedLink != -1 && lastUnderlinedLink < pageData->hyperLinkList.size())
{
// Erase old underline
QRect oldUnderline = pageData->hyperLinkList[lastUnderlinedLink].box;
oldUnderline.addCoords(0, 0, 0, 2);
update(oldUnderline);
}
}
return;
}
}
// Whenever we reach this the mouse hovers no link.
indexOfUnderlinedLink = -1;
if (KVSPrefs::underlineLinks() == KVSPrefs::EnumUnderlineLinks::OnlyOnHover &&
lastUnderlinedLink != -1 && lastUnderlinedLink < pageData->hyperLinkList.size())
{
// Erase old underline
QRect oldUnderline = pageData->hyperLinkList[lastUnderlinedLink].box;
// Increase Rectangle so that the whole line really lines in it.
oldUnderline.addCoords(0, 0, 0, 2);
// Redraw widget
update(oldUnderline);
}
// Cursor not over hyperlink? Then let the cursor be the usual arrow if we use the move tool, and
// The textselection cursor if we use the selection tool.
setStandardCursor();
}
if (!clearStatusBarTimer.isActive())
clearStatusBarTimer.start(200, true); // clear the statusbar after 200 msec.
// Left mouse button pressed -> Text scroll function
if ((e->state() & LeftButton) != 0 && moveTool)
{
// Pass the mouse event on to the owner of this widget ---under
// normal circumstances that is the centeringScrollView which will
// then scroll the scrollview contents
e->ignore();
}
// Right mouse button pressed -> Text copy function
if ((e->state() & RightButton) != 0 || (!moveTool && (e->state() & LeftButton != 0)))
{
if (selectedRectangle.isEmpty()) {
firstSelectedPoint = e->pos();
selectedRectangle.setRect(e->pos().x(),e->pos().y(),1,1);
} else {
int lx = e->pos().x() < firstSelectedPoint.x() ? e->pos().x() : firstSelectedPoint.x();
int rx = e->pos().x() > firstSelectedPoint.x() ? e->pos().x() : firstSelectedPoint.x();
int ty = e->pos().y() < firstSelectedPoint.y() ? e->pos().y() : firstSelectedPoint.y();
int by = e->pos().y() > firstSelectedPoint.y() ? e->pos().y() : firstSelectedPoint.y();
selectedRectangle.setCoords(lx,ty,rx,by);
}
// Now that we know the rectangle, we have to find out which words
// intersect it!
TextSelection newTextSelection = pageData->select(selectedRectangle);
updateSelection(newTextSelection);
}
}
void DocumentWidget::updateSelection(const TextSelection& newTextSelection)
{
if (newTextSelection != documentCache->selectedText())
{
if (newTextSelection.isEmpty())
{
// Clear selection
documentCache->deselectText();
selectedRectangle = QRect();
selectedRegion = QRegion();
update();
}
else
{
if (pageNr == 0)
return;
// Get a pointer to the page contents
RenderedDocumentPage* pageData = documentCache->getPage(pageNr);
if (pageData == 0)
{
kdDebug(1223) << "DocumentWidget::mouseReleaseEvent() pageData for page #" << pageNr << " is empty" << endl;
return;
}
documentCache->selectText(newTextSelection);
QRegion newlySelectedRegion = pageData->selectedRegion(documentCache->selectedText());
// Compute the region that needs to be updated
QRegion updateRegion;
if(!selectedRegion.isEmpty())
{
updateRegion = newlySelectedRegion.eor(selectedRegion);
}
else
{
updateRegion = newlySelectedRegion;
}
selectedRegion = newlySelectedRegion;
QMemArray<QRect> rectangles = updateRegion.rects();
for (unsigned int i = 0; i < rectangles.count(); i++)
{
repaint(rectangles[i]);
}
}
}
}
void DocumentWidget::clearStatusBar()
{
emit setStatusBarText( QString::null );
}
void DocumentWidget::delayedRequestPage()
{
if (!isVisible())
{
// We only want to calculate the page pixmap for widgets that are currently visible.
// When we are fast scrolling thru the document many paint events are created, that
// are often not needed anymore at the time the eventloop executes them.
//kdDebug() << "delayedRequest: widget of page " << pageNr << " is not visible. Abort rendering" << endl;
pixmapRequested = false;
kapp->processEvents();
return;
}
documentCache->getPage(pageNr);
pixmapRequested = false;
update();
// If more widgets need updateing at the some time, the next line allows them to be
// displayed one after another. Widthout it all widgets are updated after all the rendering
// is completed. This is especially noticable in overview mode. After the change to a seperate
// rendering thread this will probably not be needed anymore.
kapp->processEvents();
}
QSize DocumentWidget::pageSize() const
{
// Substract size of the shadow.
return size() - QSize(6, 6);
}
QRect DocumentWidget::pageRect() const
{
QRect boundingRect = rect();
// Substract the shadow.
boundingRect.addCoords(1,1,-5,-5);
return boundingRect;
}
void DocumentWidget::setPageSize(const QSize& pageSize)
{
// When the page size changes this means either the paper size
// has been changed, or the zoomlevel has been changed.
// If the zoomlevel changes we need to recalculate the selected
// region. We do this always, just to be on the safe side.
selectionNeedsUpdating = true;
// Add size of the shadow.
resize(pageSize + QSize(6,6));
}
void DocumentWidget::setPageSize(int width, int height)
{
setPageSize(QSize(width, height));
}
void DocumentWidget::slotEnableMoveTool(bool enable)
{
moveTool = enable;
setStandardCursor();
}
void DocumentWidget::setStandardCursor()
{
if (moveTool)
{
setCursor(Qt::arrowCursor);
}
else
{
setCursor(Qt::IbeamCursor);
}
}
bool DocumentWidget::isVisible()
{
QRect visibleRect(scrollView->contentsX(), scrollView->contentsY(), scrollView->visibleWidth(), scrollView->visibleHeight());
QRect widgetRect(scrollView->childX(this), scrollView->childY(this), width(), height());
return widgetRect.intersects(visibleRect);
}
#include "documentWidget.moc"
|