2011-04-27 10:05:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2021-04-07 20:14:23 +00:00
|
|
|
** Copyright (C) 2021 The Qt Company Ltd.
|
2016-01-22 12:24:00 +00:00
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** This file is part of the examples of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:BSD$
|
2016-01-22 12:24:00 +00:00
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
**
|
|
|
|
** BSD License Usage
|
|
|
|
** Alternatively, you may use this file under the terms of the BSD license
|
|
|
|
** as follows:
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** "Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions are
|
|
|
|
** met:
|
|
|
|
** * Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** * Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in
|
|
|
|
** the documentation and/or other materials provided with the
|
|
|
|
** distribution.
|
2015-02-13 11:15:33 +00:00
|
|
|
** * Neither the name of The Qt Company Ltd nor the names of its
|
|
|
|
** contributors may be used to endorse or promote products derived
|
|
|
|
** from this software without specific prior written permission.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
|
2012-01-24 06:17:24 +00:00
|
|
|
**
|
2011-04-27 10:05:43 +00:00
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-02-03 16:09:10 +00:00
|
|
|
#include "mandelbrotwidget.h"
|
|
|
|
|
2012-11-23 13:27:50 +00:00
|
|
|
#include <QPainter>
|
|
|
|
#include <QKeyEvent>
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
//! [0]
|
2020-01-14 07:31:02 +00:00
|
|
|
const double DefaultCenterX = -0.637011;
|
|
|
|
const double DefaultCenterY = -0.0395159;
|
|
|
|
const double DefaultScale = 0.00403897;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
2020-01-14 07:31:02 +00:00
|
|
|
const double ZoomInFactor = 0.8;
|
2011-04-27 10:05:43 +00:00
|
|
|
const double ZoomOutFactor = 1 / ZoomInFactor;
|
|
|
|
const int ScrollStep = 20;
|
|
|
|
//! [0]
|
|
|
|
|
|
|
|
//! [1]
|
2020-01-14 07:31:02 +00:00
|
|
|
MandelbrotWidget::MandelbrotWidget(QWidget *parent) :
|
|
|
|
QWidget(parent),
|
|
|
|
centerX(DefaultCenterX),
|
|
|
|
centerY(DefaultCenterY),
|
|
|
|
pixmapScale(DefaultScale),
|
|
|
|
curScale(DefaultScale)
|
2011-04-27 10:05:43 +00:00
|
|
|
{
|
2021-04-07 20:14:23 +00:00
|
|
|
help = tr("Use mouse wheel or the '+' and '-' keys to zoom. "
|
|
|
|
"Press and hold left mouse button to scroll.");
|
2019-02-03 16:09:10 +00:00
|
|
|
connect(&thread, &RenderThread::renderedImage,
|
|
|
|
this, &MandelbrotWidget::updatePixmap);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
setWindowTitle(tr("Mandelbrot"));
|
2020-01-14 07:31:02 +00:00
|
|
|
#if QT_CONFIG(cursor)
|
2011-04-27 10:05:43 +00:00
|
|
|
setCursor(Qt::CrossCursor);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
//! [1]
|
|
|
|
|
|
|
|
//! [2]
|
|
|
|
void MandelbrotWidget::paintEvent(QPaintEvent * /* event */)
|
|
|
|
{
|
|
|
|
QPainter painter(this);
|
|
|
|
painter.fillRect(rect(), Qt::black);
|
|
|
|
|
|
|
|
if (pixmap.isNull()) {
|
|
|
|
painter.setPen(Qt::white);
|
2012-11-23 13:27:50 +00:00
|
|
|
painter.drawText(rect(), Qt::AlignCenter, tr("Rendering initial image, please wait..."));
|
2011-04-27 10:05:43 +00:00
|
|
|
//! [2] //! [3]
|
|
|
|
return;
|
|
|
|
//! [3] //! [4]
|
|
|
|
}
|
|
|
|
//! [4]
|
|
|
|
|
|
|
|
//! [5]
|
2020-01-14 07:31:02 +00:00
|
|
|
if (qFuzzyCompare(curScale, pixmapScale)) {
|
2011-04-27 10:05:43 +00:00
|
|
|
//! [5] //! [6]
|
|
|
|
painter.drawPixmap(pixmapOffset, pixmap);
|
|
|
|
//! [6] //! [7]
|
|
|
|
} else {
|
|
|
|
//! [7] //! [8]
|
2020-09-01 11:45:24 +00:00
|
|
|
auto previewPixmap = qFuzzyCompare(pixmap.devicePixelRatio(), qreal(1))
|
2020-01-14 12:36:39 +00:00
|
|
|
? pixmap
|
2020-09-01 11:45:24 +00:00
|
|
|
: pixmap.scaled(pixmap.size() / pixmap.devicePixelRatio(), Qt::KeepAspectRatio,
|
2020-01-14 12:36:39 +00:00
|
|
|
Qt::SmoothTransformation);
|
2011-04-27 10:05:43 +00:00
|
|
|
double scaleFactor = pixmapScale / curScale;
|
2020-01-14 12:36:39 +00:00
|
|
|
int newWidth = int(previewPixmap.width() * scaleFactor);
|
|
|
|
int newHeight = int(previewPixmap.height() * scaleFactor);
|
|
|
|
int newX = pixmapOffset.x() + (previewPixmap.width() - newWidth) / 2;
|
|
|
|
int newY = pixmapOffset.y() + (previewPixmap.height() - newHeight) / 2;
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
painter.save();
|
|
|
|
painter.translate(newX, newY);
|
|
|
|
painter.scale(scaleFactor, scaleFactor);
|
Fix some deprecation warnings in examples
googlesuggest.cpp:163:36: warning: ‘void QTreeWidgetItem::setTextColor(int, const QColor&)’ is deprecated: Use QTreeWidgetItem::setForeground() instead [-Wdeprecated-declarations]
xbeltree.cpp:187:34: warning: ‘void QTreeWidget::setItemExpanded(const QTreeWidgetItem*, bool)’ is deprecated: Use QTreeWidgetItem::setExpanded() instead [-Wdeprecated-declarations]
imageitem.cpp:114:21: warning: ‘void QGraphicsItem::setMatrix(const QMatrix&, bool)’ is deprecated: Use setTransform() instead [-Wdeprecated-declarations]
xbelreader.cpp:143:48: warning: ‘void QTreeWidget::setItemExpanded(const QTreeWidgetItem*, bool)’ is deprecated: Use QTreeWidgetItem::setExpanded() instead [-Wdeprecated-declarations]
xbelgenerator.cpp:103:55: warning: ‘bool QTreeWidget::isItemExpanded(const QTreeWidgetItem*) const’ is deprecated: Use QTreeWidgetItem::isExpanded() instead [-Wdeprecated-declarations]
xbelwriter.cpp:90:55: warning: ‘bool QTreeWidget::isItemExpanded(const QTreeWidgetItem*) const’ is deprecated: Use QTreeWidgetItem::isExpanded() instead [-Wdeprecated-declarations]
xbelhandler.cpp:97:50: warning: ‘void QTreeWidget::setItemExpanded(const QTreeWidgetItem*, bool)’ is deprecated: Use QTreeWidgetItem::setExpanded() instead [-Wdeprecated-declarations]
node.cpp:180:60: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
node.cpp:181:64: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
chip.cpp:82:81: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
chip.cpp:84:40: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
chip.cpp:108:93: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
roundrectitem.cpp:65:42: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
roundrectitem.cpp:97:51: warning: ‘void QPainter::drawRoundRect(const QRectF&, int, int)’ is deprecated: Use drawRoundedRect(..., Qt::RelativeSize) instead [-Wdeprecated-declarations]
roundrectitem.cpp:105:34: warning: ‘void QPainter::drawRoundRect(const QRectF&, int, int)’ is deprecated: Use drawRoundedRect(..., Qt::RelativeSize) instead [-Wdeprecated-declarations]
splashitem.cpp:82:57: warning: ‘void QPainter::drawRoundRect(int, int, int, int, int, int)’ is deprecated: Use drawRoundedRect(..., Qt::RelativeSize) instead [-Wdeprecated-declarations]
robot.cpp:116:53: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
robot.cpp:176:49: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
robot.cpp:200:49: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
mandelbrotwidget.cpp:120:41: warning: ‘const QMatrix& QPainter::matrix() const’ is deprecated: Use transform() instead [-Wdeprecated-declarations]
composition.cpp:344:47: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
composition.cpp:346:46: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
colorswatch.cpp:89:34: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
mainwindow.cpp:81:62: warning: ‘void QTreeWidget::setItemSelected(const QTreeWidgetItem*, bool)’ is deprecated: Use QTreeWidgetItem::setSelected() instead [-Wdeprecated-declarations]
puzzlewidget.cpp:172:35: warning: ‘Qt::DropAction QDrag::start(Qt::DropActions)’ is deprecated: Use QDrag::exec() instead [-Wdeprecated-declarations]
spreadsheet.cpp:191:37: warning: ‘QColor QTableWidgetItem::backgroundColor() const’ is deprecated: Use QTableWidgetItem::background() instead [-Wdeprecated-declarations]
spreadsheet.cpp:198:32: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
spreadsheet.cpp:203:24: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
spreadsheet.cpp:238:47: warning: ‘QColor QTableWidgetItem::backgroundColor() const’ is deprecated: Use QTableWidgetItem::background() instead [-Wdeprecated-declarations]
spreadsheet.cpp:249:38: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:494:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:509:56: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:513:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:527:56: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:531:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:545:56: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:549:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:563:55: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:567:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:581:55: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:585:58: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
spreadsheet.cpp:599:55: warning: ‘void QTableWidgetItem::setBackgroundColor(const QColor&)’ is deprecated: Use QTableWidgetItem::setBackground() instead [-Wdeprecated-declarations]
starrating.cpp:91:46: warning: ‘const QBrush& QPalette::foreground() const’ is deprecated: Use QPalette::windowText() instead [-Wdeprecated-declarations]
document.cpp:341:36: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
document.cpp:342:39: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
document.cpp:343:36: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
norwegianwoodstyle.cpp:88:39: warning: ‘const QBrush& QPalette::background() const’ is deprecated: Use QPalette::window() instead [-Wdeprecated-declarations]
norwegianwoodstyle.cpp:89:39: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
norwegianwoodstyle.cpp:188:52: warning: ‘const QBrush& QPalette::background() const’ is deprecated: Use QPalette::window() instead [-Wdeprecated-declarations]
norwegianwoodstyle.cpp:264:56: warning: ‘const QBrush& QPalette::foreground() const’ is deprecated: Use QPalette::windowText() instead [-Wdeprecated-declarations]
plugindialog.cpp:128:49: warning: ‘void QTreeWidget::setItemExpanded(const QTreeWidgetItem*, bool)’ is deprecated: Use QTreeWidgetItem::setExpanded() instead [-Wdeprecated-declarations]
tetrixboard.cpp:361:74: warning: ‘const QBrush& QPalette::background() const’ is deprecated: Use QPalette::window() instead [-Wdeprecated-declarations]
tetrixboard.cpp:408:32: warning: ‘QColor QColor::light(int) const’ is deprecated: Use QColor::lighter() instead [-Wdeprecated-declarations]
tetrixboard.cpp:412:31: warning: ‘QColor QColor::dark(int) const’ is deprecated: Use QColor::darker() instead [-Wdeprecated-declarations]
mandelbrotwidget.cpp:120:41: warning: ‘const QMatrix& QPainter::matrix() const’ is deprecated: Use transform() instead [-Wdeprecated-declarations]
Change-Id: If0afabbc35ef25f127f211c11699011d4ae4ae65
Reviewed-by: Christian Ehrlicher <ch.ehrlicher@gmx.de>
2019-02-06 09:52:23 +00:00
|
|
|
|
|
|
|
QRectF exposed = painter.transform().inverted().mapRect(rect()).adjusted(-1, -1, 1, 1);
|
2020-01-14 12:36:39 +00:00
|
|
|
painter.drawPixmap(exposed, previewPixmap, exposed);
|
2011-04-27 10:05:43 +00:00
|
|
|
painter.restore();
|
|
|
|
}
|
|
|
|
//! [8] //! [9]
|
|
|
|
|
2021-04-07 20:14:23 +00:00
|
|
|
QString text = help;
|
|
|
|
if (!info.isEmpty())
|
|
|
|
text += ' ' + info;
|
2011-04-27 10:05:43 +00:00
|
|
|
QFontMetrics metrics = painter.fontMetrics();
|
2017-08-02 09:39:01 +00:00
|
|
|
int textWidth = metrics.horizontalAdvance(text);
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
painter.setPen(Qt::NoPen);
|
|
|
|
painter.setBrush(QColor(0, 0, 0, 127));
|
2012-11-23 13:27:50 +00:00
|
|
|
painter.drawRect((width() - textWidth) / 2 - 5, 0, textWidth + 10, metrics.lineSpacing() + 5);
|
2011-04-27 10:05:43 +00:00
|
|
|
painter.setPen(Qt::white);
|
2012-11-23 13:27:50 +00:00
|
|
|
painter.drawText((width() - textWidth) / 2, metrics.leading() + metrics.ascent(), text);
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
//! [9]
|
|
|
|
|
|
|
|
//! [10]
|
|
|
|
void MandelbrotWidget::resizeEvent(QResizeEvent * /* event */)
|
|
|
|
{
|
2020-09-01 11:45:24 +00:00
|
|
|
thread.render(centerX, centerY, curScale, size(), devicePixelRatio());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
//! [10]
|
|
|
|
|
|
|
|
//! [11]
|
|
|
|
void MandelbrotWidget::keyPressEvent(QKeyEvent *event)
|
|
|
|
{
|
|
|
|
switch (event->key()) {
|
|
|
|
case Qt::Key_Plus:
|
|
|
|
zoom(ZoomInFactor);
|
|
|
|
break;
|
|
|
|
case Qt::Key_Minus:
|
|
|
|
zoom(ZoomOutFactor);
|
|
|
|
break;
|
|
|
|
case Qt::Key_Left:
|
|
|
|
scroll(-ScrollStep, 0);
|
|
|
|
break;
|
|
|
|
case Qt::Key_Right:
|
|
|
|
scroll(+ScrollStep, 0);
|
|
|
|
break;
|
|
|
|
case Qt::Key_Down:
|
|
|
|
scroll(0, -ScrollStep);
|
|
|
|
break;
|
|
|
|
case Qt::Key_Up:
|
|
|
|
scroll(0, +ScrollStep);
|
|
|
|
break;
|
2021-04-07 20:14:23 +00:00
|
|
|
case Qt::Key_Q:
|
|
|
|
close();
|
|
|
|
break;
|
2011-04-27 10:05:43 +00:00
|
|
|
default:
|
|
|
|
QWidget::keyPressEvent(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//! [11]
|
|
|
|
|
2017-05-30 20:22:22 +00:00
|
|
|
#if QT_CONFIG(wheelevent)
|
2011-04-27 10:05:43 +00:00
|
|
|
//! [12]
|
|
|
|
void MandelbrotWidget::wheelEvent(QWheelEvent *event)
|
|
|
|
{
|
2020-01-14 07:31:02 +00:00
|
|
|
const int numDegrees = event->angleDelta().y() / 8;
|
|
|
|
const double numSteps = numDegrees / double(15);
|
2011-04-27 10:05:43 +00:00
|
|
|
zoom(pow(ZoomInFactor, numSteps));
|
|
|
|
}
|
|
|
|
//! [12]
|
2012-12-02 21:53:25 +00:00
|
|
|
#endif
|
2011-04-27 10:05:43 +00:00
|
|
|
|
|
|
|
//! [13]
|
|
|
|
void MandelbrotWidget::mousePressEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton)
|
2020-06-04 16:07:06 +00:00
|
|
|
lastDragPos = event->position().toPoint();
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
//! [13]
|
|
|
|
|
|
|
|
//! [14]
|
|
|
|
void MandelbrotWidget::mouseMoveEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->buttons() & Qt::LeftButton) {
|
2020-06-04 16:07:06 +00:00
|
|
|
pixmapOffset += event->position().toPoint() - lastDragPos;
|
|
|
|
lastDragPos = event->position().toPoint();
|
2011-04-27 10:05:43 +00:00
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//! [14]
|
|
|
|
|
|
|
|
//! [15]
|
|
|
|
void MandelbrotWidget::mouseReleaseEvent(QMouseEvent *event)
|
|
|
|
{
|
|
|
|
if (event->button() == Qt::LeftButton) {
|
2020-06-04 16:07:06 +00:00
|
|
|
pixmapOffset += event->position().toPoint() - lastDragPos;
|
2011-04-27 10:05:43 +00:00
|
|
|
lastDragPos = QPoint();
|
|
|
|
|
2020-09-01 11:45:24 +00:00
|
|
|
const auto pixmapSize = pixmap.size() / pixmap.devicePixelRatio();
|
2020-01-14 12:36:39 +00:00
|
|
|
int deltaX = (width() - pixmapSize.width()) / 2 - pixmapOffset.x();
|
|
|
|
int deltaY = (height() - pixmapSize.height()) / 2 - pixmapOffset.y();
|
2011-04-27 10:05:43 +00:00
|
|
|
scroll(deltaX, deltaY);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//! [15]
|
|
|
|
|
|
|
|
//! [16]
|
|
|
|
void MandelbrotWidget::updatePixmap(const QImage &image, double scaleFactor)
|
|
|
|
{
|
|
|
|
if (!lastDragPos.isNull())
|
|
|
|
return;
|
|
|
|
|
2021-04-07 20:14:23 +00:00
|
|
|
info = image.text(RenderThread::infoKey());
|
|
|
|
|
2011-04-27 10:05:43 +00:00
|
|
|
pixmap = QPixmap::fromImage(image);
|
|
|
|
pixmapOffset = QPoint();
|
|
|
|
lastDragPos = QPoint();
|
|
|
|
pixmapScale = scaleFactor;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
//! [16]
|
|
|
|
|
|
|
|
//! [17]
|
|
|
|
void MandelbrotWidget::zoom(double zoomFactor)
|
|
|
|
{
|
|
|
|
curScale *= zoomFactor;
|
|
|
|
update();
|
2020-09-01 11:45:24 +00:00
|
|
|
thread.render(centerX, centerY, curScale, size(), devicePixelRatio());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
//! [17]
|
|
|
|
|
|
|
|
//! [18]
|
|
|
|
void MandelbrotWidget::scroll(int deltaX, int deltaY)
|
|
|
|
{
|
|
|
|
centerX += deltaX * curScale;
|
|
|
|
centerY += deltaY * curScale;
|
|
|
|
update();
|
2020-09-01 11:45:24 +00:00
|
|
|
thread.render(centerX, centerY, curScale, size(), devicePixelRatio());
|
2011-04-27 10:05:43 +00:00
|
|
|
}
|
|
|
|
//! [18]
|