Lines Matching refs:XYPlotActor

27 vtkCxxSetObjectMacro(vtkXYPlotWidget, XYPlotActor, vtkXYPlotActor);
32 this->XYPlotActor = vtkXYPlotActor::New(); in vtkXYPlotWidget()
41 if (this->XYPlotActor) in ~vtkXYPlotWidget()
43 this->XYPlotActor->Delete(); in ~vtkXYPlotWidget()
83 this->CurrentRenderer->AddViewProp(this->XYPlotActor); in SetEnabled()
99 this->CurrentRenderer->RemoveActor(this->XYPlotActor); in SetEnabled()
237 this->XYPlotActor->GetPositionCoordinate()->GetComputedDisplayValue(this->CurrentRenderer); in OnLeftButtonDown()
239 this->XYPlotActor->GetPosition2Coordinate()->GetComputedDisplayValue(this->CurrentRenderer); in OnLeftButtonDown()
277 this->XYPlotActor->GetPositionCoordinate()->GetComputedDisplayValue(this->CurrentRenderer); in OnMouseMove()
279 this->XYPlotActor->GetPosition2Coordinate()->GetComputedDisplayValue(this->CurrentRenderer); in OnMouseMove()
316 double* fpos1 = this->XYPlotActor->GetPositionCoordinate()->GetValue(); in OnMouseMove()
317 double* fpos2 = this->XYPlotActor->GetPosition2Coordinate()->GetValue(); in OnMouseMove()
374 if (!this->XYPlotActor->GetExchangeAxes()) in OnMouseMove()
376 this->XYPlotActor->SetExchangeAxes(1); in OnMouseMove()
391 if (this->XYPlotActor->GetExchangeAxes()) in OnMouseMove()
393 this->XYPlotActor->SetExchangeAxes(0); in OnMouseMove()
409 this->XYPlotActor->GetPositionCoordinate()->SetValue(par1[0], par1[1]); in OnMouseMove()
410 this->XYPlotActor->GetPosition2Coordinate()->SetValue(par2[0] - par1[0], par2[1] - par1[1]); in OnMouseMove()
443 os << indent << "XYPlotActor: " << this->XYPlotActor << "\n"; in PrintSelf()