summaryrefslogtreecommitdiffstats
path: root/tests/arthur/shower
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@nokia.com>2009-03-23 09:34:13 (GMT)
committerSimon Hausmann <simon.hausmann@nokia.com>2009-03-23 09:34:13 (GMT)
commit67ad0519fd165acee4a4d2a94fa502e9e4847bd0 (patch)
tree1dbf50b3dff8d5ca7e9344733968c72704eb15ff /tests/arthur/shower
downloadQt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.zip
Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.tar.gz
Qt-67ad0519fd165acee4a4d2a94fa502e9e4847bd0.tar.bz2
Long live Qt!
Diffstat (limited to 'tests/arthur/shower')
-rw-r--r--tests/arthur/shower/main.cpp99
-rw-r--r--tests/arthur/shower/shower.cpp125
-rw-r--r--tests/arthur/shower/shower.h73
-rw-r--r--tests/arthur/shower/shower.pro16
4 files changed, 313 insertions, 0 deletions
diff --git a/tests/arthur/shower/main.cpp b/tests/arthur/shower/main.cpp
new file mode 100644
index 0000000..5064d6e
--- /dev/null
+++ b/tests/arthur/shower/main.cpp
@@ -0,0 +1,99 @@
+/****************************************************************************
+**
+** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: Qt Software Information (qt-info@nokia.com)
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the either Technology Preview License Agreement or the
+** Beta Release License Agreement.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain
+** additional rights. These rights are described in the Nokia Qt LGPL
+** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
+** package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 3.0 requirements will be
+** met: http://www.gnu.org/copyleft/gpl.html.
+**
+** If you are unsure which license is appropriate for your use, please
+** contact the sales department at qt-sales@nokia.com.
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+#include <QApplication>
+#include <QtDebug>
+
+#include "shower.h"
+#include "qengines.h"
+
+static void usage()
+{
+ qDebug()<<"shower <-engine engineName> file";
+}
+
+int main(int argc, char **argv)
+{
+ QApplication app(argc, argv);
+
+ QString engine = "Raster";
+ QString file;
+ for (int i = 1; i < argc; ++i) {
+ QString opt = argv[i];
+ if (opt == "-engine") {
+ ++i;
+ engine = QString(argv[i]);
+ } else if (opt.startsWith('-')) {
+ qDebug()<<"Unsupported option "<<opt;
+ } else
+ file = QString(argv[i]);
+ }
+
+ bool engineExists = false;
+ QStringList engineNames;
+ foreach(QEngine *qengine, QtEngines::self()->engines()) {
+ if (qengine->name() == engine) {
+ engineExists = true;
+ }
+ engineNames.append(qengine->name());
+ }
+
+ if (file.isEmpty() || engine.isEmpty()) {
+ usage();
+ return 1;
+ }
+
+ if (!engineExists) {
+ qDebug()<<"Engine "<<engine<<" doesn't exist!\n"
+ <<"Available engines: "<<engineNames;
+ usage();
+ return 1;
+ }
+ if (!QFile::exists(file)) {
+ qDebug()<<"Specified file "<<file<<" doesn't exist!";
+ return 1;
+ }
+
+ qDebug()<<"Using engine: "<<engine;
+ Shower shower(file, engine);
+ shower.show();
+
+ return app.exec();
+}
diff --git a/tests/arthur/shower/shower.cpp b/tests/arthur/shower/shower.cpp
new file mode 100644
index 0000000..634fd5c
--- /dev/null
+++ b/tests/arthur/shower/shower.cpp
@@ -0,0 +1,125 @@
+/****************************************************************************
+**
+** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: Qt Software Information (qt-info@nokia.com)
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the either Technology Preview License Agreement or the
+** Beta Release License Agreement.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain
+** additional rights. These rights are described in the Nokia Qt LGPL
+** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
+** package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 3.0 requirements will be
+** met: http://www.gnu.org/copyleft/gpl.html.
+**
+** If you are unsure which license is appropriate for your use, please
+** contact the sales department at qt-sales@nokia.com.
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+#include "shower.h"
+
+#include "qengines.h"
+
+#include <QApplication>
+#include <QSvgRenderer>
+#include <QPainter>
+#include <QPaintEvent>
+#include <QFile>
+#include <QTextStream>
+#include <QTemporaryFile>
+#include <QDir>
+#include <QtDebug>
+
+static QString loadFile(const QString &name)
+{
+ QFile file(name);
+ if (!file.open(QFile::ReadOnly)) {
+ qDebug("Can't open file '%s'", qPrintable(name));
+ return QString();
+ }
+ QTextStream str(&file);
+ return str.readAll();
+}
+
+Shower::Shower(const QString &file,
+ const QString &engineName)
+ : QWidget(0)
+{
+ foreach(QEngine *qengine, QtEngines::self()->engines()) {
+ if (qengine->name() == engineName) {
+ engine = qengine;
+ break;
+ }
+ }
+
+ QFileInfo fi(file);
+ baseDataDir = fi.absolutePath();
+ if (file.endsWith("svg")) {
+ renderer = new QSvgRenderer(this);
+ renderer->load(file);
+ } else {
+ qps = QFileInfo(file);
+ QString script = loadFile(qps.absoluteFilePath());
+ qpsScript = script.split("\n", QString::SkipEmptyParts);
+ renderer = 0;
+ if (qpsScript.isEmpty()) {
+ printf("failed to read file: '%s'\n", qPrintable(qps.fileName()));
+ return;
+ }
+ }
+}
+
+
+QSize Shower::sizeHint() const
+{
+ return QSize(600, 600);
+}
+
+
+void Shower::paintEvent(QPaintEvent *)
+{
+ if (buffer.size() != size()) {
+ buffer = QImage(size(), QImage::Format_ARGB32_Premultiplied);
+ QPainter p(&buffer);
+ p.setViewport(0, 0, width(), height());
+ p.eraseRect(0, 0, width(), height());
+ engine->prepare(size());
+ if (renderer) {
+ engine->render(renderer, QString("sample"));
+ } else {
+ engine->render(qpsScript, qps.absoluteFilePath());
+ }
+ if (!engine->drawOnPainter(&p)) {
+ QString tempFileName = QString("%1sample.png").arg(QDir::tempPath());
+ engine->save(tempFileName);
+ QImage img(tempFileName);
+ engine->cleanup();
+ QFile::remove(tempFileName);
+ p.drawImage(0, 0, img);
+ }
+ }
+ QPainter pt(this);
+ pt.drawImage(0, 0, buffer);
+}
diff --git a/tests/arthur/shower/shower.h b/tests/arthur/shower/shower.h
new file mode 100644
index 0000000..c6f0fd4
--- /dev/null
+++ b/tests/arthur/shower/shower.h
@@ -0,0 +1,73 @@
+/****************************************************************************
+**
+** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+** Contact: Qt Software Information (qt-info@nokia.com)
+**
+** This file is part of the test suite of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** No Commercial Usage
+** This file contains pre-release code and may not be distributed.
+** You may use this file in accordance with the terms and conditions
+** contained in the either Technology Preview License Agreement or the
+** Beta Release License Agreement.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 as published by the Free Software
+** Foundation and appearing in the file LICENSE.LGPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU Lesser General Public License version 2.1 requirements
+** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain
+** additional rights. These rights are described in the Nokia Qt LGPL
+** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
+** package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3.0 as published by the Free Software
+** Foundation and appearing in the file LICENSE.GPL included in the
+** packaging of this file. Please review the following information to
+** ensure the GNU General Public License version 3.0 requirements will be
+** met: http://www.gnu.org/copyleft/gpl.html.
+**
+** If you are unsure which license is appropriate for your use, please
+** contact the sales department at qt-sales@nokia.com.
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+#ifndef SHOWER_H
+#define SHOWER_H
+
+#include <QWidget>
+#include <QImage>
+#include <QFileInfo>
+#include <QStringList>
+#include <QSize>
+
+QT_FORWARD_DECLARE_CLASS(QSvgRenderer)
+QT_FORWARD_DECLARE_CLASS(QPaintEvent)
+QT_FORWARD_DECLARE_CLASS(QEngine)
+
+class Shower : public QWidget
+{
+ Q_OBJECT
+public:
+ Shower(const QString &file,
+ const QString &engine);
+
+ QSize sizeHint() const;
+protected:
+ void paintEvent(QPaintEvent *e);
+private:
+ QEngine *engine;
+ QSvgRenderer *renderer;
+ QImage buffer;
+ QStringList qpsScript;
+ QFileInfo qps;
+ QString baseDataDir;
+};
+
+#endif
diff --git a/tests/arthur/shower/shower.pro b/tests/arthur/shower/shower.pro
new file mode 100644
index 0000000..000c6e4
--- /dev/null
+++ b/tests/arthur/shower/shower.pro
@@ -0,0 +1,16 @@
+# -*- Mode: makefile -*-
+COMMON_FOLDER = $$PWD/../common
+include(../arthurtester.pri)
+TEMPLATE = app
+TARGET = shower
+DEPENDPATH += .
+INCLUDEPATH += .
+DESTDIR = ../bin
+
+QT += xml opengl svg qt3support
+
+# Input
+HEADERS += shower.h
+SOURCES += main.cpp shower.cpp
+
+