/*========================================================================= Program: ParaView Module: $RCSfile$ 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 "pqCalculatorWidget.h" #include "ui_pqCalculatorWidget.h" #include "pqOutputPort.h" #include "pqPipelineFilter.h" #include "vtkPVArrayInformation.h" #include "vtkPVDataInformation.h" #include "vtkPVDataSetAttributesInformation.h" #include "vtkSMSourceProxy.h" #include "vtkSMUncheckedPropertyHelper.h" #include #include #include #include class pqCalculatorWidget::pqInternals : public Ui::CalculatorWidget { public: QPointer ScalarsMenu; QPointer VectorsMenu; pqInternals() : ScalarsMenu(new QMenu()), VectorsMenu(new QMenu()) { } ~pqInternals() { delete this->ScalarsMenu; delete this->VectorsMenu; } }; //----------------------------------------------------------------------------- pqCalculatorWidget::pqCalculatorWidget( vtkSMProxy* smproxy, vtkSMProperty* smproperty, QWidget* parentObject) : Superclass(smproxy, parentObject), Internals (new pqInternals()) { this->Internals->setupUi(this); this->setShowLabel(false); this->setChangeAvailableAsChangeFinished(false); this->Internals->Vectors->setMenu(this->Internals->VectorsMenu); this->Internals->Scalars->setMenu(this->Internals->ScalarsMenu); // clicking on any button or any part of the panel where another button // doesn't take focus will cause the line edit to have focus this->setFocusProxy(this->Internals->Function); // before the menus are poped up, fill them up with the list of available // arrays. QObject::connect(this->Internals->ScalarsMenu, SIGNAL(aboutToShow()), this, SLOT(updateVariableNames())); QObject::connect(this->Internals->VectorsMenu, SIGNAL(aboutToShow()), this, SLOT(updateVariableNames())); // update the text when the user choses an variable in the menu. QObject::connect(this->Internals->VectorsMenu, SIGNAL(triggered(QAction*)), this, SLOT(variableChosen(QAction*))); QObject::connect(this->Internals->ScalarsMenu, SIGNAL(triggered(QAction*)), this, SLOT(variableChosen(QAction*))); //-------------------------------------------------------------------------- // connect all buttons for which the text of the button // is the same as what goes into the function QRegExp regexp("^([ijk]Hat|ln|log10|sin|cos|" "tan|asin|acos|atan|sinh|cosh|tanh|" "sqrt|exp|ceil|floor|abs|norm|mag|" "LeftParentheses|RightParentheses|" "Divide|Multiply|Minus|Plus)$"); QList buttons; buttons = this->findChildren(regexp); foreach(QToolButton* tb, buttons) { QSignalMapper* mapper = new QSignalMapper(tb); QObject::connect(tb, SIGNAL(pressed()), mapper, SLOT(map())); mapper->setMapping(tb, tb->text()); QObject::connect(mapper, SIGNAL(mapped(const QString&)), this, SLOT(buttonPressed(const QString&))); } QToolButton* tb = this->Internals->xy; QSignalMapper* mapper = new QSignalMapper(tb); QObject::connect(tb, SIGNAL(pressed()), mapper, SLOT(map())); mapper->setMapping(tb, "^"); QObject::connect(mapper, SIGNAL(mapped(const QString&)), this, SLOT(buttonPressed(const QString&))); tb = this->Internals->v1v2; mapper = new QSignalMapper(tb); QObject::connect(tb, SIGNAL(pressed()), mapper, SLOT(map())); mapper->setMapping(tb, "."); QObject::connect(mapper, SIGNAL(mapped(const QString&)), this, SLOT(buttonPressed(const QString&))); //-------------------------------------------------------------------------- this->addPropertyLink(this->Internals->Function, "text", SIGNAL(textChanged(const QString&)), smproperty); // now when editing is finished, we will fire the changeFinished() signal. this->connect(this->Internals->Function, SIGNAL(textChangedAndEditingFinished()), this, SIGNAL(changeFinished())); } //----------------------------------------------------------------------------- pqCalculatorWidget::~pqCalculatorWidget() { delete this->Internals; this->Internals = 0; } //----------------------------------------------------------------------------- void pqCalculatorWidget::variableChosen(QAction* menuAction) { if (menuAction) { this->Internals->Function->insert(menuAction->text()); } } //----------------------------------------------------------------------------- void pqCalculatorWidget::buttonPressed(const QString& buttonText) { this->Internals->Function->insert(buttonText); } //----------------------------------------------------------------------------- void pqCalculatorWidget::updateVariableNames() { vtkSMUncheckedPropertyHelper attributeType( this->proxy(), "AttributeMode"); this->updateVariables(attributeType.GetAsString(0)); } //----------------------------------------------------------------------------- void pqCalculatorWidget::updateVariables(const QString& mode) { this->Internals->VectorsMenu->clear(); this->Internals->ScalarsMenu->clear(); if(mode == "Point Data") { this->Internals->VectorsMenu->addAction("coords"); this->Internals->ScalarsMenu->addAction("coordsX"); this->Internals->ScalarsMenu->addAction("coordsY"); this->Internals->ScalarsMenu->addAction("coordsZ"); } vtkPVDataSetAttributesInformation* fdi = NULL; vtkSMSourceProxy* input = vtkSMSourceProxy::SafeDownCast( vtkSMUncheckedPropertyHelper(this->proxy(), "Input").GetAsProxy(0)); if (!input) { return; } if(mode == "Point Data") { fdi = input->GetDataInformation(0)->GetPointDataInformation(); } else if(mode == "Cell Data") { fdi = input->GetDataInformation(0)->GetCellDataInformation(); } if (!fdi) { return; } for(int i=0; iGetNumberOfArrays(); i++) { vtkPVArrayInformation* arrayInfo = fdi->GetArrayInformation(i); if (arrayInfo->GetDataType() == VTK_STRING || arrayInfo->GetDataType() == VTK_VARIANT ) { continue; } int numComponents = arrayInfo->GetNumberOfComponents(); QString name = arrayInfo->GetName(); for(int j=0; jInternals->ScalarsMenu->addAction(name); } else { QString compName(arrayInfo->GetComponentName( j )); QString n = name + QString( "_%1").arg( compName ); QStringList d; d.append(name); d.append(QString("%1").arg(j)); QAction* a = new QAction(n, this->Internals->ScalarsMenu); a->setData(d); this->Internals->ScalarsMenu->addAction(a); } } if(numComponents == 3) { this->Internals->VectorsMenu->addAction(name); } } }