Commit c7ba2798 authored by Samuel Rødal's avatar Samuel Rødal Committed by Qt by Nokia
Browse files

Added rotation animation to paintedwindow example.


This serves as a useful test case for the QScreen orientation API.

Change-Id: I009ebd8b6d345453620420d84f3ff9d2d2e2663e
Reviewed-by: default avatarJørgen Lind <jorgen.lind@nokia.com>
parent f1a67c65
dev 5.10 5.11 5.12 5.12.1 5.12.10 5.12.11 5.12.12 5.12.2 5.12.3 5.12.4 5.12.5 5.12.6 5.12.7 5.12.8 5.12.9 5.13 5.13.0 5.13.1 5.13.2 5.14 5.14.0 5.14.1 5.14.2 5.15 5.15.0 5.15.1 5.15.2 5.3 5.4 5.5 5.6 5.7 5.8 5.9 5.9.8 6.0 6.0.0 6.1 6.1.0 6.1.1 6.1.2 6.1.3 6.2 6.2.0 6.2.1 6.2.2 old/5.0 old/5.1 old/5.2 wip/cmake wip/highdpi wip/lite wip/mir wip/nacl wip/network-test-server wip/remac wip/tizen wip/webassembly v5.15.0-alpha1 v5.14.1 v5.14.0 v5.14.0-rc2 v5.14.0-rc1 v5.14.0-beta3 v5.14.0-beta2 v5.14.0-beta1 v5.14.0-alpha1 v5.13.2 v5.13.1 v5.13.0 v5.13.0-rc3 v5.13.0-rc2 v5.13.0-rc1 v5.13.0-beta4 v5.13.0-beta3 v5.13.0-beta2 v5.13.0-beta1 v5.13.0-alpha1 v5.12.7 v5.12.6 v5.12.5 v5.12.4 v5.12.3 v5.12.2 v5.12.1 v5.12.0 v5.12.0-rc2 v5.12.0-rc1 v5.12.0-beta4 v5.12.0-beta3 v5.12.0-beta2 v5.12.0-beta1 v5.12.0-alpha1 v5.11.3 v5.11.2 v5.11.1 v5.11.0 v5.11.0-rc2 v5.11.0-rc1 v5.11.0-beta4 v5.11.0-beta3 v5.11.0-beta2 v5.11.0-beta1 v5.11.0-alpha1 v5.10.1 v5.10.0 v5.10.0-rc3 v5.10.0-rc2 v5.10.0-rc1 v5.10.0-beta4 v5.10.0-beta3 v5.10.0-beta2 v5.10.0-beta1 v5.10.0-alpha1 v5.9.9 v5.9.8 v5.9.7 v5.9.6 v5.9.5 v5.9.4 v5.9.3 v5.9.2 v5.9.1 v5.9.0 v5.9.0-rc2 v5.9.0-rc1 v5.9.0-beta4 v5.9.0-beta3 v5.9.0-beta2 v5.9.0-beta1 v5.9.0-alpha1 v5.8.0 v5.8.0-rc1 v5.8.0-beta1 v5.8.0-alpha1 v5.7.1 v5.7.0 v5.7.0-rc1 v5.7.0-beta1 v5.7.0-alpha1 v5.6.3 v5.6.2 v5.6.1 v5.6.1-1 v5.6.0 v5.6.0-rc1 v5.6.0-beta1 v5.6.0-alpha1 v5.5.1 v5.5.0 v5.5.0-rc1 v5.5.0-beta1 v5.5.0-alpha1 v5.4.2 v5.4.1 v5.4.0 v5.4.0-rc1 v5.4.0-beta1 v5.4.0-alpha1 v5.3.2 v5.3.1 v5.3.0 v5.3.0-rc1 v5.3.0-beta1 v5.3.0-alpha1 v5.2.1 v5.2.0 v5.2.0-rc1 v5.2.0-beta1 v5.2.0-alpha1 v5.1.1 v5.1.0 v5.1.0-rc2 v5.1.0-rc1 v5.1.0-beta1 v5.1.0-alpha1 v5.0.2 v5.0.1 v5.0.0 v5.0.0-rc2 v5.0.0-rc1 v5.0.0-beta2 v5.0.0-beta1 qt-v5.0.0-alpha1
No related merge requests found
Showing with 141 additions and 23 deletions
......@@ -53,7 +53,7 @@ int main(int argc, char **argv)
QRect screenGeometry = screen->availableGeometry();
QPoint center = screenGeometry.center();
QRect windowRect(0, 0, 640, 480);
QRect windowRect(0, 0, 480, 640);
PaintedWindow window;
window.setGeometry(QRect(center - windowRect.center(), windowRect.size()));
......@@ -61,3 +61,4 @@ int main(int argc, char **argv)
app.exec();
}
......@@ -64,6 +64,21 @@ PaintedWindow::PaintedWindow()
m_context = new QOpenGLContext(this);
m_context->setFormat(format);
m_context->create();
m_animation = new QPropertyAnimation(this, "rotation");
m_animation->setStartValue(qreal(0));
m_animation->setEndValue(qreal(1));
m_animation->setDuration(500);
setOrientation(QGuiApplication::primaryScreen()->primaryOrientation());
m_rotation = 0;
m_targetOrientation = orientation();
m_nextTargetOrientation = Qt::UnknownOrientation;
connect(screen(), SIGNAL(currentOrientationChanged(Qt::ScreenOrientation)), this, SLOT(orientationChanged(Qt::ScreenOrientation)));
connect(m_animation, SIGNAL(finished()), this, SLOT(rotationDone()));
connect(this, SIGNAL(rotationChanged(qreal)), this, SLOT(paint()));
}
void PaintedWindow::resizeEvent(QResizeEvent *)
......@@ -79,21 +94,18 @@ void PaintedWindow::exposeEvent(QExposeEvent *)
void PaintedWindow::mousePressEvent(QMouseEvent *)
{
Qt::ScreenOrientation o = orientation();
if (o == Qt::UnknownOrientation)
o = QGuiApplication::primaryScreen()->primaryOrientation();
switch (o) {
case Qt::LandscapeOrientation:
setOrientation(Qt::PortraitOrientation);
orientationChanged(Qt::PortraitOrientation);
break;
case Qt::PortraitOrientation:
setOrientation(Qt::InvertedLandscapeOrientation);
orientationChanged(Qt::InvertedLandscapeOrientation);
break;
case Qt::InvertedLandscapeOrientation:
setOrientation(Qt::InvertedPortraitOrientation);
orientationChanged(Qt::InvertedPortraitOrientation);
break;
case Qt::InvertedPortraitOrientation:
setOrientation(Qt::LandscapeOrientation);
orientationChanged(Qt::LandscapeOrientation);
break;
default:
Q_ASSERT(false);
......@@ -102,31 +114,110 @@ void PaintedWindow::mousePressEvent(QMouseEvent *)
paint();
}
void PaintedWindow::orientationChanged(Qt::ScreenOrientation newOrientation)
{
if (orientation() == newOrientation)
return;
if (m_animation->state() == QAbstractAnimation::Running) {
m_nextTargetOrientation = newOrientation;
return;
}
Qt::ScreenOrientation screenOrientation = screen()->primaryOrientation();
QRect rect(0, 0, width(), height());
m_prevImage = QImage(width(), height(), QImage::Format_ARGB32_Premultiplied);
m_nextImage = QImage(width(), height(), QImage::Format_ARGB32_Premultiplied);
m_prevImage.fill(0);
m_nextImage.fill(0);
QPainter p;
p.begin(&m_prevImage);
p.setTransform(QScreen::transformBetween(orientation(), screenOrientation, rect));
paint(&p, QScreen::mapBetween(orientation(), screenOrientation, rect));
p.end();
p.begin(&m_nextImage);
p.setTransform(QScreen::transformBetween(newOrientation, screenOrientation, rect));
paint(&p, QScreen::mapBetween(newOrientation, screenOrientation, rect));
p.end();
m_deltaRotation = QScreen::angleBetween(newOrientation, orientation());
if (m_deltaRotation > 180)
m_deltaRotation = 180 - m_deltaRotation;
m_targetOrientation = newOrientation;
m_animation->start();
}
void PaintedWindow::rotationDone()
{
setOrientation(m_targetOrientation);
if (m_nextTargetOrientation != Qt::UnknownOrientation) {
Q_ASSERT(m_animation->state() != QAbstractAnimation::Running);
orientationChanged(m_nextTargetOrientation);
m_nextTargetOrientation = Qt::UnknownOrientation;
}
}
void PaintedWindow::setRotation(qreal r)
{
if (r != m_rotation) {
m_rotation = r;
emit rotationChanged(r);
}
}
void PaintedWindow::paint()
{
m_context->makeCurrent(this);
QOpenGLPaintDevice device(size());
Qt::ScreenOrientation screenOrientation = QGuiApplication::primaryScreen()->primaryOrientation();
Qt::ScreenOrientation screenOrientation = screen()->primaryOrientation();
Qt::ScreenOrientation appOrientation = orientation();
QRect rect(0, 0, width(), height());
QRect mapped = QScreen::mapBetween(appOrientation, screenOrientation, rect);
QPainterPath path;
path.addEllipse(mapped);
QOpenGLPaintDevice device(size());
QPainter painter(&device);
painter.setTransform(QScreen::transformBetween(appOrientation, screenOrientation, rect));
painter.fillRect(mapped, Qt::white);
painter.setRenderHint(QPainter::Antialiasing);
QPainterPath path;
path.addEllipse(rect);
painter.setCompositionMode(QPainter::CompositionMode_Source);
painter.fillRect(rect, Qt::transparent);
painter.setCompositionMode(QPainter::CompositionMode_SourceOver);
painter.fillPath(path, Qt::blue);
QFont font;
font.setPixelSize(64);
painter.setFont(font);
painter.drawText(mapped, Qt::AlignCenter, "Hello");
painter.end();
if (orientation() != m_targetOrientation) {
painter.setRenderHint(QPainter::SmoothPixmapTransform);
painter.save();
painter.translate(width() / 2, height() / 2);
painter.rotate(m_deltaRotation * m_rotation);
painter.translate(-width() / 2, -height() / 2);
painter.drawImage(0, 0, m_prevImage);
painter.restore();
painter.translate(width() / 2, height() / 2);
painter.rotate(m_deltaRotation * m_rotation - m_deltaRotation);
painter.translate(-width() / 2, -height() / 2);
painter.setOpacity(m_rotation);
painter.drawImage(0, 0, m_nextImage);
} else {
QRect mapped = QScreen::mapBetween(appOrientation, screenOrientation, rect);
painter.setTransform(QScreen::transformBetween(appOrientation, screenOrientation, rect));
paint(&painter, mapped);
painter.end();
}
m_context->swapBuffers(this);
}
void PaintedWindow::paint(QPainter *painter, const QRect &rect)
{
painter->setRenderHint(QPainter::Antialiasing);
QFont font;
font.setPixelSize(64);
painter->setFont(font);
painter->drawText(rect, Qt::AlignCenter, "Hello");
}
......@@ -44,7 +44,10 @@
#include <QtGui/qopenglshaderprogram.h>
#include <QtGui/qopenglframebufferobject.h>
#include <QPropertyAnimation>
#include <QColor>
#include <QImage>
#include <QTime>
QT_BEGIN_NAMESPACE
......@@ -54,16 +57,39 @@ QT_END_NAMESPACE
class PaintedWindow : public QWindow
{
Q_OBJECT
Q_PROPERTY(qreal rotation READ rotation WRITE setRotation NOTIFY rotationChanged)
public:
PaintedWindow();
qreal rotation() const { return m_rotation; }
signals:
void rotationChanged(qreal rotation);
private slots:
void paint();
void setRotation(qreal r);
void orientationChanged(Qt::ScreenOrientation newOrientation);
void rotationDone();
private:
void resizeEvent(QResizeEvent *);
void exposeEvent(QExposeEvent *);
void mousePressEvent(QMouseEvent *);
void paint(QPainter *painter, const QRect &rect);
QOpenGLContext *m_context;
qreal m_rotation;
QImage m_prevImage;
QImage m_nextImage;
qreal m_deltaRotation;
Qt::ScreenOrientation m_targetOrientation;
Qt::ScreenOrientation m_nextTargetOrientation;
QPropertyAnimation *m_animation;
QTimer *m_paintTimer;
};
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment