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
|
|
|
{
|
|
|
|
if (parent())
|
|
|
|
setGeometry(QRect(160, 120, 320, 240));
|
|
|
|
else {
|
|
|
|
setGeometry(QRect(10, 10, 640, 480));
|
|
|
|
|
|
|
|
setSizeIncrement(QSize(10, 10));
|
|
|
|
setBaseSize(QSize(640, 480));
|
|
|
|
setMinimumSize(QSize(240, 160));
|
|
|
|
setMaximumSize(QSize(800, 600));
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
m_renderTimer = 0;
|
|
|
|
}
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
scheduleRender();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
if (!m_renderTimer)
|
|
|
|
m_renderTimer = startTimer(1);
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::timerEvent(QTimerEvent *)
|
2011-12-06 11:59:21 +00:00
|
|
|
{
|
|
|
|
render();
|
|
|
|
killTimer(m_renderTimer);
|
|
|
|
m_renderTimer = 0;
|
|
|
|
}
|
|
|
|
|
2015-01-27 13:13:39 +00:00
|
|
|
void RasterWindow::render()
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|