void QvisAnimationWindow::timeoutChanged(int val) { animationAtts->SetTimeout(SLOWEST_TIMEOUT - val); SetUpdate(false); Apply(); }
void QvisPreferencesWindow::saveCrashRecoveryFileToggled(bool val) { atts->SetSaveCrashRecoveryFile(val); SetUpdate(false); atts->Notify(); }
void QvisPreferencesWindow::expandNewPlotsToggled(bool val) { atts->SetExpandNewPlots(val); SetUpdate(false); atts->Notify(); }
void QvisLegacyStreamlinePlotWindow::colorTableNameChanged(bool useDefault, const QString &ctName) { streamAtts->SetColorTableName(ctName.latin1()); SetUpdate(false); Apply(); }
void QvisLine3DInterface::visibilityToggled(bool val) { annot->SetVisible(val); SetUpdate(false); Apply(); }
void QvisText2DInterface::shadowToggled(bool val) { annot->SetFontShadow(val); SetUpdate(false); Apply(); }
void QvisLegacyStreamlinePlotWindow::showStartChanged(bool val) { streamAtts->SetShowStart(val); SetUpdate(false); Apply(); }
void QvisLegendAttributesInterface::boldToggled(bool val) { annot->SetFontBold(val); SetUpdate(false); Apply(); }
void QvisLegendAttributesInterface::italicToggled(bool val) { annot->SetFontItalic(val); SetUpdate(false); Apply(); }
void QvisLegendAttributesInterface::drawMinmaxToggled(bool val) { SetBool(LEGEND_DRAW_MINMAX, val); SetUpdate(false); Apply(); }
void QvisLegendAttributesInterface::drawTitleToggled(bool val) { SetBool(LEGEND_DRAW_TITLE, val); SetUpdate(false); Apply(); }
void QvisLegendAttributesInterface::fontFamilyChanged(int family) { annot->SetFontFamily((AnnotationObject::FontFamily)family); SetUpdate(false); Apply(); }
void QvisAnimationWindow::incrementChanged(int val) { animationAtts->SetFrameIncrement(val); SetUpdate(false); Apply(); }
void QvisAnimationWindow::playbackModeChanged(int val) { animationAtts->SetPlaybackMode((AnimationAttributes::PlaybackMode)val); SetUpdate(false); Apply(); }
void QvisText2DInterface::boldToggled(bool val) { annot->SetFontBold(val); SetUpdate(false); Apply(); }
void QvisLegendAttributesInterface::shadowToggled(bool val) { annot->SetFontShadow(val); SetUpdate(false); Apply(); }
void QvisText2DInterface::italicToggled(bool val) { annot->SetFontItalic(val); SetUpdate(false); Apply(); }
// **************************************************************************** // Method: QvisKeyframeWindow::keyframeEnabledToggled // // Purpose: // toggle the keyframe enabled mode // // Programmer: Jeremy Meredith // Creation: January 23, 2003 // // Modifications: // Brad Whitlock, Tue Oct 28 09:27:41 PDT 2008 // Don't update. // // **************************************************************************** void QvisKeyframeWindow::keyframeEnabledToggled(bool k) { kfAtts->SetEnabled(k); SetUpdate(false); Apply(); }
void ViewerProxy::SetPlotSILRestriction(avtSILRestriction_p newRestriction) { // Copy the new SIL restriction into the internal SIL restriction object. internalSILRestriction = newRestriction; SILRestrictionAttributes *newSRA =internalSILRestriction->MakeAttributes(); if(newSRA) { // Copy the attribute representation of the SIL restriction into the // silRestrictionAtts object and send notify observers. Note that // SetUpdate is set to false so the proxy's Update method is NOT called SILRestrictionAttributes *silRestrictionAtts = state->GetSILRestrictionAttributes(); *silRestrictionAtts = *newSRA; SetUpdate(false); silRestrictionAtts->Notify(); // Now that the new SIL restriction attributes have been sent to the // viewer, send the RPC that tells the viewer to apply them. GetViewerMethods()->SetPlotSILRestriction(); // Delete the new SRA since we're done with it. delete newSRA; } }
void QvisSpreadsheetPlotWindow::subsetNameChanged(const QString &name) { atts->SetSubsetName(name.toStdString()); SetUpdate(false); Apply(); }
void QvisLegacyStreamlinePlotWindow::lineWidthChanged(int style) { streamAtts->SetLineWidth(style); SetUpdate(false); Apply(); }
void QvisSpreadsheetPlotWindow::colorTableNameChanged(bool useDefault, const QString &ctName) { atts->SetColorTableName(ctName.toStdString()); SetUpdate(false); Apply(); }
void QvisLegacyStreamlinePlotWindow::lightingFlagChanged(bool val) { streamAtts->SetLightingFlag(val); SetUpdate(false); Apply(); }
void QvisSpreadsheetPlotWindow::normalChanged(int val) { atts->SetNormal(SpreadsheetAttributes::NormalAxis(val)); SetUpdate(false); Apply(); }
void QvisPreferencesWindow::userDirForSessionFilesToggled(bool val) { atts->SetUserDirForSessionFiles(val); SetUpdate(false); atts->Notify(); }
void QvisSpreadsheetPlotWindow::fontNameChanged(const QString &newFont) { atts->SetSpreadsheetFont(newFont.toStdString()); SetUpdate(false); Apply(); }
void QvisPreferencesWindow::newPlotsInheritSILRestrictionToggled(bool val) { atts->SetNewPlotsInheritSILRestriction(val); SetUpdate(false); atts->Notify(); }
void QvisText2DInterface::fontFamilyChanged(int family) { annot->SetFontFamily((AnnotationObject::FontFamily)family); SetUpdate(false); Apply(); }
void CVicinityDependentObjectMover::Reset( const bool bEnteringGameMode ) { m_bForcedReverseMoveToStartPos = false; m_currentState = eObjectRangeMoverState_None; SetupEntity(); SetUpdate(); }
void QvisAnimationWindow::pipelineCachingToggled(bool val) { animationAtts->SetPipelineCachingMode(val); SetUpdate(false); Apply(); }