123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- /*=========================================================================
- 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 <QApplication>
- #include <QCoreApplication>
- #include <QDebug>
- #include <QLayout>
- #include <QMainWindow>
- #include <QVariant>
- // CTKQtTesting includes
- #include "ctkQtTestingUtility.h"
- #include "ctkXMLEventObserver.h"
- //-----------------------------------------------------------------------------
- // ctkXMLEventObserver methods
- //-----------------------------------------------------------------------------
- ctkXMLEventObserver::ctkXMLEventObserver(QObject* p)
- : pqEventObserver(p)
- {
- this->XMLStream = NULL;
- this->TestUtility = qobject_cast<pqTestUtility*>(p);
- Q_ASSERT(this->TestUtility);
- }
- //-----------------------------------------------------------------------------
- ctkXMLEventObserver::~ctkXMLEventObserver()
- {
- delete this->XMLStream;
- this->TestUtility = 0;
- }
- //-----------------------------------------------------------------------------
- void ctkXMLEventObserver::recordApplicationSettings()
- {
- Q_ASSERT(this->TestUtility);
- if (!this->XMLStream)
- {
- return;
- }
- 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<QMainWindow*>(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<QObject*, QStringList> states = this->TestUtility->objectStateProperty();
- QMap<QObject*, QStringList>::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,
- const int& eventType)
- {
- if(this->XMLStream)
- {
- this->XMLStream->writeStartElement("event");
- this->XMLStream->writeAttribute("widget", widget);
- this->XMLStream->writeAttribute("command", command);
- this->XMLStream->writeAttribute("arguments", arguments);
- this->XMLStream->writeAttribute("type", ctkQtTestingUtility::eventTypeToString(eventType));
- this->XMLStream->writeEndElement();
- if (this->Stream)
- {
- *this->Stream << this->XMLString;
- }
- this->XMLString = QString();
- emit this->eventRecorded(widget, command, arguments, eventType);
- }
- }
|