Files
ThirdParty-6/ParaView-5.0.1/Qt/ApplicationComponents/pqChangePipelineInputReaction.cxx

136 lines
4.4 KiB
C++

/*=========================================================================
Program: ParaView
Module: pqChangePipelineInputReaction.cxx
Copyright (c) 2005,2006 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 "pqChangePipelineInputReaction.h"
#include "pqActiveObjects.h"
#include "pqApplicationCore.h"
#include "pqChangeInputDialog.h"
#include "pqCoreUtilities.h"
#include "pqOutputPort.h"
#include "pqPipelineFilter.h"
#include "pqPipelineModel.h"
#include "pqServerManagerModel.h"
#include "pqUndoStack.h"
#include "vtkSMInputProperty.h"
#include "vtkSMProxy.h"
#include "vtkSMTrace.h"
#include <QDebug>
//-----------------------------------------------------------------------------
pqChangePipelineInputReaction::pqChangePipelineInputReaction(
QAction* parentObject)
: Superclass(parentObject)
{
QObject::connect(
&pqActiveObjects::instance(), SIGNAL(sourceChanged(pqPipelineSource*)),
this, SLOT(updateEnableState()));
// nameChanged() is fired even when modified state is changed ;).
QObject::connect(pqApplicationCore::instance()->getServerManagerModel(),
SIGNAL(modifiedStateChanged(pqServerManagerModelItem*)),
this, SLOT(updateEnableState()));
this->updateEnableState();
}
//-----------------------------------------------------------------------------
void pqChangePipelineInputReaction::updateEnableState()
{
pqPipelineFilter* filter = qobject_cast<pqPipelineFilter*>(
pqActiveObjects::instance().activeSource());
if (filter == NULL || filter->modifiedState() == pqProxy::UNINITIALIZED)
{
this->parentAction()->setEnabled(false);
return;
}
this->parentAction()->setEnabled(true);
}
//-----------------------------------------------------------------------------
void pqChangePipelineInputReaction::changeInput()
{
pqPipelineFilter* filter = qobject_cast<pqPipelineFilter*>(
pqActiveObjects::instance().activeSource());
if (!filter)
{
qCritical() << "No active filter.";
return;
}
pqChangeInputDialog dialog(filter->getProxy(),
pqCoreUtilities::mainWidget());
dialog.setObjectName("ChangeInputDialog");
if (dialog.exec() != QDialog::Accepted)
{
return;
}
BEGIN_UNDO_SET(QString("Change Input for %1").arg(
filter->getSMName()));
SM_SCOPED_TRACE(PropertiesModified)
.arg("proxy", filter->getProxy());
const QMap<QString, QList<pqOutputPort*> > input_map =
dialog.selectedInputs();
QMap<QString, QList<pqOutputPort*> >::const_iterator iter;
for (iter = input_map.begin(); iter != input_map.end(); iter++)
{
QString inputPortName = iter.key();
const QList<pqOutputPort*> &inputs = iter.value();
std::vector<vtkSMProxy*> inputPtrs;
std::vector<unsigned int> inputPorts;
foreach (pqOutputPort* opport, inputs)
{
inputPtrs.push_back(opport->getSource()->getProxy());
inputPorts.push_back(opport->getPortNumber());
}
vtkSMInputProperty* ip =vtkSMInputProperty::SafeDownCast(
filter->getProxy()->GetProperty(
inputPortName.toLatin1().data()));
ip->SetProxies(
static_cast<unsigned int>(inputPtrs.size()),
&inputPtrs[0], &inputPorts[0]);
}
filter->getProxy()->UpdateVTKObjects();
END_UNDO_SET();
// render all views
pqApplicationCore::instance()->render();
}