summaryrefslogtreecommitdiffstats
path: root/tests/arthur/shower
diff options
context:
space:
mode:
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.pro17
4 files changed, 0 insertions, 314 deletions
diff --git a/tests/arthur/shower/main.cpp b/tests/arthur/shower/main.cpp
deleted file mode 100644
index e501dd8e13..0000000000
--- a/tests/arthur/shower/main.cpp
+++ /dev/null
@@ -1,99 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** GNU Lesser General Public License Usage
-** 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.1, 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.
-**
-** Other Usage
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**
-**
-**
-** $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
deleted file mode 100644
index 51daa1dc3c..0000000000
--- a/tests/arthur/shower/shower.cpp
+++ /dev/null
@@ -1,125 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** GNU Lesser General Public License Usage
-** 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.1, 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.
-**
-** Other Usage
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**
-**
-**
-** $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
deleted file mode 100644
index 1ad190eb39..0000000000
--- a/tests/arthur/shower/shower.h
+++ /dev/null
@@ -1,73 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
-** All rights reserved.
-** Contact: Nokia Corporation (qt-info@nokia.com)
-**
-** This file is part of the test suite of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** GNU Lesser General Public License Usage
-** 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.1, 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.
-**
-** Other Usage
-** Alternatively, this file may be used in accordance with the terms and
-** conditions contained in a signed written agreement between you and Nokia.
-**
-**
-**
-**
-**
-** $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
deleted file mode 100644
index f4f8d47809..0000000000
--- a/tests/arthur/shower/shower.pro
+++ /dev/null
@@ -1,17 +0,0 @@
-# -*- Mode: makefile -*-
-COMMON_FOLDER = $$PWD/../common
-include(../arthurtester.pri)
-TEMPLATE = app
-TARGET = shower
-DEPENDPATH += .
-INCLUDEPATH += .
-DESTDIR = ../bin
-
-QT += xml svg core-private gui-private
-contains(QT_CONFIG, opengl)|contains(QT_CONFIG, opengles1)|contains(QT_CONFIG, opengles2):QT += opengl
-
-# Input
-HEADERS += shower.h
-SOURCES += main.cpp shower.cpp
-
-