1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/*
* Copyright 2012 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Author: Juhapekka Piiroinen <juhapekka.piiroinen@canonical.com>
*/
#include "testcaseexecutiondialog.h"
#include "ui_testcaseexecutiondialog.h"
#include <QGLWidget>
TestCaseExecutionDialog::TestCaseExecutionDialog(QString testcase,
QString testdata,
QUrl qmlFile,
QWidget *parent) : QDialog(parent),
m_declarativeView(new QDeclarativeView),
m_ui(new Ui::TestCaseExecutionDialog) {
m_ui->setupUi(this);
m_ui->plainTextEdit->setPlainText(testdata);
this->setWindowTitle(testcase);
m_ui->horizontalLayout->addWidget(m_declarativeView);
QFile qmldata(qmlFile.toLocalFile());
QString data;
if (qmldata.open(QIODevice::ReadOnly)) {
data = qmldata.readAll();
qmldata.close();
}
m_ui->plainTextEdit_2->setPlainText(data);
QTemporaryFile tmpQmlFile;
tmpQmlFile.open();
tmpQmlFile.write(data.toAscii());
tmpQmlFile.close();
qDebug() << "using temporary file" << tmpQmlFile.fileName();
m_declarativeView->engine()->addImportPath("../qml/");
QGLFormat format = QGLFormat::defaultFormat();
format.setSampleBuffers(false);
format.setSwapInterval(1);
QGLWidget *glWidget = new QGLWidget(format);
glWidget->setAttribute(Qt::WA_TranslucentBackground, false);
m_declarativeView->setAttribute(Qt::WA_TranslucentBackground, false);
m_declarativeView->setAttribute(Qt::WA_NoSystemBackground, true);
m_declarativeView->setAttribute(Qt::WA_OpaquePaintEvent, true);
m_declarativeView->setViewport(glWidget);
m_declarativeView->setViewportUpdateMode(QGraphicsView::FullViewportUpdate);
m_declarativeView->setSource(QUrl::fromLocalFile(tmpQmlFile.fileName()));
m_declarativeView->show();
m_declarativeView->viewport()->setFocusPolicy(Qt::StrongFocus);
}
void TestCaseExecutionDialog::on_pushButton_clicked() {
QTemporaryFile tmpQmlFile;
tmpQmlFile.open();
tmpQmlFile.write(m_ui->plainTextEdit_2->toPlainText().toAscii());
tmpQmlFile.close();
m_declarativeView->engine()->clearComponentCache();
m_declarativeView->setSource(QUrl::fromLocalFile(tmpQmlFile.fileName()));
}
TestCaseExecutionDialog::~TestCaseExecutionDialog() {
delete m_ui;
}
void TestCaseExecutionDialog::on_pushButtonQuit_clicked() {
QApplication::quit();
}
|