/*========================================================================= Library: CTK Copyright (c) Kitware Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0.txt Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. =========================================================================*/ // QT includes #include #include #include #include #include #include // CTKQtTesting includes #include "ctkXMLEventObserver.h" //----------------------------------------------------------------------------- // ctkXMLEventObserver methods //----------------------------------------------------------------------------- ctkXMLEventObserver::ctkXMLEventObserver(QObject* p) : pqEventObserver(p) { this->XMLStream = NULL; this->TestUtility = qobject_cast(p); } //----------------------------------------------------------------------------- ctkXMLEventObserver::~ctkXMLEventObserver() { delete this->XMLStream; this->TestUtility = 0; } //----------------------------------------------------------------------------- void ctkXMLEventObserver::recordApplicationSettings() { if(this->XMLStream) { this->XMLStream->writeStartElement("settings"); // Informations about the application this->recordApplicationSetting("name","qApp", "applicationName", QCoreApplication::applicationName()); this->recordApplicationSetting("version" , "qApp", "applicationVersion", QCoreApplication::applicationVersion()); // save Geometry and State of the application QMainWindow* window = NULL; foreach(QWidget * widget, QApplication::topLevelWidgets()) { window = qobject_cast(widget); if (window) { this->recordApplicationSetting("geometry" , "MainWindow", "mainWindowGeometry", QString(window->saveGeometry().toHex())); this->recordApplicationSetting("state" , "MainWindow", "mainWindowState", QString(window->saveState().toHex())); break; } } // Save extra properties from the application QMap states = this->TestUtility->objectStateProperty(); QMap::iterator iter; for(iter = states.begin() ; iter!=states.end() ; ++iter) { foreach(QString property, iter.value()) { this->recordApplicationSetting( QString("appsetting"), iter.key()->metaObject()->className(), property, iter.key()->property(property.toLatin1()).toString() ); } } this->XMLStream->writeEndElement(); } } //----------------------------------------------------------------------------- void ctkXMLEventObserver::recordApplicationSetting(const QString &startElement, const QString &attribute1, const QString &attribute2, const QString &attribute3) { this->XMLStream->writeStartElement(startElement); this->XMLStream->writeAttribute("widget", attribute1); this->XMLStream->writeAttribute("command", attribute2); this->XMLStream->writeAttribute("arguments", attribute3); this->XMLStream->writeEndElement(); } //----------------------------------------------------------------------------- void ctkXMLEventObserver::setStream(QTextStream* stream) { if (this->XMLStream) { this->XMLStream->writeEndElement(); this->XMLStream->writeEndElement(); this->XMLStream->writeEndDocument(); delete this->XMLStream; this->XMLStream = NULL; } if (this->Stream) { *this->Stream << this->XMLString; } this->XMLString = QString(); pqEventObserver::setStream(stream); if (this->Stream) { this->XMLStream = new QXmlStreamWriter(&this->XMLString); this->XMLStream->setAutoFormatting(true); this->XMLStream->writeStartDocument(); this->XMLStream->writeStartElement("QtTesting"); this->recordApplicationSettings(); this->XMLStream->writeStartElement("events"); } } //----------------------------------------------------------------------------- void ctkXMLEventObserver::onRecordEvent(const QString& widget, const QString& command, const QString& arguments) { if(this->XMLStream) { this->XMLStream->writeStartElement("event"); this->XMLStream->writeAttribute("widget", widget); this->XMLStream->writeAttribute("command", command); this->XMLStream->writeAttribute("arguments", arguments); this->XMLStream->writeEndElement(); if (this->Stream) { *this->Stream << this->XMLString; } this->XMLString = QString(); emit this->eventRecorded(widget, command, arguments); } }