123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513 |
- /*=========================================================================
- Library: CTK
- Copyright (c) Kitware Inc.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0.txt
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- =========================================================================*/
- // Qt includes
- #include <QDebug>
- #include <QToolButton>
- // CTK includes
- #include "ctkLogger.h"
- #include "ctkVTKScalarsToColorsView.h"
- #include "ctkVTKVolumePropertyWidget.h"
- #include "ctkUtils.h"
- #include "ui_ctkVTKVolumePropertyWidget.h"
- // VTK includes
- #include <vtkColorTransferControlPointsItem.h>
- #include <vtkColorTransferFunction.h>
- #include <vtkColorTransferFunctionItem.h>
- #include <vtkCompositeControlPointsItem.h>
- #include <vtkCompositeTransferFunctionItem.h>
- #include <vtkContextScene.h>
- #include <vtkLookupTable.h>
- #include <vtkLookupTableItem.h>
- #include <vtkPiecewiseControlPointsItem.h>
- #include <vtkPiecewiseFunction.h>
- #include <vtkPiecewiseFunctionItem.h>
- #include <vtkVolumeProperty.h>
- //----------------------------------------------------------------------------
- static ctkLogger logger("org.commontk.visualization.vtk.widgets.ctkVTKVolumePropertyWidget");
- //----------------------------------------------------------------------------
- class ctkVTKVolumePropertyWidgetPrivate:
- public Ui_ctkVTKVolumePropertyWidget
- {
- Q_DECLARE_PUBLIC(ctkVTKVolumePropertyWidget);
- protected:
- ctkVTKVolumePropertyWidget* const q_ptr;
- public:
- ctkVTKVolumePropertyWidgetPrivate(ctkVTKVolumePropertyWidget& object);
- void setupUi(QWidget* widget);
- void computeRange(double* range);
- void updateThresholdSlider(vtkPiecewiseFunction* opacityFunction);
- void setThreshold(double min, double max, double opacity);
- vtkVolumeProperty* VolumeProperty;
- int CurrentComponent;
- QToolButton* ShowOpacityThresholdWidgetButton;
- };
- // ----------------------------------------------------------------------------
- // ctkVTKVolumePropertyWidgetPrivate methods
- // ----------------------------------------------------------------------------
- ctkVTKVolumePropertyWidgetPrivate::ctkVTKVolumePropertyWidgetPrivate(
- ctkVTKVolumePropertyWidget& object)
- : q_ptr(&object)
- {
- this->VolumeProperty = 0;
- this->CurrentComponent = 0;
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidgetPrivate::setupUi(QWidget* widget)
- {
- Q_Q(ctkVTKVolumePropertyWidget);
- Q_ASSERT(q == widget);
- this->Ui_ctkVTKVolumePropertyWidget::setupUi(widget);
- double validBounds[4] = {VTK_DOUBLE_MIN, VTK_DOUBLE_MAX, 0., 1.};
- this->ScalarOpacityWidget->view()->setValidBounds(validBounds);
- this->ScalarColorWidget->view()->setValidBounds(validBounds);
- this->GradientWidget->view()->setValidBounds(validBounds);
- QObject::connect(this->ScalarOpacityWidget->view(), SIGNAL(extentChanged()),
- q, SIGNAL(chartsExtentChanged()));
- this->ScalarOpacityWidget->view()->addCompositeFunction(0, 0, true, true);
- vtkCompositeControlPointsItem* composite =
- vtkCompositeControlPointsItem::SafeDownCast(
- this->ScalarOpacityWidget->view()->opacityFunctionPlots()[1]);
- composite->SetColorFill(true);
- composite->SetPointsFunction(vtkCompositeControlPointsItem::OpacityPointsFunction);
- this->ScalarColorWidget->view()->addColorTransferFunction(0);
- this->GradientWidget->view()->addPiecewiseFunction(0);
- this->ShowOpacityThresholdWidgetButton = new QToolButton;
- this->ShowOpacityThresholdWidgetButton->setIcon(
- QIcon(":Icons/threshold.png"));
- this->ShowOpacityThresholdWidgetButton->setCheckable(true);
- this->ShowOpacityThresholdWidgetButton->setAutoRaise(true);
- QObject::connect(this->ShowOpacityThresholdWidgetButton,
- SIGNAL(toggled(bool)),
- q, SLOT(onThresholdOpacityToggled(bool)));
- QObject::connect(this->ShowOpacityThresholdWidgetButton,
- SIGNAL(toggled(bool)),
- q, SIGNAL(thresholdEnabledChanged(bool)));
- this->ScalarOpacityWidget->addExtraWidget(
- this->ShowOpacityThresholdWidgetButton);
- this->ScalarOpacityThresholdWidget->setVisible(false);
- QObject::connect(this->ScalarOpacityWidget, SIGNAL(axesModified()),
- q, SLOT(onAxesModified()), Qt::QueuedConnection);
- QObject::connect(this->ScalarColorWidget, SIGNAL(axesModified()),
- q, SLOT(onAxesModified()), Qt::QueuedConnection);
- QObject::connect(this->GradientWidget, SIGNAL(axesModified()),
- q, SLOT(onAxesModified()), Qt::QueuedConnection);
- this->GradientGroupBox->setCollapsed(true);
- this->AdvancedGroupBox->setCollapsed(true);
- QObject::connect(this->InterpolationComboBox, SIGNAL(currentIndexChanged(int)),
- q, SLOT(setInterpolationMode(int)));
- QObject::connect(this->ShadeCheckBox, SIGNAL(toggled(bool)),
- q, SLOT(setShade(bool)));
- QObject::connect(this->MaterialPropertyWidget, SIGNAL(ambientChanged(double)),
- q, SLOT(setAmbient(double)));
- QObject::connect(this->MaterialPropertyWidget, SIGNAL(diffuseChanged(double)),
- q, SLOT(setDiffuse(double)));
- QObject::connect(this->MaterialPropertyWidget, SIGNAL(specularChanged(double)),
- q, SLOT(setSpecular(double)));
- QObject::connect(this->MaterialPropertyWidget, SIGNAL(specularPowerChanged(double)),
- q, SLOT(setSpecularPower(double)));
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidgetPrivate::computeRange(double* range)
- {
- if (!this->VolumeProperty)
- {
- range[0] = 0.;
- range[1] = 1.;
- return;
- }
- range[0] = VTK_DOUBLE_MAX;
- range[1] = VTK_DOUBLE_MIN;
- Q_ASSERT(this->VolumeProperty->GetRGBTransferFunction(this->CurrentComponent));
- Q_ASSERT(this->VolumeProperty->GetScalarOpacity(this->CurrentComponent));
- Q_ASSERT(this->VolumeProperty->GetGradientOpacity(this->CurrentComponent));
-
- double colorRange[2] = {0., 1.};
- this->VolumeProperty->GetRGBTransferFunction(this->CurrentComponent)->GetRange(colorRange);
- range[0] = qMin(range[0], colorRange[0]);
- range[1] = qMax(range[1], colorRange[1]);
- double opacityRange[2] = {0., 1.};
- this->VolumeProperty->GetScalarOpacity(this->CurrentComponent)->GetRange(opacityRange);
- range[0] = qMin(range[0], opacityRange[0]);
- range[1] = qMax(range[1], opacityRange[1]);
-
- double gradientRange[2] = {0., 1.};
- this->VolumeProperty->GetGradientOpacity(this->CurrentComponent)->GetRange(gradientRange);
- range[0] = qMin(range[0], gradientRange[0]);
- range[1] = qMax(range[1], gradientRange[1]);
- }
- // ----------------------------------------------------------------------------
- // ctkVTKVolumePropertyWidget methods
- // ----------------------------------------------------------------------------
- ctkVTKVolumePropertyWidget::ctkVTKVolumePropertyWidget(QWidget* parentWidget)
- :QWidget(parentWidget)
- , d_ptr(new ctkVTKVolumePropertyWidgetPrivate(*this))
- {
- Q_D(ctkVTKVolumePropertyWidget);
- d->setupUi(this);
- }
- // ----------------------------------------------------------------------------
- ctkVTKVolumePropertyWidget::~ctkVTKVolumePropertyWidget()
- {
- }
- // ----------------------------------------------------------------------------
- vtkVolumeProperty* ctkVTKVolumePropertyWidget::volumeProperty()const
- {
- Q_D(const ctkVTKVolumePropertyWidget);
- return d->VolumeProperty;
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget
- ::setVolumeProperty(vtkVolumeProperty* newVolumeProperty)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- if (d->VolumeProperty == newVolumeProperty)
- {
- return;
- }
- this->qvtkReconnect(d->VolumeProperty, newVolumeProperty,
- vtkCommand::ModifiedEvent,
- this, SLOT(updateFromVolumeProperty()));
- d->VolumeProperty = newVolumeProperty;
- this->updateFromVolumeProperty();
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::updateFromVolumeProperty()
- {
- Q_D(ctkVTKVolumePropertyWidget);
- vtkColorTransferFunction* colorTransferFunction = 0;
- vtkPiecewiseFunction* opacityFunction = 0;
- vtkPiecewiseFunction* gradientFunction = 0;
- if (d->VolumeProperty)
- {
- colorTransferFunction =
- d->VolumeProperty->GetRGBTransferFunction()->GetSize() ?
- d->VolumeProperty->GetRGBTransferFunction() : 0;
- opacityFunction =
- d->VolumeProperty->GetScalarOpacity()->GetSize() ?
- d->VolumeProperty->GetScalarOpacity() : 0;
- gradientFunction =
- d->VolumeProperty->GetGradientOpacity()->GetSize() ?
- d->VolumeProperty->GetGradientOpacity() : 0;
- }
- d->ScalarOpacityThresholdWidget->setPiecewiseFunction(
- this->isThresholdEnabled() ? opacityFunction : 0);
- this->qvtkDisconnect(0, vtkCommand::EndInteractionEvent,
- this, SLOT(updateRange()));
- this->qvtkConnect(opacityFunction, vtkCommand::EndInteractionEvent,
- this, SLOT(updateRange()), 0., Qt::QueuedConnection);
- this->qvtkConnect(opacityFunction, vtkCommand::EndEvent,
- this, SLOT(updateRange()), 0., Qt::QueuedConnection);
- this->qvtkConnect(colorTransferFunction, vtkCommand::EndInteractionEvent,
- this, SLOT(updateRange()), 0., Qt::QueuedConnection);
- this->qvtkConnect(colorTransferFunction, vtkCommand::EndEvent,
- this, SLOT(updateRange()), 0., Qt::QueuedConnection);
- this->qvtkConnect(gradientFunction, vtkCommand::EndInteractionEvent,
- this, SLOT(updateRange()), 0., Qt::QueuedConnection);
- this->qvtkConnect(gradientFunction, vtkCommand::EndEvent,
- this, SLOT(updateRange()), 0., Qt::QueuedConnection);
- d->ScalarOpacityWidget->view()->setOpacityFunctionToPlots(opacityFunction);
- d->ScalarOpacityWidget->view()->setColorTransferFunctionToPlots(colorTransferFunction);
- d->ScalarColorWidget->view()->setColorTransferFunctionToPlots(colorTransferFunction);
- d->GradientWidget->view()->setPiecewiseFunctionToPlots(gradientFunction);
- if (d->VolumeProperty)
- {
- d->InterpolationComboBox->setCurrentIndex(
- d->VolumeProperty->GetInterpolationType() == VTK_NEAREST_INTERPOLATION ? 0 : 1);
- d->ShadeCheckBox->setChecked(
- d->VolumeProperty->GetShade(d->CurrentComponent));
- d->MaterialPropertyWidget->setAmbient(
- d->VolumeProperty->GetAmbient(d->CurrentComponent));
- d->MaterialPropertyWidget->setDiffuse(
- d->VolumeProperty->GetDiffuse(d->CurrentComponent));
- d->MaterialPropertyWidget->setSpecular(
- d->VolumeProperty->GetSpecular(d->CurrentComponent));
- d->MaterialPropertyWidget->setSpecularPower(
- d->VolumeProperty->GetSpecularPower(d->CurrentComponent));
- }
- this->updateRange();
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::updateRange()
- {
- Q_D(ctkVTKVolumePropertyWidget);
- double range[2];
- d->computeRange(range);
- d->ScalarOpacityThresholdWidget->setRange(range[0], range[1]);
- double chartBounds[8];
- d->ScalarOpacityWidget->view()->chartBounds(chartBounds);
- chartBounds[2] = range[0];
- chartBounds[3] = range[1];
- d->ScalarOpacityWidget->view()->setChartUserBounds(chartBounds);
- d->ScalarOpacityWidget->view()->update();
- d->ScalarColorWidget->view()->chartBounds(chartBounds);
- chartBounds[2] = range[0];
- chartBounds[3] = range[1];
- d->ScalarColorWidget->view()->setChartUserBounds(chartBounds);
- d->ScalarColorWidget->view()->update();
- d->GradientWidget->view()->chartBounds(chartBounds);
- chartBounds[2] = range[0];
- chartBounds[3] = range[1];
- d->GradientWidget->view()->setChartUserBounds(chartBounds);
- d->GradientWidget->view()->update();
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::chartsBounds(double bounds[4])const
- {
- Q_D(const ctkVTKVolumePropertyWidget);
- double chartBounds[4];
- d->ScalarOpacityWidget->view()->chartBounds(chartBounds);
- memcpy(bounds, chartBounds, 4*sizeof(double));
- d->ScalarColorWidget->view()->chartBounds(chartBounds);
- bounds[0] = qMin(bounds[0], chartBounds[0]);
- bounds[1] = qMax(bounds[1], chartBounds[1]);
- bounds[2] = qMin(bounds[2], chartBounds[2]);
- bounds[3] = qMax(bounds[3], chartBounds[3]);
- //d->GradientWidget->view()->chartBounds(chartBounds);
- //bounds[0] = qMin(bounds[0], chartBounds[0]);
- //bounds[1] = qMax(bounds[1], chartBounds[1]);
- //bounds[2] = qMin(bounds[2], chartBounds[2]);
- //bounds[3] = qMax(bounds[3], chartBounds[3]);
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::chartsExtent(double extent[4])const
- {
- Q_D(const ctkVTKVolumePropertyWidget);
- double chartExtent[8];
- d->ScalarOpacityWidget->view()->chartExtent(chartExtent);
- memcpy(extent, chartExtent, 4*sizeof(double));
- d->ScalarColorWidget->view()->chartExtent(chartExtent);
- extent[0] = qMin(extent[0], chartExtent[0]);
- extent[1] = qMax(extent[1], chartExtent[1]);
- extent[2] = qMin(extent[2], chartExtent[2]);
- extent[3] = qMax(extent[3], chartExtent[3]);
- //d->GradientWidget->view()->chartExtent(chartExtent);
- //extent[0] = qMin(extent[0], chartExtent[0]);
- //extent[1] = qMin(extent[1], chartExtent[1]);
- //extent[2] = qMin(extent[2], chartExtent[2]);
- //extent[3] = qMin(extent[3], chartExtent[3]);
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::setInterpolationMode(int mode)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- if (!d->VolumeProperty)
- {
- return;
- }
- d->VolumeProperty->SetInterpolationType(mode);
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::setShade(bool enable)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- if (!d->VolumeProperty)
- {
- return;
- }
- d->VolumeProperty->SetShade(d->CurrentComponent, enable);
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::setAmbient(double value)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- if (!d->VolumeProperty)
- {
- return;
- }
- d->VolumeProperty->SetAmbient(d->CurrentComponent, value);
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::setDiffuse(double value)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- if (!d->VolumeProperty)
- {
- return;
- }
- d->VolumeProperty->SetDiffuse(d->CurrentComponent, value);
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::setSpecular(double value)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- if (!d->VolumeProperty)
- {
- return;
- }
- d->VolumeProperty->SetSpecular(d->CurrentComponent, value);
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::setSpecularPower(double value)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- if (!d->VolumeProperty)
- {
- return;
- }
- d->VolumeProperty->SetSpecularPower(d->CurrentComponent, value);
- }
- // ----------------------------------------------------------------------------
- bool ctkVTKVolumePropertyWidget::isThresholdEnabled()const
- {
- Q_D(const ctkVTKVolumePropertyWidget);
- return d->ScalarOpacityThresholdWidget->isVisibleTo(
- const_cast<ctkVTKVolumePropertyWidget*>(this));
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::setThresholdEnabled(bool enable)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- d->ShowOpacityThresholdWidgetButton->setChecked(enable);
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::onThresholdOpacityToggled(bool enable)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- d->ScalarOpacityThresholdWidget->setVisible(enable);
- this->updateFromVolumeProperty();
- }
- // ----------------------------------------------------------------------------
- bool ctkVTKVolumePropertyWidget::isThresholdToggleVisible()const
- {
- Q_D(const ctkVTKVolumePropertyWidget);
- return d->ShowOpacityThresholdWidgetButton->isVisibleTo(
- const_cast<ctkVTKVolumePropertyWidget*>(this));
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::setThresholdToggleVisible(bool showToggle)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- d->ShowOpacityThresholdWidgetButton->setVisible(showToggle);
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::onAxesModified()
- {
- Q_D(ctkVTKVolumePropertyWidget);
- //return;
- ctkVTKScalarsToColorsWidget* senderWidget =
- qobject_cast<ctkVTKScalarsToColorsWidget*>(this->sender());
-
- double xRange[2] = {0.,0.};
- senderWidget->xRange(xRange);
- if (senderWidget != d->ScalarOpacityWidget)
- {
- bool wasBlocking = d->ScalarOpacityWidget->blockSignals(true);
- d->ScalarOpacityWidget->setXRange(xRange[0], xRange[1]);
- d->ScalarOpacityWidget->blockSignals(wasBlocking);
- }
- if (senderWidget != d->ScalarColorWidget)
- {
- bool wasBlocking = d->ScalarColorWidget->blockSignals(true);
- d->ScalarColorWidget->setXRange(xRange[0], xRange[1]);
- d->ScalarColorWidget->blockSignals(wasBlocking);
- }
- if (senderWidget != d->GradientWidget)
- {
- bool wasBlocking = d->GradientWidget->blockSignals(true);
- d->GradientWidget->setXRange(xRange[0], xRange[1]);
- d->GradientWidget->blockSignals(wasBlocking);
- }
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::moveAllPoints(double xOffset, double yOffset,
- bool dontMoveFirstAndLast)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- if (d->VolumeProperty)
- {
- d->VolumeProperty->InvokeEvent(vtkCommand::StartEvent);
- }
- d->ScalarOpacityWidget->view()
- ->moveAllPoints(xOffset, yOffset, dontMoveFirstAndLast);
- d->ScalarColorWidget->view()
- ->moveAllPoints(xOffset, yOffset, dontMoveFirstAndLast);
- d->GradientWidget->view()
- ->moveAllPoints(xOffset, yOffset, dontMoveFirstAndLast);
- if (d->VolumeProperty)
- {
- d->VolumeProperty->InvokeEvent(vtkCommand::EndEvent);
- }
- }
- // ----------------------------------------------------------------------------
- void ctkVTKVolumePropertyWidget::spreadAllPoints(double factor,
- bool dontSpreadFirstAndLast)
- {
- Q_D(ctkVTKVolumePropertyWidget);
- d->VolumeProperty->InvokeEvent(vtkCommand::StartEvent);
- d->ScalarOpacityWidget->view()
- ->spreadAllPoints(factor, dontSpreadFirstAndLast);
- d->ScalarColorWidget->view()
- ->spreadAllPoints(factor, dontSpreadFirstAndLast);
- d->GradientWidget->view()
- ->spreadAllPoints(factor, dontSpreadFirstAndLast);
- d->VolumeProperty->InvokeEvent(vtkCommand::EndEvent);
- }
|