Files
ThirdParty-6/ParaView-5.0.1/ThirdParty/QtTesting/vtkqttesting/pqObjectNaming.cxx

307 lines
7.6 KiB
C++

/*=========================================================================
Program: ParaView
Module: pqObjectNaming.cxx
Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
All rights reserved.
ParaView is a free software; you can redistribute it and/or modify it
under the terms of the ParaView license version 1.2.
See License_v1.2.txt for the full ParaView license.
A copy of this license can be obtained by contacting
Kitware Inc.
28 Corporate Drive
Clifton Park, NY 12065
USA
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=========================================================================*/
#include "pqObjectNaming.h"
#include <QAbstractItemDelegate>
#include <QAbstractItemModel>
#include <QAction>
#include <QApplication>
#include <QDockWidget>
#include <QFocusFrame>
#include <QHeaderView>
#include <QItemSelectionModel>
#include <QLabel>
#include <QLayout>
#include <QLineEdit>
#include <QMenu>
#include <QMenuBar>
#include <QScrollBar>
#include <QSet>
#include <QSignalMapper>
#include <QStackedWidget>
#include <QTabBar>
#include <QTabWidget>
#include <QToolBar>
#include <QToolButton>
#include <QtDebug>
namespace
{
QString ErrorMessage;
}
/** Returns the name of an object as if it was unnamed.*/
static const QString InternalGetNameAsUnnamed(QObject& Object)
{
QString result;
QObjectList siblings;
if(Object.parent())
{
siblings = Object.parent()->children();
}
else
{
QWidgetList widgets = QApplication::topLevelWidgets();
for(int i = 0; i != widgets.size(); ++i)
{
siblings.push_back(widgets[i]);
}
}
const QString type = Object.metaObject()->className();
// order of top level widgets is not guarenteed
// we can someone counter that by checking visibility,
// as we usually only test visible widgets, we would get the right one
int invisible_index = 0;
int visible_index = 0;
for(int i = 0; i != siblings.size(); ++i)
{
QObject* test = siblings[i];
if(test == &Object)
{
break;
}
else if(
type == test->metaObject()->className()
&& test->objectName().isEmpty())
{
QWidget* widget = qobject_cast<QWidget*>(test);
if(widget && widget->isVisible())
{
++visible_index;
}
else
{
++invisible_index;
}
}
}
int index = invisible_index;
if(QWidget* const widget = qobject_cast<QWidget*>(&Object))
{
if(widget->isVisible())
{
result += QString::number(1);
index = visible_index;
}
else
{
result += QString::number(0);
}
}
result += type + QString::number(index);
result.replace("/", "|");
return result;
}
/** Returns the name of an object. If the object doesn't have an explicit name,
assigns a name as a convenience. Also replaces problematic characters such as '/'.
*/
static const QString InternalGetName(QObject& Object)
{
QString result = Object.objectName();
if(result.isEmpty())
{
result = InternalGetNameAsUnnamed(Object);
}
if(qobject_cast<QApplication*>(&Object))
{
result.append("-app");
}
result.replace("/", "|");
return result;
}
const QString pqObjectNaming::GetName(QObject& Object)
{
QString name = InternalGetName(Object);
if(name.isEmpty())
{
qCritical() << "Cannot record event for unnamed object " << &Object;
return QString();
}
for(QObject* p = Object.parent(); p; p = p->parent())
{
const QString parent_name = InternalGetName(*p);
if(parent_name.isEmpty())
{
qCritical() << "Cannot record event for incompletely-named object " << name << " " << &Object << " with parent " << p;
return QString();
}
name = parent_name + "/" + name;
if(!p->parent() && !QApplication::topLevelWidgets().contains(qobject_cast<QWidget*>(p)))
{
qCritical() << "Object " << p << " is not a top-level widget";
return QString();
}
}
return name;
}
QObject* pqObjectNaming::GetObject(const QString& Name)
{
QObject* result = 0;
QObject* lastObject = 0;
if(Name.isEmpty())
{
return 0;
}
const QStringList names = Name.split("/");
// see if QApplication is the requested object
QString app_name = InternalGetName(*QApplication::instance());
if( app_name == Name)
{
return QApplication::instance();
}
const QWidgetList top_level_widgets = QApplication::topLevelWidgets();
for(int i = 0; i != top_level_widgets.size(); ++i)
{
QObject* object = top_level_widgets[i];
const QString name = InternalGetName(*object);
const QString alt_name = InternalGetNameAsUnnamed(*object);
if(name == names[0] || alt_name == names[0])
{
result = object;
lastObject = object;
break;
}
}
for(int j = 1; j < names.size(); ++j)
{
const QObjectList& children = result ? result->children() : QObjectList();
result = 0;
for(int k = 0; k != children.size(); ++k)
{
QObject* child = children[k];
const QString name = InternalGetName(*child);
const QString alt_name = InternalGetNameAsUnnamed(*child);
if(name == names[j] || alt_name == names[j])
{
result = child;
lastObject = child;
break;
}
}
// if there is a real name, also allow skipping generations
// in the hierarchy to find a child
if(result == 0)
{
if(!names[j].isEmpty() && names[j].at(0).isDigit())
{
result = result->findChild<QObject*>(names[j]);
}
}
}
if(result)
return result;
ErrorMessage = QString("Couldn't find object %1\n").arg(Name);
if(lastObject)
{
ErrorMessage += QString("Found up to %1\n").arg(
pqObjectNaming::GetName(*lastObject));
}
bool foundMatch = false;
if(lastObject)
{
QObjectList matches =
lastObject->findChildren<QObject*>(names[names.size()-1]);
foreach(QObject* o, matches)
{
ErrorMessage += QString("\tPossible match: %1\n").arg(pqObjectNaming::GetName(*o));
foundMatch = true;
}
}
if (!foundMatch)
{
QObjectList matches = lastObject->findChildren<QObject*>();
foreach(QObject* o, matches)
{
ErrorMessage += QString("\tAvailable widget: %1\n").arg(pqObjectNaming::GetName(*o));
}
}
qCritical() << ErrorMessage ;
return 0;
}
void pqObjectNaming::DumpHierarchy(QStringList& results)
{
const QWidgetList widgets = QApplication::topLevelWidgets();
for(int i = 0; i != widgets.size(); ++i)
{
DumpHierarchy(*widgets[i], results);
}
}
void pqObjectNaming::DumpHierarchy(QObject& object, QStringList& results)
{
results << GetName(object);
const QObjectList children = object.children();
for(int i = 0; i != children.size(); ++i)
{
DumpHierarchy(*children[i], results);
}
}
QString pqObjectNaming::lastErrorMessage()
{
return ErrorMessage;
}