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
|
/*
SPDX-FileCopyrightText: 2003-2007 Clarence Dang <dang@kde.org>
SPDX-FileCopyrightText: 2011 Martin Koller <kollix@aon.at>
SPDX-License-Identifier: BSD-2-Clause
*/
#define DEBUG_KP_VIEW_SCROLLABLE_CONTAINER 0
#include "kpViewScrollableContainer.h"
#include <QCursor>
#include <QKeyEvent>
#include <QPainter>
#include <QPixmap>
#include <QScrollBar>
#include <QTimer>
#include "kpLogCategories.h"
#include <KLocalizedString>
#include "generic/kpWidgetMapper.h"
#include "kpDefs.h"
#include "pixmapfx/kpPixmapFX.h"
#include "views/kpView.h"
//---------------------------------------------------------------------
// (Pulled from out of Thurston's hat)
static const int DragScrollLeftTopMargin = 0;
static const int DragScrollRightBottomMargin = 16; // scrollbarish
static const int DragScrollInterval = 150;
static const int DragScrollInitialInterval = DragScrollInterval * 2;
static const int DragScrollNumPixels = 10;
static const int DragDistanceFromRectMaxFor1stMultiplier = 50;
static const int DragDistanceFromRectMaxFor2ndMultiplier = 100;
//---------------------------------------------------------------------
//---------------------------------------------------------------------
// a transparent widget above all others in the viewport used only while resizing the document
// to be able to show the resize lines above everything else
class kpOverlay : public QWidget
{
public:
kpOverlay(QWidget *parent, kpViewScrollableContainer *container)
: QWidget(parent)
, m_container(container)
{
}
void paintEvent(QPaintEvent *) override
{
m_container->drawResizeLines();
}
private:
kpViewScrollableContainer *m_container;
};
//---------------------------------------------------------------------
const int kpGrip::Size = 5;
//---------------------------------------------------------------------
kpGrip::kpGrip(GripType type, QWidget *parent)
: QWidget(parent)
, m_type(type)
, m_startPoint(KP_INVALID_POINT)
, m_currentPoint(KP_INVALID_POINT)
, m_shouldReleaseMouseButtons(false)
{
setCursor(cursorForType(m_type));
setMouseTracking(true); // mouseMoveEvent's even when no mousebtn down
setAutoFillBackground(true);
setBackgroundRole(QPalette::Highlight);
setFixedSize(kpGrip::Size, kpGrip::Size);
}
//---------------------------------------------------------------------
// public
kpGrip::GripType kpGrip::type() const
{
return m_type;
}
//---------------------------------------------------------------------
// public static
QCursor kpGrip::cursorForType(GripType type)
{
switch (type) {
case kpGrip::Bottom:
return Qt::SizeVerCursor;
case kpGrip::Right:
return Qt::SizeHorCursor;
case kpGrip::BottomRight:
return Qt::SizeFDiagCursor;
}
return Qt::ArrowCursor;
}
//---------------------------------------------------------------------
// public
bool kpGrip::containsCursor()
{
return isVisible() && QRect(mapToGlobal(rect().topLeft()), mapToGlobal(rect().bottomRight())).contains(QCursor::pos());
}
//---------------------------------------------------------------------
// public
bool kpGrip::isDrawing() const
{
return (m_startPoint != KP_INVALID_POINT);
}
//---------------------------------------------------------------------
// public
QString kpGrip::haventBegunDrawUserMessage() const
{
return i18n("Left drag the handle to resize the image.");
}
//---------------------------------------------------------------------
// public
QString kpGrip::userMessage() const
{
return m_userMessage;
}
//---------------------------------------------------------------------
// public
void kpGrip::setUserMessage(const QString &message)
{
// Don't do NOP checking here since another grip might have changed
// the message so an apparent NOP for this grip is not a NOP in the
// global sense (kpViewScrollableContainer::slotGripStatusMessageChanged()).
m_userMessage = message;
Q_EMIT statusMessageChanged(message);
}
//---------------------------------------------------------------------
// protected
void kpGrip::cancel()
{
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER
qCDebug(kpLogMisc) << "kpGrip::cancel()";
#endif
if (m_currentPoint == KP_INVALID_POINT) {
return;
}
m_startPoint = KP_INVALID_POINT;
m_currentPoint = KP_INVALID_POINT;
setUserMessage(i18n("Resize Image: Let go of all the mouse buttons."));
setCursor(Qt::ArrowCursor);
m_shouldReleaseMouseButtons = true;
Q_EMIT cancelledDraw();
}
//---------------------------------------------------------------------
// protected virtual [base QWidget]
void kpGrip::keyReleaseEvent(QKeyEvent *e)
{
if (m_startPoint != KP_INVALID_POINT && e->key() == Qt::Key_Escape) {
cancel();
}
}
//---------------------------------------------------------------------
// protected virtual [base QWidget]
void kpGrip::mousePressEvent(QMouseEvent *e)
{
if (m_startPoint == KP_INVALID_POINT && (e->buttons() & Qt::MouseButtonMask) == Qt::LeftButton) {
m_startPoint = e->pos();
m_currentPoint = e->pos();
Q_EMIT beganDraw();
setFocus(); // allow to receive keyboard events to be able to handle ESC
setUserMessage(i18n("Resize Image: Right click to cancel."));
setCursor(cursorForType(m_type));
} else {
if (m_startPoint != KP_INVALID_POINT) {
cancel();
}
}
}
//---------------------------------------------------------------------
// public
QPoint kpGrip::viewDeltaPoint() const
{
if (m_startPoint == KP_INVALID_POINT) {
return KP_INVALID_POINT;
}
const QPoint point = mapFromGlobal(QCursor::pos());
// TODO: this is getting out of sync with m_currentPoint
return {(m_type & kpGrip::Right) ? point.x() - m_startPoint.x() : 0, (m_type & kpGrip::Bottom) ? point.y() - m_startPoint.y() : 0};
}
//---------------------------------------------------------------------
// public
void kpGrip::mouseMovedTo(const QPoint &point, bool dueToDragScroll)
{
if (m_startPoint == KP_INVALID_POINT) {
return;
}
m_currentPoint = point;
Q_EMIT continuedDraw(((m_type & kpGrip::Right) ? point.x() - m_startPoint.x() : 0),
((m_type & kpGrip::Bottom) ? point.y() - m_startPoint.y() : 0),
dueToDragScroll);
}
//---------------------------------------------------------------------
// protected virtual [base QWidget]
void kpGrip::mouseMoveEvent(QMouseEvent *e)
{
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER
qCDebug(kpLogMisc) << "kpGrip::mouseMoveEvent() m_startPoint=" << m_startPoint << " stateAfter: buttons=" << (int *)(int)e->buttons();
#endif
if (m_startPoint == KP_INVALID_POINT) {
if ((e->buttons() & Qt::MouseButtonMask) == 0) {
setUserMessage(haventBegunDrawUserMessage());
}
return;
}
mouseMovedTo(e->pos(), false /*not due to drag scroll*/);
}
//---------------------------------------------------------------------
// protected virtual [base QWidget]
void kpGrip::mouseReleaseEvent(QMouseEvent *e)
{
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER
qCDebug(kpLogMisc) << "kpGrip::mouseReleaseEvent() m_startPoint=" << m_startPoint << " stateAfter: buttons=" << (int *)(int)e->buttons();
#endif
if (m_startPoint != KP_INVALID_POINT) {
const int dx = m_currentPoint.x() - m_startPoint.x(), dy = m_currentPoint.y() - m_startPoint.y();
m_currentPoint = KP_INVALID_POINT;
m_startPoint = KP_INVALID_POINT;
Q_EMIT endedDraw((m_type & kpGrip::Right) ? dx : 0, (m_type & kpGrip::Bottom) ? dy : 0);
}
if ((e->buttons() & Qt::MouseButtonMask) == 0) {
m_shouldReleaseMouseButtons = false;
setUserMessage(QString());
setCursor(cursorForType(m_type));
Q_EMIT releasedAllButtons();
}
}
//---------------------------------------------------------------------
// protected virtual [base QWidget]
void kpGrip::enterEvent(QEnterEvent * /*e*/)
{
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER
qCDebug(kpLogMisc) << "kpGrip::enterEvent()"
<< " m_startPoint=" << m_startPoint << " shouldReleaseMouseButtons=" << m_shouldReleaseMouseButtons;
#endif
if (m_startPoint == KP_INVALID_POINT && !m_shouldReleaseMouseButtons) {
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER
qCDebug(kpLogMisc) << "\tsending message";
#endif
setUserMessage(haventBegunDrawUserMessage());
}
}
//---------------------------------------------------------------------
// protected virtual [base QWidget]
void kpGrip::leaveEvent(QEvent * /*e*/)
{
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER
qCDebug(kpLogMisc) << "kpGrip::leaveEvent()"
<< " m_startPoint=" << m_startPoint << " shouldReleaseMouseButtons=" << m_shouldReleaseMouseButtons;
#endif
if (m_startPoint == KP_INVALID_POINT && !m_shouldReleaseMouseButtons) {
setUserMessage(QString());
}
}
//---------------------------------------------------------------------
//---------------------------------------------------------------------
//---------------------------------------------------------------------
// TODO: Are we checking for m_view == 0 often enough? Also an issue in KDE 3.
kpViewScrollableContainer::kpViewScrollableContainer(QWidget *parent)
: QScrollArea(parent)
, m_view(nullptr)
, m_overlay(new kpOverlay(viewport(), this))
, m_docResizingGrip(nullptr)
, m_dragScrollTimer(new QTimer(this))
, m_zoomLevel(100)
, m_scrollTimerRunOnce(false)
, m_resizeRoundedLastViewX(-1)
, m_resizeRoundedLastViewY(-1)
, m_resizeRoundedLastViewDX(0)
, m_resizeRoundedLastViewDY(0)
, m_haveMovedFromOriginalDocSize(false)
{
// the base widget holding the documents view plus the resize grips
setWidget(new QWidget(viewport()));
m_bottomGrip = new kpGrip(kpGrip::Bottom, widget());
m_rightGrip = new kpGrip(kpGrip::Right, widget());
m_bottomRightGrip = new kpGrip(kpGrip::BottomRight, widget());
m_bottomGrip->setObjectName(QStringLiteral("Bottom Grip"));
m_rightGrip->setObjectName(QStringLiteral("Right Grip"));
m_bottomRightGrip->setObjectName(QStringLiteral("BottomRight Grip"));
m_bottomGrip->hide();
connectGripSignals(m_bottomGrip);
m_rightGrip->hide();
connectGripSignals(m_rightGrip);
m_bottomRightGrip->hide();
connectGripSignals(m_bottomRightGrip);
connect(horizontalScrollBar(), &QScrollBar::valueChanged, this, &kpViewScrollableContainer::slotContentsMoved);
connect(verticalScrollBar(), &QScrollBar::valueChanged, this, &kpViewScrollableContainer::slotContentsMoved);
connect(m_dragScrollTimer, &QTimer::timeout, this, [this] {
slotDragScroll();
});
m_overlay->hide();
}
//---------------------------------------------------------------------
// protected
void kpViewScrollableContainer::connectGripSignals(kpGrip *grip)
{
connect(grip, &kpGrip::beganDraw, this, &kpViewScrollableContainer::slotGripBeganDraw);
connect(grip, &kpGrip::continuedDraw, this, &kpViewScrollableContainer::slotGripContinuedDraw);
connect(grip, &kpGrip::cancelledDraw, this, &kpViewScrollableContainer::slotGripCancelledDraw);
connect(grip, &kpGrip::endedDraw, this, &kpViewScrollableContainer::slotGripEndedDraw);
connect(grip, &kpGrip::statusMessageChanged, this, &kpViewScrollableContainer::slotGripStatusMessageChanged);
connect(grip, &kpGrip::releasedAllButtons, this, &kpViewScrollableContainer::recalculateStatusMessage);
}
//---------------------------------------------------------------------
// public
QSize kpViewScrollableContainer::newDocSize() const
{
return newDocSize(m_resizeRoundedLastViewDX, m_resizeRoundedLastViewDY);
}
//---------------------------------------------------------------------
// public
bool kpViewScrollableContainer::haveMovedFromOriginalDocSize() const
{
return m_haveMovedFromOriginalDocSize;
}
//---------------------------------------------------------------------
// public
QString kpViewScrollableContainer::statusMessage() const
{
return m_gripStatusMessage;
}
//---------------------------------------------------------------------
// public
void kpViewScrollableContainer::clearStatusMessage()
{
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER && 1
qCDebug(kpLogMisc) << "kpViewScrollableContainer::clearStatusMessage()";
#endif
m_bottomRightGrip->setUserMessage(QString());
m_bottomGrip->setUserMessage(QString());
m_rightGrip->setUserMessage(QString());
}
//---------------------------------------------------------------------
// protected
QSize kpViewScrollableContainer::newDocSize(int viewDX, int viewDY) const
{
if (!m_view) {
return {};
}
if (!docResizingGrip()) {
return {};
}
const int docX = static_cast<int>(m_view->transformViewToDocX(m_view->width() + viewDX));
const int docY = static_cast<int>(m_view->transformViewToDocY(m_view->height() + viewDY));
return {qMax(1, docX), qMax(1, docY)};
}
//---------------------------------------------------------------------
// protected
void kpViewScrollableContainer::calculateDocResizingGrip()
{
if (m_bottomRightGrip->isDrawing()) {
m_docResizingGrip = m_bottomRightGrip;
} else if (m_bottomGrip->isDrawing()) {
m_docResizingGrip = m_bottomGrip;
} else if (m_rightGrip->isDrawing()) {
m_docResizingGrip = m_rightGrip;
} else {
m_docResizingGrip = nullptr;
}
}
//---------------------------------------------------------------------
// protected
kpGrip *kpViewScrollableContainer::docResizingGrip() const
{
return m_docResizingGrip;
}
//---------------------------------------------------------------------
// protected
int kpViewScrollableContainer::bottomResizeLineWidth() const
{
if (!docResizingGrip()) {
return -1;
}
if (!m_view) {
return -1;
}
if (docResizingGrip()->type() & kpGrip::Bottom) {
return qMax(m_view->zoomLevelY() / 100, 1);
}
return 1;
}
//---------------------------------------------------------------------
// protected
int kpViewScrollableContainer::rightResizeLineWidth() const
{
if (!docResizingGrip()) {
return -1;
}
if (!m_view) {
return -1;
}
if (docResizingGrip()->type() & kpGrip::Right) {
return qMax(m_view->zoomLevelX() / 100, 1);
}
return 1;
}
//---------------------------------------------------------------------
// protected
QRect kpViewScrollableContainer::bottomResizeLineRect() const
{
if (m_resizeRoundedLastViewX < 0 || m_resizeRoundedLastViewY < 0) {
return {};
}
QRect visibleArea = QRect(QPoint(horizontalScrollBar()->value(), verticalScrollBar()->value()), viewport()->size());
return QRect(QPoint(0, m_resizeRoundedLastViewY), QPoint(m_resizeRoundedLastViewX - 1, m_resizeRoundedLastViewY + bottomResizeLineWidth() - 1))
.intersected(visibleArea);
}
//---------------------------------------------------------------------
// protected
QRect kpViewScrollableContainer::rightResizeLineRect() const
{
if (m_resizeRoundedLastViewX < 0 || m_resizeRoundedLastViewY < 0) {
return {};
}
QRect visibleArea = QRect(QPoint(horizontalScrollBar()->value(), verticalScrollBar()->value()), viewport()->size());
return QRect(QPoint(m_resizeRoundedLastViewX, 0), QPoint(m_resizeRoundedLastViewX + rightResizeLineWidth() - 1, m_resizeRoundedLastViewY - 1))
.intersected(visibleArea);
}
//---------------------------------------------------------------------
// protected
QRect kpViewScrollableContainer::bottomRightResizeLineRect() const
{
if (m_resizeRoundedLastViewX < 0 || m_resizeRoundedLastViewY < 0) {
return {};
}
QRect visibleArea = QRect(QPoint(horizontalScrollBar()->value(), verticalScrollBar()->value()), viewport()->size());
return QRect(QPoint(m_resizeRoundedLastViewX, m_resizeRoundedLastViewY),
QPoint(m_resizeRoundedLastViewX + rightResizeLineWidth() - 1, m_resizeRoundedLastViewY + bottomResizeLineWidth() - 1))
.intersected(visibleArea);
}
//---------------------------------------------------------------------
// private
QRect kpViewScrollableContainer::mapViewToViewport(const QRect &viewRect)
{
if (!viewRect.isValid()) {
return {};
}
QRect ret = viewRect;
ret.translate(-horizontalScrollBar()->value() - viewport()->x(), -verticalScrollBar()->value() - viewport()->y());
return ret;
}
//---------------------------------------------------------------------
void kpViewScrollableContainer::drawResizeLines()
{
static const char *stipple[] =
{"8 8 2 1", ". c #000000", "# c #ffffff", "....####", "....####", "....####", "....####", "####....", "####....", "####....", "####...."};
QPainter p(m_overlay);
p.setBackground(QPixmap(stipple));
const QRect rightRect = rightResizeLineRect();
if (rightRect.isValid()) {
QRect rect = mapViewToViewport(rightRect);
p.setBrushOrigin(rect.x(), rect.y());
p.eraseRect(rect);
}
const QRect bottomRect = bottomResizeLineRect();
if (bottomRect.isValid()) {
QRect rect = mapViewToViewport(bottomRect);
p.setBrushOrigin(rect.x(), rect.y());
p.eraseRect(rect);
}
const QRect bottomRightRect = bottomRightResizeLineRect();
if (bottomRightRect.isValid()) {
QRect rect = mapViewToViewport(bottomRightRect);
p.setBrushOrigin(rect.x(), rect.y());
p.eraseRect(rect);
}
}
//---------------------------------------------------------------------
// protected
void kpViewScrollableContainer::updateResizeLines(int viewX, int viewY, int viewDX, int viewDY)
{
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER && 0
qCDebug(kpLogMisc) << "kpViewScrollableContainer::updateResizeLines(" << viewX << "," << viewY << ")"
<< " oldViewX=" << m_resizeRoundedLastViewX << " oldViewY=" << m_resizeRoundedLastViewY << " viewDX=" << viewDX << " viewDY=" << viewDY;
#endif
if (viewX >= 0 && viewY >= 0) {
m_resizeRoundedLastViewX = static_cast<int>(m_view->transformDocToViewX(m_view->transformViewToDocX(viewX)));
m_resizeRoundedLastViewY = static_cast<int>(m_view->transformDocToViewY(m_view->transformViewToDocY(viewY)));
m_resizeRoundedLastViewDX = viewDX;
m_resizeRoundedLastViewDY = viewDY;
} else {
m_resizeRoundedLastViewX = -1;
m_resizeRoundedLastViewY = -1;
m_resizeRoundedLastViewDX = 0;
m_resizeRoundedLastViewDY = 0;
}
m_overlay->update();
}
//---------------------------------------------------------------------
// protected slot
void kpViewScrollableContainer::slotGripBeganDraw()
{
if (!m_view) {
return;
}
m_overlay->resize(viewport()->size()); // make it cover whole viewport
m_overlay->move(viewport()->pos());
m_overlay->show();
m_overlay->raise(); // make it top-most
calculateDocResizingGrip();
m_haveMovedFromOriginalDocSize = false;
updateResizeLines(m_view->width(), m_view->height(), 0 /*viewDX*/, 0 /*viewDY*/);
Q_EMIT beganDocResize();
}
//---------------------------------------------------------------------
// protected slot
void kpViewScrollableContainer::slotGripContinuedDraw(int inViewDX, int inViewDY, bool dueToDragScroll)
{
int viewDX = inViewDX, viewDY = inViewDY;
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER
qCDebug(kpLogMisc) << "kpViewScrollableContainer::slotGripContinuedDraw(" << viewDX << "," << viewDY << ") size=" << newDocSize(viewDX, viewDY)
<< " dueToDragScroll=" << dueToDragScroll;
#endif
if (!m_view) {
return;
}
if (!dueToDragScroll && beginDragScroll(m_view->zoomLevelX())) {
const QPoint newViewDeltaPoint = docResizingGrip()->viewDeltaPoint();
viewDX = newViewDeltaPoint.x();
viewDY = newViewDeltaPoint.y();
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER
qCDebug(kpLogMisc) << "\tdrag scrolled - new view delta point=" << newViewDeltaPoint;
#endif
}
m_haveMovedFromOriginalDocSize = true;
updateResizeLines(qMax(1, qMax(m_view->width() + viewDX, static_cast<int>(m_view->transformDocToViewX(1)))),
qMax(1, qMax(m_view->height() + viewDY, static_cast<int>(m_view->transformDocToViewY(1)))),
viewDX,
viewDY);
Q_EMIT continuedDocResize(newDocSize());
}
//---------------------------------------------------------------------
// protected slot
void kpViewScrollableContainer::slotGripCancelledDraw()
{
m_haveMovedFromOriginalDocSize = false;
updateResizeLines(-1, -1, 0, 0);
calculateDocResizingGrip();
Q_EMIT cancelledDocResize();
endDragScroll();
m_overlay->hide();
}
//---------------------------------------------------------------------
// protected slot
void kpViewScrollableContainer::slotGripEndedDraw(int viewDX, int viewDY)
{
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER
qCDebug(kpLogMisc) << "kpViewScrollableContainer::slotGripEndedDraw(" << viewDX << "," << viewDY << ") size=" << newDocSize(viewDX, viewDY);
#endif
if (!m_view) {
return;
}
const QSize newSize = newDocSize(viewDX, viewDY);
m_haveMovedFromOriginalDocSize = false;
// must erase lines before view size changes
updateResizeLines(-1, -1, 0, 0);
calculateDocResizingGrip();
Q_EMIT endedDocResize(newSize);
endDragScroll();
m_overlay->hide();
}
//---------------------------------------------------------------------
// protected slot
void kpViewScrollableContainer::slotGripStatusMessageChanged(const QString &string)
{
if (string == m_gripStatusMessage) {
return;
}
m_gripStatusMessage = string;
Q_EMIT statusMessageChanged(string);
}
//---------------------------------------------------------------------
// public slot
void kpViewScrollableContainer::recalculateStatusMessage()
{
#if DEBUG_KP_VIEW_SCROLLABLE_CONTAINER
qCDebug(kpLogMisc) << "kpViewScrollabelContainer::recalculateStatusMessage()";
qCDebug(kpLogMisc) << "\tQCursor::pos=" << QCursor::pos()
<< " global visibleRect=" << kpWidgetMapper::toGlobal(this, QRect(0, 0, viewport->width(), viewport->height()));
#endif
// HACK: After dragging to a new size, handles move so that they are now
// under the mouse pointer but no mouseMoveEvent() is generated for
// any grip. This also handles the case of canceling over any
// grip.
//
if (kpWidgetMapper::toGlobal(this, QRect(0, 0, viewport()->width(), viewport()->height())).contains(QCursor::pos())) {
if (m_bottomRightGrip->containsCursor()) {
m_bottomRightGrip->setUserMessage(i18n("Left drag the handle to resize the image."));
} else if (m_bottomGrip->containsCursor()) {
m_bottomGrip->setUserMessage(i18n("Left drag the handle to resize the image."));
} else if (m_rightGrip->containsCursor()) {
m_rightGrip->setUserMessage(i18n("Left drag the handle to resize the image."));
} else {
clearStatusMessage();
}
} else {
clearStatusMessage();
}
}
//---------------------------------------------------------------------
// protected slot
void kpViewScrollableContainer::slotContentsMoved()
{
kpGrip *grip = docResizingGrip();
if (grip) {
grip->mouseMovedTo(grip->mapFromGlobal(QCursor::pos()), true /*moved due to drag scroll*/);
}
m_overlay->move(viewport()->pos());
m_overlay->update();
Q_EMIT contentsMoved();
}
//---------------------------------------------------------------------
// protected
void kpViewScrollableContainer::disconnectViewSignals()
{
disconnect(m_view, static_cast<void (kpView::*)(int, int)>(&kpView::sizeChanged), this, &kpViewScrollableContainer::updateGrips);
disconnect(m_view, &kpView::destroyed, this, &kpViewScrollableContainer::slotViewDestroyed);
}
//---------------------------------------------------------------------
// protected
void kpViewScrollableContainer::connectViewSignals()
{
connect(m_view, static_cast<void (kpView::*)(int, int)>(&kpView::sizeChanged), this, &kpViewScrollableContainer::updateGrips);
connect(m_view, &kpView::destroyed, this, &kpViewScrollableContainer::slotViewDestroyed);
}
//---------------------------------------------------------------------
// public
kpView *kpViewScrollableContainer::view() const
{
return m_view;
}
//---------------------------------------------------------------------
// public
void kpViewScrollableContainer::setView(kpView *view)
{
if (m_view == view) {
return;
}
if (m_view) {
disconnectViewSignals();
}
m_view = view;
if (m_view) {
m_view->setParent(widget());
m_view->show();
}
updateGrips();
if (m_view) {
connectViewSignals();
}
}
//---------------------------------------------------------------------
// public slot
void kpViewScrollableContainer::updateGrips()
{
if (m_view) {
widget()->resize(m_view->size() + m_bottomRightGrip->size());
// to make the grip more easily "touchable" make it as high as the view
m_rightGrip->setFixedHeight(m_view->height());
m_rightGrip->move(m_view->width(), 0);
// to make the grip more easily "touchable" make it as wide as the view
m_bottomGrip->setFixedWidth(m_view->width());
m_bottomGrip->move(0, m_view->height());
m_bottomRightGrip->move(m_view->width(), m_view->height());
}
m_bottomGrip->setHidden(m_view == nullptr);
m_rightGrip->setHidden(m_view == nullptr);
m_bottomRightGrip->setHidden(m_view == nullptr);
recalculateStatusMessage();
}
//---------------------------------------------------------------------
// protected slot
void kpViewScrollableContainer::slotViewDestroyed()
{
m_view = nullptr;
updateGrips();
}
//---------------------------------------------------------------------
// public slot
bool kpViewScrollableContainer::beginDragScroll(int zoomLevel, bool *didSomething)
{
if (didSomething) {
*didSomething = false;
}
m_zoomLevel = zoomLevel;
const QPoint p = mapFromGlobal(QCursor::pos());
bool stopDragScroll = true;
bool scrolled = false;
if (!noDragScrollRect().contains(p)) {
if (m_dragScrollTimer->isActive()) {
if (m_scrollTimerRunOnce) {
scrolled = slotDragScroll();
}
} else {
m_scrollTimerRunOnce = false;
m_dragScrollTimer->start(DragScrollInitialInterval);
}
stopDragScroll = false;
}
if (stopDragScroll) {
m_dragScrollTimer->stop();
}
if (didSomething) {
*didSomething = scrolled;
}
return scrolled;
}
//---------------------------------------------------------------------
// public slot
bool kpViewScrollableContainer::beginDragScroll(int zoomLevel)
{
return beginDragScroll(zoomLevel, nullptr /*don't want scrolled notification*/);
}
//---------------------------------------------------------------------
// public slot
bool kpViewScrollableContainer::endDragScroll()
{
if (m_dragScrollTimer->isActive()) {
m_dragScrollTimer->stop();
return true;
}
return false;
}
//---------------------------------------------------------------------
static int distanceFromRectToMultiplier(int dist)
{
if (dist < 0) {
return 0;
}
if (dist < DragDistanceFromRectMaxFor1stMultiplier) {
return 1;
}
if (dist < DragDistanceFromRectMaxFor2ndMultiplier) {
return 2;
}
return 4;
}
//---------------------------------------------------------------------
// protected slot
bool kpViewScrollableContainer::slotDragScroll(bool *didSomething)
{
bool scrolled = false;
if (didSomething) {
*didSomething = false;
}
const QRect rect = noDragScrollRect();
const QPoint pos = mapFromGlobal(QCursor::pos());
int dx = 0, dy = 0;
int dxMultiplier = 0, dyMultiplier = 0;
if (pos.x() < rect.left()) {
dx = -DragScrollNumPixels;
dxMultiplier = distanceFromRectToMultiplier(rect.left() - pos.x());
} else if (pos.x() > rect.right()) {
dx = +DragScrollNumPixels;
dxMultiplier = distanceFromRectToMultiplier(pos.x() - rect.right());
}
if (pos.y() < rect.top()) {
dy = -DragScrollNumPixels;
dyMultiplier = distanceFromRectToMultiplier(rect.top() - pos.y());
} else if (pos.y() > rect.bottom()) {
dy = +DragScrollNumPixels;
dyMultiplier = distanceFromRectToMultiplier(pos.y() - rect.bottom());
}
dx *= dxMultiplier; // * qMax (1, m_zoomLevel / 100);
dy *= dyMultiplier; // * qMax (1, m_zoomLevel / 100);
if (dx || dy) {
const int oldContentsX = horizontalScrollBar()->value(), oldContentsY = verticalScrollBar()->value();
horizontalScrollBar()->setValue(oldContentsX + dx);
verticalScrollBar()->setValue(oldContentsY + dy);
scrolled = (oldContentsX != horizontalScrollBar()->value() || oldContentsY != verticalScrollBar()->value());
if (scrolled) {
QRegion region = QRect(horizontalScrollBar()->value(), verticalScrollBar()->value(), viewport()->width(), viewport()->height());
region -= QRect(oldContentsX, oldContentsY, viewport()->width(), viewport()->height());
// Repaint newly exposed region immediately to reduce tearing
// of scrollView.
m_view->repaint(region);
}
}
m_dragScrollTimer->start(DragScrollInterval);
m_scrollTimerRunOnce = true;
if (didSomething) {
*didSomething = scrolled;
}
return scrolled;
}
//---------------------------------------------------------------------
// protected virtual
void kpViewScrollableContainer::wheelEvent(QWheelEvent *e)
{
e->ignore();
if (m_view) {
m_view->wheelEvent(e);
}
if (!e->isAccepted()) {
QScrollArea::wheelEvent(e);
}
}
//---------------------------------------------------------------------------------
QRect kpViewScrollableContainer::noDragScrollRect() const
{
return {DragScrollLeftTopMargin,
DragScrollLeftTopMargin,
width() - DragScrollLeftTopMargin - DragScrollRightBottomMargin,
height() - DragScrollLeftTopMargin - DragScrollRightBottomMargin};
}
//---------------------------------------------------------------------
// protected virtual [base QScrollView]
void kpViewScrollableContainer::resizeEvent(QResizeEvent *e)
{
QScrollArea::resizeEvent(e);
Q_EMIT resized();
}
//---------------------------------------------------------------------
#include "moc_kpViewScrollableContainer.cpp"
|