Skip to content
Snippets Groups Projects
Commit e75bb74e authored by Michael Reuter's avatar Michael Reuter
Browse files

Finishing move of time handling to view base class. This refs #3959.

All of the time step handling for the animation controls is now in the
view base class. I added a mode for updating the number of time steps
in the pipeline object when the rebinner is called.
parent 2b386012
No related branches found
No related tags found
No related merge requests found
......@@ -133,13 +133,6 @@ private:
ViewBase *setMainViewWidget(QWidget *container, ModeControlWidget::Views v);
/// Helper function to swap current and hidden view pointers.
void swapViews();
/**
* Function to update animation controls when the rebinner is used.
* @param dvp the array containing the new timestep information
*/
void updateAnimationControls(vtkSMDoubleVectorProperty *dvp);
/// Update the timesteps in the animation control.
void updateTimesteps();
};
}
......
......@@ -135,7 +135,7 @@ public slots:
*/
void onLogScale(int state);
/// Setup the animation controls.
void setTimeSteps();
void setTimeSteps(bool withUpdate = false);
signals:
/**
......@@ -172,7 +172,7 @@ private:
/// Find the number of true sources in the pipeline.
unsigned int getNumSources();
/// Collect time information for animation controls.
void handleTimeInfo(vtkSMDoubleVectorProperty *dvp);
void handleTimeInfo(vtkSMDoubleVectorProperty *dvp, bool doUpdate);
ColorUpdater colorUpdater; ///< Handle to the color updating delegator
};
......
......@@ -304,9 +304,9 @@ void MdViewerWidget::setParaViewComponentsForView()
this->ui.timeControlWidget,
SLOT(enableAnimationControls(bool)));
QObject::connect(this->currentView,
SIGNAL(setAnimationControlInfo(double,double,int)),
SIGNAL(setAnimationControlInfo(double, double, int)),
this->ui.timeControlWidget,
SLOT(updateAnimationControls(double,double,int)));
SLOT(updateAnimationControls(double, double, int)));
}
void MdViewerWidget::onDataLoaded(pqPipelineSource* source)
......@@ -346,7 +346,7 @@ void MdViewerWidget::checkForUpdates()
this->currentView->resetDisplay();
//this->currentView->getView()->resetCamera();
this->currentView->onAutoScale();
this->updateTimesteps();
this->currentView->setTimeSteps(true);
}
if (QString(proxy->GetXMLName()).contains("Threshold"))
{
......@@ -358,38 +358,6 @@ void MdViewerWidget::checkForUpdates()
}
}
void MdViewerWidget::updateAnimationControls(vtkSMDoubleVectorProperty *dvp)
{
const int numTimesteps = static_cast<int>(dvp->GetNumberOfElements());
if (0 != numTimesteps)
{
double tStart = dvp->GetElement(0);
double tEnd = dvp->GetElement(dvp->GetNumberOfElements() - 1);
pqAnimationScene *scene = pqPVApplicationCore::instance()->animationManager()->getActiveScene();
vtkSMPropertyHelper(scene->getProxy(), "StartTime").Set(tStart);
vtkSMPropertyHelper(scene->getProxy(), "EndTime").Set(tEnd);
vtkSMPropertyHelper(scene->getProxy(), "NumberOfFrames").Set(numTimesteps);
this->ui.timeControlWidget->setEnabled(true);
}
else
{
this->ui.timeControlWidget->setEnabled(false);
}
}
void MdViewerWidget::updateTimesteps()
{
vtkSMSourceProxy *rbcProxy = vtkSMSourceProxy::SafeDownCast(pqActiveObjects::instance().activeSource()->getProxy());
rbcProxy->Modified();
rbcProxy->UpdatePipelineInformation();
vtkSMDoubleVectorProperty *tsv = vtkSMDoubleVectorProperty::SafeDownCast(rbcProxy->GetProperty("TimestepValues"));
const int numTimesteps = static_cast<int>(tsv->GetNumberOfElements());
vtkSMSourceProxy *srcProxy = vtkSMSourceProxy::SafeDownCast(this->currentView->origSrc->getProxy());
vtkSMPropertyHelper(srcProxy, "TimestepValues").Set(tsv->GetElements(),
numTimesteps);
this->updateAnimationControls(tsv);
}
void MdViewerWidget::switchViews(ModeControlWidget::Views v)
{
this->removeProxyTabWidgetConnections();
......
......@@ -161,13 +161,15 @@ void ViewBase::checkView()
* step information. If not, it will disable the animation controls. If the
* pipeline source has time step information, the animation controls will be
* enabled and the start, stop and number of time steps updated for the
* animation scene.
* animation scene. If the withUpdate flag is used (default off), then the
* original pipeline source is updated with the number of "time" steps.
* @param withUpdate update the original source with "time" step info
*/
void ViewBase::setTimeSteps()
void ViewBase::setTimeSteps(bool withUpdate)
{
pqPipelineSource *src = this->getPvActiveSrc();
unsigned int numSrcs = this->getNumSources();
if (this->isPeaksWorkspace(src))
if (!withUpdate && this->isPeaksWorkspace(src))
{
if (1 == numSrcs)
{
......@@ -184,7 +186,7 @@ void ViewBase::setTimeSteps()
srcProxy1->UpdatePipelineInformation();
vtkSMDoubleVectorProperty *tsv = vtkSMDoubleVectorProperty::SafeDownCast(\
srcProxy1->GetProperty("TimestepValues"));
this->handleTimeInfo(tsv);
this->handleTimeInfo(tsv, withUpdate);
}
/**
......@@ -217,12 +219,20 @@ unsigned int ViewBase::getNumSources()
* end "time" and the number of "time" steps. It also enables/disables the
* animation controls widget based on the number of "time" steps.
* @param dvp the vector property containing the "time" information
* @param doUpdate flag to update original source with "time" step info
*/
void ViewBase::handleTimeInfo(vtkSMDoubleVectorProperty *dvp)
void ViewBase::handleTimeInfo(vtkSMDoubleVectorProperty *dvp, bool doUpdate)
{
const int numTimesteps = static_cast<int>(dvp->GetNumberOfElements());
if (0 != numTimesteps)
{
if (doUpdate)
{
vtkSMSourceProxy *srcProxy = vtkSMSourceProxy::SafeDownCast(\
this->origSrc->getProxy());
vtkSMPropertyHelper(srcProxy, "TimestepValues").Set(dvp->GetElements(),
numTimesteps);
}
double tStart = dvp->GetElement(0);
double tEnd = dvp->GetElement(dvp->GetNumberOfElements() - 1);
pqAnimationScene *scene = pqPVApplicationCore::instance()->animationManager()->getActiveScene();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment