2011-12-06 11:59:21 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2011-12-06 11:59:21 +00:00
|
|
|
**
|
|
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
2012-09-19 12:28:29 +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
|
2015-01-28 08:44:43 +00:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
2016-01-15 12:36:27 +00:00
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2012-09-19 12:28:29 +00:00
|
|
|
**
|
2016-01-15 12:36:27 +00:00
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
2011-12-06 11:59:21 +00:00
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
#include "rasterwindow.h"
|
2011-12-06 11:59:21 +00:00
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
//#include <private/qguiapplication_p.h>
|
2011-12-06 11:59:21 +00:00
|
|
|
|
|
|
|
#include <QBackingStore>
|
|
|
|
#include <QPainter>
|
2012-04-12 10:56:20 +00:00
|
|
|
#include <QtWidgets>
|
2011-12-06 11:59:21 +00:00
|
|
|
|
|
|
|
static int colorIndexId = 0;
|
|
|
|
|
|
|
|
QColor colorTable[] =
|
|
|
|
{
|
|
|
|
QColor("#f09f8f"),
|
|
|
|
QColor("#a2bff2"),
|
|
|
|
QColor("#c0ef8f")
|
|
|
|
};
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
RasterWindow::RasterWindow(QRasterWindow *parent)
|
|
|
|
: QRasterWindow(parent)
|
2011-12-06 11:59:21 +00:00
|
|
|
, m_backgroundColorIndex(colorIndexId++)
|
|
|
|
{
|
|
|
|
initialize();
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::initialize()
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
|
|
|
create();
|
|
|
|
m_backingStore = new QBackingStore(this);
|
|
|
|
|
|
|
|
m_image = QImage(geometry().size(), QImage::Format_RGB32);
|
|
|
|
m_image.fill(colorTable[m_backgroundColorIndex % (sizeof(colorTable) / sizeof(colorTable[0]))].rgba());
|
|
|
|
|
|
|
|
m_lastPos = QPoint(-1, -1);
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::mousePressEvent(QMouseEvent *event)
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
|
|
|
m_lastPos = event->pos();
|
macOS: Respect responder chain when setting cursor
There's no need for us to walk our own ancestor chain to figure out which
cursor to set. AppKit will automatically call cursorUpdate: on the view
that would be the hitTest target of the current mouse position, and by
falling back to super when no cursor is set for the current view, we
automatically get the behavior that effectiveWindowCursor tried to solve.
In addition, it solves the case of applyEffectiveWindowCursor applying
the arrowCursor when no cursor was set, which would mean that if any
native parent view of our view _did_ have a cursor set, we would not
fall back to the native view's cursor, but instead override it with
the arrow cursor. Following the responder chain gives the correct
behavior in this case.
Unfortunately, due to rdar://34183708, if a subview of one of our
views uses the legacy cursorRect approach to cursor management, the
cursor will not be reset back to our cursor via cursorUpdate: when
leaving the child and entering the parent view (our view). Moving
our implementation over to the legacy API would solve this problem,
but just propagate it to native parent views of our views, which
could potentially use NSTrackingAreas, and would not have _their_
cursors re-set.
Change-Id: Id20cc03136f0b1d4b9120750fe63ddc455363aaf
Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
2017-08-30 17:48:26 +00:00
|
|
|
unsetCursor();
|
2011-12-06 11:59:21 +00:00
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::mouseMoveEvent(QMouseEvent *event)
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
|
|
|
if (m_lastPos != QPoint(-1, -1)) {
|
|
|
|
QPainter p(&m_image);
|
|
|
|
p.setRenderHint(QPainter::Antialiasing);
|
|
|
|
p.drawLine(m_lastPos, event->pos());
|
|
|
|
m_lastPos = event->pos();
|
|
|
|
}
|
|
|
|
|
|
|
|
scheduleRender();
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::mouseReleaseEvent(QMouseEvent *event)
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
|
|
|
if (m_lastPos != QPoint(-1, -1)) {
|
|
|
|
QPainter p(&m_image);
|
|
|
|
p.setRenderHint(QPainter::Antialiasing);
|
|
|
|
p.drawLine(m_lastPos, event->pos());
|
|
|
|
m_lastPos = QPoint(-1, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
scheduleRender();
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::exposeEvent(QExposeEvent *)
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
2017-08-30 17:05:39 +00:00
|
|
|
render();
|
2011-12-06 11:59:21 +00:00
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::resizeEvent(QResizeEvent *)
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
|
|
|
QImage old = m_image;
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
//qDebug() << "RasterWindow::resizeEvent" << width << height;
|
2011-12-06 11:59:21 +00:00
|
|
|
|
|
|
|
int width = qMax(geometry().width(), old.width());
|
|
|
|
int height = qMax(geometry().height(), old.height());
|
|
|
|
|
|
|
|
if (width > old.width() || height > old.height()) {
|
|
|
|
m_image = QImage(width, height, QImage::Format_RGB32);
|
|
|
|
m_image.fill(colorTable[(m_backgroundColorIndex) % (sizeof(colorTable) / sizeof(colorTable[0]))].rgba());
|
|
|
|
|
|
|
|
QPainter p(&m_image);
|
|
|
|
p.drawImage(0, 0, old);
|
|
|
|
}
|
|
|
|
|
|
|
|
render();
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::keyPressEvent(QKeyEvent *event)
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
|
|
|
switch (event->key()) {
|
|
|
|
case Qt::Key_Backspace:
|
|
|
|
m_text.chop(1);
|
|
|
|
break;
|
|
|
|
case Qt::Key_Enter:
|
|
|
|
case Qt::Key_Return:
|
|
|
|
m_text.append('\n');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
m_text.append(event->text());
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
scheduleRender();
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::scheduleRender()
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
2017-08-30 17:05:39 +00:00
|
|
|
requestUpdate();
|
2011-12-06 11:59:21 +00:00
|
|
|
}
|
|
|
|
|
2017-08-30 17:05:39 +00:00
|
|
|
bool RasterWindow::event(QEvent *e)
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
2017-08-30 17:05:39 +00:00
|
|
|
if (e->type() == QEvent::UpdateRequest)
|
|
|
|
render();
|
|
|
|
|
|
|
|
return QWindow::event(e);
|
2011-12-06 11:59:21 +00:00
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::render()
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
2017-09-11 12:04:51 +00:00
|
|
|
if (!isExposed()) {
|
|
|
|
qDebug() << "Skipping render, not exposed";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-06 11:59:21 +00:00
|
|
|
QRect rect(QPoint(), geometry().size());
|
|
|
|
|
|
|
|
m_backingStore->resize(rect.size());
|
|
|
|
|
|
|
|
m_backingStore->beginPaint(rect);
|
|
|
|
|
|
|
|
QPaintDevice *device = m_backingStore->paintDevice();
|
|
|
|
|
|
|
|
QPainter p(device);
|
|
|
|
p.drawImage(0, 0, m_image);
|
|
|
|
|
|
|
|
QFont font;
|
|
|
|
font.setPixelSize(32);
|
|
|
|
|
|
|
|
p.setFont(font);
|
|
|
|
p.drawText(rect, 0, m_text);
|
|
|
|
|
|
|
|
m_backingStore->endPaint();
|
|
|
|
m_backingStore->flush(rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
|