/*========================================================================= Program: ParaView Module: pqCameraManipulatorWidget.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 "pqCameraManipulatorWidget.h" #include "ui_pqCameraManipulatorWidget.h" #include "pqPropertiesPanel.h" #include "pqPropertyLinks.h" #include "pqPropertyLinksConnection.h" #include "vtkSMEnumerationDomain.h" #include "vtkSMProperty.h" #include "vtkSMUncheckedPropertyHelper.h" class pqCameraManipulatorWidget::PropertyLinksConnection : public pqPropertyLinksConnection { typedef pqPropertyLinksConnection Superclass; public: PropertyLinksConnection( QObject* qobject, const char* qproperty, const char* qsignal, vtkSMProxy* smproxy, vtkSMProperty* smproperty, int smindex, bool use_unchecked_modified_event, QObject* parentObject=0) : Superclass(qobject, qproperty, qsignal, smproxy, smproperty, smindex, use_unchecked_modified_event, parentObject) { } virtual ~PropertyLinksConnection() { } protected: /// Called to update the ServerManager Property due to UI change. virtual void setServerManagerValue(bool use_unchecked, const QVariant& value) { QList list = value.toList(); Q_ASSERT(list.size() == 9); int values[9]; for (int cc=0; cc < 9; cc++) { values[cc] = list[cc].toInt(); } if (use_unchecked) { vtkSMUncheckedPropertyHelper(this->propertySM()).Set(values, 9); } else { vtkSMPropertyHelper(this->propertySM()).Set(values, 9); } } /// called to get the current value for the ServerManager Property. virtual QVariant currentServerManagerValue(bool use_unchecked) const { int values[9]; int max = 0; if (use_unchecked) { max = vtkSMUncheckedPropertyHelper(this->propertySM()).Get(values, 9); } else { max = vtkSMPropertyHelper(this->propertySM()).Get(values, 9); } QList val; for (int cc=0; cc < max && cc < 9; cc++) { val << values[cc]; } return val; } private: Q_DISABLE_COPY(PropertyLinksConnection); }; class pqCameraManipulatorWidget::pqInternals { public: Ui::CameraManipulatorWidget Ui; QPointer Boxes[9]; }; //----------------------------------------------------------------------------- pqCameraManipulatorWidget::pqCameraManipulatorWidget( vtkSMProxy* smproxy, vtkSMProperty* smproperty, QWidget* parentObject) : Superclass(smproxy, parentObject), Internals(new pqInternals()) { Ui::CameraManipulatorWidget& ui = this->Internals->Ui; ui.setupUi(this); ui.gridLayout->setVerticalSpacing(pqPropertiesPanel::suggestedVerticalSpacing()); ui.gridLayout->setHorizontalSpacing(pqPropertiesPanel::suggestedHorizontalSpacing()); ui.gridLayout->setMargin(0); QPointer* boxes = this->Internals->Boxes; boxes[0] = ui.comboBox_1; boxes[1] = ui.comboBox_2; boxes[2] = ui.comboBox_3; boxes[3] = ui.comboBox_4; boxes[4] = ui.comboBox_5; boxes[5] = ui.comboBox_6; boxes[6] = ui.comboBox_7; boxes[7] = ui.comboBox_8; boxes[8] = ui.comboBox_9; vtkSMEnumerationDomain* domain = vtkSMEnumerationDomain::SafeDownCast( smproperty->FindDomain("vtkSMEnumerationDomain")); if (!domain) { qCritical("Developer error: pqCameraManipulatorWidget needs vtkSMEnumerationDomain."); return; } for (int cc=0; cc < 9; cc++) { for (unsigned int kk=0, max=domain->GetNumberOfEntries(); kk < max; kk++) { boxes[cc]->addItem(domain->GetEntryText(kk), QVariant(domain->GetEntryValue(kk))); } this->connect(boxes[cc], SIGNAL(currentIndexChanged(int)), SIGNAL(manipulatorTypesChanged())); } this->links().addPropertyLink( this, "manipulatorTypes", SIGNAL(manipulatorTypesChanged()), smproxy, smproperty); } //----------------------------------------------------------------------------- pqCameraManipulatorWidget::~pqCameraManipulatorWidget() { delete this->Internals; this->Internals = NULL; } //----------------------------------------------------------------------------- void pqCameraManipulatorWidget::setManipulatorTypes(const QList& value) { QPointer* boxes = this->Internals->Boxes; for (int cc=0, max=value.size(); cc < 9 && cc < max; cc++) { int index = boxes[cc]->findData(value[cc]); if (index != -1) { boxes[cc]->setCurrentIndex(index); } else { boxes[cc]->setCurrentIndex(1); } } for (int cc=value.size(); cc < 9; cc++) { boxes[cc]->setCurrentIndex(0); } } //----------------------------------------------------------------------------- QList pqCameraManipulatorWidget::manipulatorTypes() const { QList value; QPointer* boxes = this->Internals->Boxes; for (int cc=0; cc < 9; cc++) { value.push_back( boxes[cc]->itemData(boxes[cc]->currentIndex())); } return value; }