mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
159 lines
5.4 KiB
C++
159 lines
5.4 KiB
C++
/*=========================================================================
|
|
|
|
Program: ParaView
|
|
Module: pqProxyEditorPropertyWidget.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 "pqProxyEditorPropertyWidget.h"
|
|
|
|
#include "pqPropertiesPanel.h"
|
|
#include "pqPropertyLinks.h"
|
|
#include "pqProxyWidgetDialog.h"
|
|
#include "vtkPVXMLElement.h"
|
|
#include "vtkSMProperty.h"
|
|
#include "vtkSMProxy.h"
|
|
|
|
#include <QCheckBox>
|
|
#include <QHBoxLayout>
|
|
#include <QPushButton>
|
|
#include <QtDebug>
|
|
|
|
//-----------------------------------------------------------------------------
|
|
pqProxyEditorPropertyWidget::pqProxyEditorPropertyWidget(
|
|
vtkSMProxy *smproxy, vtkSMProperty* smproperty, QWidget *parentObject)
|
|
: Superclass(smproxy, parentObject)
|
|
{
|
|
this->setShowLabel(false);
|
|
|
|
QPushButton *button = new QPushButton(
|
|
QString("Edit %1 ...").arg(smproperty->GetXMLLabel()), this);
|
|
button->setObjectName("PushButton");
|
|
this->connect(button, SIGNAL(clicked()), SLOT(buttonClicked()));
|
|
button->setEnabled(false);
|
|
this->Button = button;
|
|
|
|
// If ProxyEditorPropertyWidget hints are present, we'll add a checkbox to
|
|
// control that property on the "other" proxy.
|
|
if (vtkPVXMLElement* hints = smproperty->GetHints()?
|
|
smproperty->GetHints()->FindNestedElementByName("ProxyEditorPropertyWidget") : NULL)
|
|
{
|
|
this->Checkbox = new QCheckBox(this);
|
|
this->Checkbox->setEnabled(false);
|
|
this->Checkbox->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
|
|
this->PropertyName = hints->GetAttributeOrDefault("property", "");
|
|
this->connect(&this->links(), SIGNAL(qtWidgetChanged()),
|
|
this, SIGNAL(changeAvailable()));
|
|
}
|
|
|
|
QHBoxLayout *hbox= new QHBoxLayout(this);
|
|
hbox->setMargin(0);
|
|
hbox->setSpacing(pqPropertiesPanel::suggestedHorizontalSpacing());
|
|
if (this->Checkbox)
|
|
{
|
|
hbox->addWidget(this->Checkbox);
|
|
}
|
|
hbox->addWidget(button);
|
|
|
|
this->addPropertyLink(this, "proxyToEdit", SIGNAL(dummySignal()), smproperty);
|
|
|
|
PV_DEBUG_PANELS() << "pqProxyEditorPropertyWidget for a ProxyProperty.";
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
pqProxyEditorPropertyWidget::~pqProxyEditorPropertyWidget()
|
|
{
|
|
delete this->Editor;
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqProxyEditorPropertyWidget::setProxyToEdit(pqSMProxy smproxy)
|
|
{
|
|
if (this->ProxyToEdit && this->Checkbox &&
|
|
this->ProxyToEdit->GetProperty(this->PropertyName.toStdString().c_str()))
|
|
{
|
|
this->links().removePropertyLink(
|
|
this->Checkbox, "checked", SIGNAL(toggled(bool)),
|
|
this->ProxyToEdit, this->ProxyToEdit->GetProperty(
|
|
this->PropertyName.toStdString().c_str()));
|
|
}
|
|
this->ProxyToEdit = smproxy;
|
|
this->Button->setEnabled(smproxy != NULL);
|
|
if (this->Editor && this->Editor->proxy() != smproxy)
|
|
{
|
|
delete this->Editor;
|
|
}
|
|
|
|
if (this->Checkbox)
|
|
{
|
|
if (vtkSMProperty* smproperty = smproxy?
|
|
smproxy->GetProperty(this->PropertyName.toStdString().c_str()) : NULL)
|
|
{
|
|
this->Checkbox->setEnabled(true);
|
|
this->Checkbox->setToolTip(pqPropertyWidget::getTooltip(smproperty));
|
|
this->links().addPropertyLink(
|
|
this->Checkbox, "checked", SIGNAL(toggled(bool)),
|
|
smproxy, smproperty);
|
|
}
|
|
else
|
|
{
|
|
this->Checkbox->setEnabled(false);
|
|
}
|
|
}
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
pqSMProxy pqProxyEditorPropertyWidget::proxyToEdit() const
|
|
{
|
|
return pqSMProxy(this->ProxyToEdit.GetPointer());
|
|
}
|
|
|
|
//-----------------------------------------------------------------------------
|
|
void pqProxyEditorPropertyWidget::buttonClicked()
|
|
{
|
|
if (!this->ProxyToEdit.GetPointer())
|
|
{
|
|
qCritical() << "No proxy to edit!";
|
|
return;
|
|
}
|
|
|
|
if (this->Editor == NULL)
|
|
{
|
|
this->Editor = new pqProxyWidgetDialog(this->ProxyToEdit.GetPointer(), this);
|
|
this->Editor->setEnableSearchBar(true);
|
|
this->Editor->setSettingsKey(
|
|
QString("pqProxyEditorPropertyWidget.%1.%2")
|
|
.arg(this->proxy()->GetXMLName())
|
|
.arg(this->property()->GetXMLName()));
|
|
this->connect(this->Editor, SIGNAL(accepted()), SIGNAL(changeAvailable()));
|
|
}
|
|
this->Editor->setWindowTitle(this->Button->text());
|
|
this->Editor->setObjectName("EditProxy");
|
|
this->Editor->show();
|
|
this->Editor->raise();
|
|
}
|