49154acde3
Child QWindows (or in the case of QWindows embedded in native applications: top level QWindows where the corresponding NSView is a child of another view, so not being the contentView of its window), still need some of the NSWindow notifications to e.g. update their exposed state when the window becomes visible. We make sure to send the notification to all QCococaWindow children of the relevant NSWindow, and let each callback decide if it should only apply to content views. This fixes an issue where a QWindow would never be exposed if the window was a child NSView and added to a NSWindow that was yet to be shown. Change-Id: I7f7df8bc5f4ca3ac553a2c146f8c3229b197c059 Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
178 lines
4.3 KiB
C++
178 lines
4.3 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of the test suite of the Qt Toolkit.
|
|
**
|
|
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
|
|
** 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.
|
|
**
|
|
** 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.
|
|
**
|
|
** $QT_END_LICENSE$
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "rasterwindow.h"
|
|
|
|
//#include <private/qguiapplication_p.h>
|
|
|
|
#include <QBackingStore>
|
|
#include <QPainter>
|
|
#include <QtWidgets>
|
|
|
|
static int colorIndexId = 0;
|
|
|
|
QColor colorTable[] =
|
|
{
|
|
QColor("#f09f8f"),
|
|
QColor("#a2bff2"),
|
|
QColor("#c0ef8f")
|
|
};
|
|
|
|
RasterWindow::RasterWindow(QRasterWindow *parent)
|
|
: QRasterWindow(parent)
|
|
, m_backgroundColorIndex(colorIndexId++)
|
|
{
|
|
initialize();
|
|
}
|
|
|
|
void RasterWindow::initialize()
|
|
{
|
|
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);
|
|
}
|
|
|
|
void RasterWindow::mousePressEvent(QMouseEvent *event)
|
|
{
|
|
m_lastPos = event->pos();
|
|
unsetCursor();
|
|
}
|
|
|
|
void RasterWindow::mouseMoveEvent(QMouseEvent *event)
|
|
{
|
|
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();
|
|
}
|
|
|
|
void RasterWindow::mouseReleaseEvent(QMouseEvent *event)
|
|
{
|
|
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();
|
|
}
|
|
|
|
void RasterWindow::exposeEvent(QExposeEvent *)
|
|
{
|
|
render();
|
|
}
|
|
|
|
void RasterWindow::resizeEvent(QResizeEvent *)
|
|
{
|
|
QImage old = m_image;
|
|
|
|
//qDebug() << "RasterWindow::resizeEvent" << width << height;
|
|
|
|
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();
|
|
}
|
|
|
|
void RasterWindow::keyPressEvent(QKeyEvent *event)
|
|
{
|
|
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();
|
|
}
|
|
|
|
void RasterWindow::scheduleRender()
|
|
{
|
|
requestUpdate();
|
|
}
|
|
|
|
bool RasterWindow::event(QEvent *e)
|
|
{
|
|
if (e->type() == QEvent::UpdateRequest)
|
|
render();
|
|
|
|
return QWindow::event(e);
|
|
}
|
|
|
|
void RasterWindow::render()
|
|
{
|
|
if (!isExposed()) {
|
|
qDebug() << "Skipping render, not exposed";
|
|
return;
|
|
}
|
|
|
|
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);
|
|
}
|
|
|
|
|