Files
ThirdParty-6/ParaView-5.0.1/Qt/Core/pqContextView.cxx

241 lines
6.8 KiB
C++

/*=========================================================================
Program: ParaView
Module: pqContextView.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 "pqContextView.h"
#include "pqDataRepresentation.h"
#include "pqEventDispatcher.h"
#include "pqImageUtil.h"
#include "pqOutputPort.h"
#include "pqPipelineSource.h"
#include "pqQVTKWidget.h"
#include "pqServer.h"
#include "pqSMAdaptor.h"
#include "vtkAnnotationLink.h"
#include "vtkChartXY.h"
#include "vtkCommand.h"
#include "vtkContextView.h"
#include "vtkErrorCode.h"
#include "vtkEventQtSlotConnect.h"
#include "vtkIdTypeArray.h"
#include "vtkImageData.h"
#include "vtkNew.h"
#include "vtkProcessModule.h"
#include "vtkPVDataInformation.h"
#include "vtkPVXMLElement.h"
#include "vtkSelection.h"
#include "vtkSelectionNode.h"
#include "vtkSMContextViewProxy.h"
#include "vtkSMPropertyHelper.h"
#include "vtkSMSelectionHelper.h"
#include "vtkSMSourceProxy.h"
#include "vtkVariant.h"
#include <QList>
#include <QVariant>
#include <QPointer>
#include <QDebug>
// Command implementation
class pqContextView::command : public vtkCommand
{
public:
static command* New(pqContextView &view)
{
return new command(view);
}
command(pqContextView &view) : Target(view) { }
virtual void Execute(vtkObject*, unsigned long, void*)
{
Target.selectionChanged();
}
pqContextView& Target;
private:
void operator=(const pqContextView::command&);
};
class pqContextView::pqInternal
{
public:
bool InitializedAfterObjectsCreated;
int SelectionAction;
pqInternal()
{
this->InitializedAfterObjectsCreated=false;
this->SelectionAction = vtkChart::SELECT_RECTANGLE;
}
~pqInternal()
{
}
vtkNew<vtkEventQtSlotConnect> VTKConnect;
};
//-----------------------------------------------------------------------------
pqContextView::pqContextView(
const QString& type, const QString& group,
const QString& name,
vtkSMViewProxy* viewProxy,
pqServer* server,
QObject* parentObject)
: Superclass(type, group, name, viewProxy, server, parentObject)
{
this->Internal = new pqContextView::pqInternal();
viewProxy->UpdateVTKObjects(); // this results in calling CreateVTKObjects().
this->Command = command::New(*this);
vtkObject::SafeDownCast(viewProxy->GetClientSideObject())->AddObserver(
vtkCommand::SelectionChangedEvent, this->Command);
}
//-----------------------------------------------------------------------------
pqContextView::~pqContextView()
{
this->Command->Delete();
delete this->Internal;
}
//-----------------------------------------------------------------------------
QWidget* pqContextView::createWidget()
{
pqQVTKWidget* vtkwidget = new pqQVTKWidget();
// don't use caching for charts since the charts don't seem to render
// correctly when an overlapping window is present, unlike 3D views.
vtkwidget->setAutomaticImageCacheEnabled(false);
vtkwidget->setViewProxy(this->getProxy());
vtkwidget->setContextMenuPolicy(Qt::NoContextMenu);
vtkwidget->installEventFilter(this);
vtkSMContextViewProxy* proxy = this->getContextViewProxy();
Q_ASSERT(proxy);
vtkwidget->SetRenderWindow(proxy->GetRenderWindow());
proxy->SetupInteractor(vtkwidget->GetInteractor());
return vtkwidget;
}
//-----------------------------------------------------------------------------
/// Returns the internal vtkChartView that provides the implementation for
/// the chart rendering.
vtkContextView* pqContextView::getVTKContextView() const
{
return vtkSMContextViewProxy::SafeDownCast(this->getProxy())->GetContextView();
}
//-----------------------------------------------------------------------------
vtkSMContextViewProxy* pqContextView::getContextViewProxy() const
{
return vtkSMContextViewProxy::SafeDownCast(this->getProxy());
}
//-----------------------------------------------------------------------------
bool pqContextView::supportsSelection() const
{
return true;
}
//-----------------------------------------------------------------------------
/// Resets the zoom level to 100%.
void pqContextView::resetDisplay()
{
vtkSMContextViewProxy *proxy = this->getContextViewProxy();
if (proxy)
{
proxy->ResetDisplay();
this->render();
}
}
void pqContextView::selectionChanged()
{
// Fill the selection source with the selection from the view
vtkSelection* sel = this->getContextViewProxy()->GetCurrentSelection();
if (sel)
{
this->setSelection(sel);
}
}
void pqContextView::setSelection(vtkSelection* sel)
{
// Get the representation's source
pqDataRepresentation* pqRepr = 0;
for (int i = 0; i < this->getNumberOfRepresentations(); ++i)
{
if (this->getRepresentation(i)->isVisible())
{
pqRepr = qobject_cast<pqDataRepresentation*>(this->getRepresentation(i));
}
}
if (!pqRepr)
{
return;
}
pqOutputPort* opPort = pqRepr->getOutputPortFromInput();
vtkSMSourceProxy* repSource = vtkSMSourceProxy::SafeDownCast(
opPort->getSource()->getProxy());
vtkSMProxy* selectionSource =
vtkSMSelectionHelper::NewSelectionSourceFromSelection(
repSource->GetSession(), sel);
// Set the selection on the representation's source
repSource->CleanSelectionInputs(opPort->getPortNumber());
repSource->SetSelectionInput(opPort->getPortNumber(),
vtkSMSourceProxy::SafeDownCast(selectionSource), 0);
selectionSource->Delete();
emit this->selected(opPort);
}
void pqContextView::setSelectionAction(int selAction)
{
if (this->Internal->SelectionAction == selAction ||
selAction < vtkChart::SELECT ||
selAction > vtkChart::SELECT_POLYGON)
{
return;
}
this->Internal->SelectionAction = selAction;
}
int pqContextView::selectionAction()
{
return this->Internal->SelectionAction;
}