mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
ParaView-5.0.1: Added the source-tree to ThirdParty-dev and patched as described in the README file
Resolves bug-report http://bugs.openfoam.org/view.php?id=2098
This commit is contained in:
264
ParaView-5.0.1/Qt/Components/pqSpreadSheetViewDecorator.cxx
Normal file
264
ParaView-5.0.1/Qt/Components/pqSpreadSheetViewDecorator.cxx
Normal file
@ -0,0 +1,264 @@
|
||||
/*=========================================================================
|
||||
|
||||
Program: ParaView
|
||||
Module: pqSpreadSheetViewDecorator.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 "pqSpreadSheetViewDecorator.h"
|
||||
#include "ui_pqSpreadSheetViewDecorator.h"
|
||||
|
||||
// Server Manager Includes.
|
||||
#include "vtkSMProxy.h"
|
||||
|
||||
// Qt Includes.
|
||||
#include <QAction>
|
||||
#include <QComboBox>
|
||||
#include <QDebug>
|
||||
#include <QPointer>
|
||||
#include <QToolButton>
|
||||
#include <QVBoxLayout>
|
||||
#include <QWidget>
|
||||
#include <QMenu>
|
||||
|
||||
// ParaView Includes.
|
||||
#include "pqComboBoxDomain.h"
|
||||
#include "pqDataRepresentation.h"
|
||||
#include "pqOutputPort.h"
|
||||
#include "pqPropertyLinks.h"
|
||||
#include "pqSignalAdaptors.h"
|
||||
#include "pqSpreadSheetView.h"
|
||||
#include "pqSpreadSheetViewModel.h"
|
||||
#include "vtkNew.h"
|
||||
#include "vtkSMParaViewPipelineControllerWithRendering.h"
|
||||
#include "vtkSMPropertyHelper.h"
|
||||
#include "vtkSMViewProxy.h"
|
||||
#include "vtkSpreadSheetView.h"
|
||||
|
||||
class pqSpreadSheetViewDecorator::pqInternal : public Ui::pqSpreadSheetViewDecorator
|
||||
{
|
||||
public:
|
||||
pqPropertyLinks Links;
|
||||
QPointer<pqSignalAdaptorComboBox> AttributeAdaptor;
|
||||
QPointer<pqComboBoxDomain> AttributeDomain;
|
||||
QPointer<pqSignalAdaptorSpinBox> DecimalPrecisionAdaptor;
|
||||
QMenu ColumnToggleMenu;
|
||||
|
||||
pqInternal()
|
||||
{
|
||||
}
|
||||
~pqInternal()
|
||||
{
|
||||
delete this->AttributeAdaptor;
|
||||
delete this->AttributeDomain;
|
||||
delete this->DecimalPrecisionAdaptor;
|
||||
}
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
pqSpreadSheetViewDecorator::pqSpreadSheetViewDecorator(pqSpreadSheetView* view):
|
||||
Superclass(view->widget()) // we make our parent the view's widget.
|
||||
{
|
||||
this->Spreadsheet = view;
|
||||
QWidget* container = view->widget();
|
||||
|
||||
QWidget* header = new QWidget(container);
|
||||
QVBoxLayout* layout = qobject_cast<QVBoxLayout*>(container->layout());
|
||||
|
||||
this->Internal = new pqInternal();
|
||||
this->Internal->setupUi(header);
|
||||
this->Internal->Source->setAutoUpdateIndex(false);
|
||||
this->Internal->Source->addCustomEntry("None", NULL);
|
||||
this->Internal->Source->fillExistingPorts();
|
||||
this->Internal->AttributeAdaptor =
|
||||
new pqSignalAdaptorComboBox(this->Internal->Attribute);
|
||||
this->Internal->spinBoxPrecision->setValue(
|
||||
this->Spreadsheet->getViewModel()->getDecimalPrecision());
|
||||
this->Internal->DecimalPrecisionAdaptor = new pqSignalAdaptorSpinBox(
|
||||
this->Internal->spinBoxPrecision);
|
||||
QObject::connect(this->Internal->spinBoxPrecision, SIGNAL(valueChanged(int)),
|
||||
this, SLOT(displayPrecisionChanged(int)));
|
||||
|
||||
this->Internal->AttributeDomain = 0;
|
||||
|
||||
QObject::connect(&this->Internal->Links, SIGNAL(smPropertyChanged()),
|
||||
this->Spreadsheet, SLOT(render()));
|
||||
|
||||
QObject::connect(this->Internal->ToggleColumnVisibility, SIGNAL(clicked()),
|
||||
this, SLOT(showToggleColumnPopupMenu()));
|
||||
|
||||
QObject::connect(this->Internal->ToggleCellConnectivity, SIGNAL(clicked()),
|
||||
this, SLOT(toggleCellConnectivity()));
|
||||
|
||||
QObject::connect(this->Internal->Source, SIGNAL(currentIndexChanged(pqOutputPort*)),
|
||||
this, SLOT(currentIndexChanged(pqOutputPort*)));
|
||||
QObject::connect(this->Spreadsheet, SIGNAL(showing(pqDataRepresentation*)),
|
||||
this, SLOT(showing(pqDataRepresentation*)));
|
||||
|
||||
layout->insertWidget(0, header);
|
||||
this->showing(0); //TODO: get the actual repr currently shown by the view.
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
pqSpreadSheetViewDecorator::~pqSpreadSheetViewDecorator()
|
||||
{
|
||||
delete this->Internal;
|
||||
this->Internal = 0;
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void pqSpreadSheetViewDecorator::showing(pqDataRepresentation* repr)
|
||||
{
|
||||
this->Internal->Links.removeAllPropertyLinks();
|
||||
delete this->Internal->AttributeDomain;
|
||||
this->Internal->AttributeDomain = 0;
|
||||
if (repr)
|
||||
{
|
||||
vtkSMProxy* reprProxy = repr->getProxy();
|
||||
|
||||
this->Internal->AttributeDomain = new pqComboBoxDomain(
|
||||
this->Internal->Attribute,
|
||||
reprProxy->GetProperty("FieldAssociation"), "enum");
|
||||
this->Internal->Source->setCurrentPort(repr->getOutputPortFromInput());
|
||||
this->Internal->Links.addPropertyLink(this->Internal->AttributeAdaptor,
|
||||
"currentText", SIGNAL(currentTextChanged(const QString&)),
|
||||
reprProxy, reprProxy->GetProperty("FieldAssociation"));
|
||||
this->Internal->Links.addPropertyLink(this->Internal->SelectionOnly,
|
||||
"checked", SIGNAL(toggled(bool)),
|
||||
this->Spreadsheet->getProxy(),
|
||||
this->Spreadsheet->getProxy()->GetProperty("SelectionOnly"));
|
||||
}
|
||||
else
|
||||
{
|
||||
this->Internal->Source->setCurrentPort(NULL);
|
||||
}
|
||||
|
||||
this->Internal->Attribute->setEnabled(repr != 0);
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void pqSpreadSheetViewDecorator::currentIndexChanged(pqOutputPort* port)
|
||||
{
|
||||
if (port)
|
||||
{
|
||||
vtkNew<vtkSMParaViewPipelineControllerWithRendering> controller;
|
||||
if (controller->Show(port->getSourceProxy(), port->getPortNumber(),
|
||||
this->Spreadsheet->getViewProxy()))
|
||||
{
|
||||
this->Spreadsheet->render();
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
QList<pqRepresentation*> reprs = this->Spreadsheet->getRepresentations();
|
||||
foreach (pqRepresentation* repr, reprs)
|
||||
{
|
||||
if (repr->isVisible())
|
||||
{
|
||||
repr->setVisible(false);
|
||||
this->Spreadsheet->render();
|
||||
break; // since only 1 repr can be visible at a time.
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void pqSpreadSheetViewDecorator::displayPrecisionChanged(int precision)
|
||||
{
|
||||
this->Spreadsheet->getViewModel()->setDecimalPrecision(precision);
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void pqSpreadSheetViewDecorator::showToggleColumnPopupMenu()
|
||||
{
|
||||
// Update toggle list
|
||||
QMap<QString,bool> userRole;
|
||||
this->Internal->ColumnToggleMenu.clear();
|
||||
for(int i=0; i < this->Spreadsheet->getViewModel()->columnCount(); i++)
|
||||
{
|
||||
QString name =
|
||||
this->Spreadsheet->getViewModel()->headerData(i, Qt::Horizontal).toString();
|
||||
userRole[name] = this->Spreadsheet->getViewModel()->isVisible(i);
|
||||
if(!name.startsWith("__"))
|
||||
{
|
||||
this->Internal->ColumnToggleMenu.addAction(name);
|
||||
}
|
||||
}
|
||||
|
||||
foreach(QAction* a, this->Internal->ColumnToggleMenu.findChildren<QAction*>())
|
||||
{
|
||||
a->setCheckable(true);
|
||||
a->setChecked(userRole[a->text()]);
|
||||
QObject::connect(a, SIGNAL(changed()), this, SLOT(updateColumnVisibility()));
|
||||
}
|
||||
|
||||
if(userRole.size() > 0)
|
||||
{
|
||||
this->Internal->ColumnToggleMenu.popup(
|
||||
this->Internal->ToggleColumnVisibility->mapToGlobal(
|
||||
QPoint(0, this->Internal->ToggleColumnVisibility->height())));
|
||||
}
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void pqSpreadSheetViewDecorator::updateColumnVisibility()
|
||||
{
|
||||
QList<QString> headers;
|
||||
for(int i=0; i < this->Spreadsheet->getViewModel()->columnCount(); i++)
|
||||
{
|
||||
headers.append(
|
||||
this->Spreadsheet->getViewModel()->headerData(i, Qt::Horizontal).toString());
|
||||
}
|
||||
|
||||
foreach(QAction* a, this->Internal->ColumnToggleMenu.findChildren<QAction*>())
|
||||
{
|
||||
int index = headers.indexOf(a->text());
|
||||
if(index >= 0)
|
||||
{
|
||||
this->Spreadsheet->getViewModel()->setVisible(index, a->isChecked());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
void pqSpreadSheetViewDecorator::toggleCellConnectivity()
|
||||
{
|
||||
if(vtkSMProxy* proxy = this->Spreadsheet->getRepresentation(0)->getProxy())
|
||||
{
|
||||
vtkSMPropertyHelper(proxy, "GenerateCellConnectivity").Set(
|
||||
this->Internal->ToggleCellConnectivity->isChecked() ? 1 : 0);
|
||||
proxy->UpdateVTKObjects();
|
||||
if(vtkSpreadSheetView* view =
|
||||
vtkSpreadSheetView::SafeDownCast(
|
||||
this->Spreadsheet->getViewProxy()->GetClientSideView()))
|
||||
{
|
||||
view->ClearCache();
|
||||
}
|
||||
this->Spreadsheet->render();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user