COMP: Merge conflicts w/collaboration branch
Fix conflicts with collaboration branch.
Showing
with
123545 additions
and
184 deletions
+123545
-184
- .gitmodules .gitmodules +3 -0
- Applications/ParaView/Testing/XML/CMakeLists.txt Applications/ParaView/Testing/XML/CMakeLists.txt +2 -0
- Applications/ParaView/Testing/XML/Clip.xml Applications/ParaView/Testing/XML/Clip.xml +5 -0
- Applications/ParaView/Testing/XML/GlobalProperties.xml Applications/ParaView/Testing/XML/GlobalProperties.xml +2 -0
- Applications/ParaView/Testing/XML/UndoRedo8.xml Applications/ParaView/Testing/XML/UndoRedo8.xml +33 -0
- CMake/CTestCustom.ctest.in CMake/CTestCustom.ctest.in +8 -1
- CMake/FindSILO.cmake CMake/FindSILO.cmake +6 -0
- CMake/ParaViewCommon.cmake CMake/ParaViewCommon.cmake +28 -37
- CMake/ParaViewMacros.cmake CMake/ParaViewMacros.cmake +20 -0
- CMake/ParaViewPlugins.cmake CMake/ParaViewPlugins.cmake +16 -2
- CMake/pqParaViewPlugin.cxx.in CMake/pqParaViewPlugin.cxx.in +13 -4
- CMake/pqParaViewPlugin.h.in CMake/pqParaViewPlugin.h.in +1 -1
- CMake/pqViewModuleImplementation.cxx.in CMake/pqViewModuleImplementation.cxx.in +4 -14
- CMakeLists.txt CMakeLists.txt +3 -4
- CoProcessing/CoProcessor/CMakeLists.txt CoProcessing/CoProcessor/CMakeLists.txt +1 -2
- CoProcessing/CoProcessor/vtkCPProcessModulePythonHelper.h CoProcessing/CoProcessor/vtkCPProcessModulePythonHelper.h +0 -51
- CoProcessing/CoProcessor/vtkCPPythonHelper.cxx CoProcessing/CoProcessor/vtkCPPythonHelper.cxx +45 -48
- CoProcessing/CoProcessor/vtkCPPythonHelper.h CoProcessing/CoProcessor/vtkCPPythonHelper.h +1 -4
- CoProcessing/CoProcessor/vtkCPPythonScriptPipeline.cxx CoProcessing/CoProcessor/vtkCPPythonScriptPipeline.cxx +0 -2
- CommandLineExecutables/CMakeLists.txt CommandLineExecutables/CMakeLists.txt +105 -0
- CommandLineExecutables/pvdataserver.cxx CommandLineExecutables/pvdataserver.cxx +22 -0
- CommandLineExecutables/pvrenderserver.cxx CommandLineExecutables/pvrenderserver.cxx +22 -0
- CommandLineExecutables/pvserver.cxx CommandLineExecutables/pvserver.cxx +22 -0
- CommandLineExecutables/pvserver_common.h CommandLineExecutables/pvserver_common.h +67 -0
- CommandLineExecutables/vtkSMTestDriver.cxx CommandLineExecutables/vtkSMTestDriver.cxx +0 -0
- CommandLineExecutables/vtkSMTestDriver.h CommandLineExecutables/vtkSMTestDriver.h +0 -0
- CommandLineExecutables/vtkSMTestDriverConfig.h.in CommandLineExecutables/vtkSMTestDriverConfig.h.in +0 -0
- Examples/CustomApplications/Clone1/CMakeLists.txt Examples/CustomApplications/Clone1/CMakeLists.txt +1 -1
- Examples/CustomApplications/Clone2/CMakeLists.txt Examples/CustomApplications/Clone2/CMakeLists.txt +1 -1
- Examples/CustomApplications/Clone2/myMainWindow.cxx Examples/CustomApplications/Clone2/myMainWindow.cxx +2 -2
- Examples/CustomApplications/Demo1/myMainWindow.cxx Examples/CustomApplications/Demo1/myMainWindow.cxx +2 -2
- Examples/CustomApplications/ParticlesViewer/CMakeLists.txt Examples/CustomApplications/ParticlesViewer/CMakeLists.txt +1 -1
- Examples/CustomApplications/Spreadsheet/CMakeLists.txt Examples/CustomApplications/Spreadsheet/CMakeLists.txt +1 -1
- Examples/CustomApplications/Spreadsheet/SpreadSheetMainWindow.cxx .../CustomApplications/Spreadsheet/SpreadSheetMainWindow.cxx +2 -2
- Examples/Plugins/GUIView/MyView.cxx Examples/Plugins/GUIView/MyView.cxx +1 -1
- Examples/Plugins/RenderPassViews/RegisterRenderPassViews.cxx Examples/Plugins/RenderPassViews/RegisterRenderPassViews.cxx +2 -2
- ParaViewConfig.cmake.in ParaViewConfig.cmake.in +1 -1
- ParaViewCore/CMakeLists.txt ParaViewCore/CMakeLists.txt +11 -0
- ParaViewCore/ClientServerCore/CMakeLists.txt ParaViewCore/ClientServerCore/CMakeLists.txt +289 -0
- ParaViewCore/ClientServerCore/Testing/CMakeLists.txt ParaViewCore/ClientServerCore/Testing/CMakeLists.txt +12 -0
- ParaViewCore/ClientServerCore/Testing/ParaViewCoreClientServerCorePrintSelf.cxx ...verCore/Testing/ParaViewCoreClientServerCorePrintSelf.cxx +221 -0
- ParaViewCore/ClientServerCore/Testing/TestMPI.cxx ParaViewCore/ClientServerCore/Testing/TestMPI.cxx +0 -0
- ParaViewCore/ClientServerCore/hints ParaViewCore/ClientServerCore/hints +2 -0
- ParaViewCore/ClientServerCore/vtk3DWidgetRepresentation.cxx ParaViewCore/ClientServerCore/vtk3DWidgetRepresentation.cxx +150 -0
- ParaViewCore/ClientServerCore/vtk3DWidgetRepresentation.h ParaViewCore/ClientServerCore/vtk3DWidgetRepresentation.h +91 -0
- ParaViewCore/ClientServerCore/vtkCaveSynchronizedRenderers.cxx ...iewCore/ClientServerCore/vtkCaveSynchronizedRenderers.cxx +271 -0
- ParaViewCore/ClientServerCore/vtkCaveSynchronizedRenderers.h ParaViewCore/ClientServerCore/vtkCaveSynchronizedRenderers.h +98 -0
- ParaViewCore/ClientServerCore/vtkChartRepresentation.cxx ParaViewCore/ClientServerCore/vtkChartRepresentation.cxx +291 -0
- ParaViewCore/ClientServerCore/vtkChartRepresentation.h ParaViewCore/ClientServerCore/vtkChartRepresentation.h +145 -0
- ParaViewCore/ClientServerCore/vtkClientServerMoveData.cxx ParaViewCore/ClientServerCore/vtkClientServerMoveData.cxx +282 -0
- ParaViewCore/ClientServerCore/vtkClientServerMoveData.h ParaViewCore/ClientServerCore/vtkClientServerMoveData.h +118 -0
- ParaViewCore/ClientServerCore/vtkCompleteArrays.cxx ParaViewCore/ClientServerCore/vtkCompleteArrays.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkCompleteArrays.h ParaViewCore/ClientServerCore/vtkCompleteArrays.h +0 -0
- ParaViewCore/ClientServerCore/vtkCompositeRepresentation.cxx ParaViewCore/ClientServerCore/vtkCompositeRepresentation.cxx +427 -0
- ParaViewCore/ClientServerCore/vtkCompositeRepresentation.h ParaViewCore/ClientServerCore/vtkCompositeRepresentation.h +137 -0
- ParaViewCore/ClientServerCore/vtkCubeAxesRepresentation.cxx ParaViewCore/ClientServerCore/vtkCubeAxesRepresentation.cxx +357 -0
- ParaViewCore/ClientServerCore/vtkCubeAxesRepresentation.h ParaViewCore/ClientServerCore/vtkCubeAxesRepresentation.h +153 -0
- ParaViewCore/ClientServerCore/vtkDataLabelRepresentation.cxx ParaViewCore/ClientServerCore/vtkDataLabelRepresentation.cxx +403 -0
- ParaViewCore/ClientServerCore/vtkDataLabelRepresentation.h ParaViewCore/ClientServerCore/vtkDataLabelRepresentation.h +162 -0
- ParaViewCore/ClientServerCore/vtkGeometryRepresentation.cxx ParaViewCore/ClientServerCore/vtkGeometryRepresentation.cxx +710 -0
- ParaViewCore/ClientServerCore/vtkGeometryRepresentation.h ParaViewCore/ClientServerCore/vtkGeometryRepresentation.h +261 -0
- ParaViewCore/ClientServerCore/vtkGeometryRepresentationWithFaces.cxx ...e/ClientServerCore/vtkGeometryRepresentationWithFaces.cxx +238 -0
- ParaViewCore/ClientServerCore/vtkGeometryRepresentationWithFaces.h ...ore/ClientServerCore/vtkGeometryRepresentationWithFaces.h +100 -0
- ParaViewCore/ClientServerCore/vtkGlyph3DRepresentation.cxx ParaViewCore/ClientServerCore/vtkGlyph3DRepresentation.cxx +240 -0
- ParaViewCore/ClientServerCore/vtkGlyph3DRepresentation.h ParaViewCore/ClientServerCore/vtkGlyph3DRepresentation.h +103 -0
- ParaViewCore/ClientServerCore/vtkIceTSynchronizedRenderers.cxx ...iewCore/ClientServerCore/vtkIceTSynchronizedRenderers.cxx +387 -0
- ParaViewCore/ClientServerCore/vtkIceTSynchronizedRenderers.h ParaViewCore/ClientServerCore/vtkIceTSynchronizedRenderers.h +143 -0
- ParaViewCore/ClientServerCore/vtkImageSliceDataDeliveryFilter.cxx ...Core/ClientServerCore/vtkImageSliceDataDeliveryFilter.cxx +140 -0
- ParaViewCore/ClientServerCore/vtkImageSliceDataDeliveryFilter.h ...ewCore/ClientServerCore/vtkImageSliceDataDeliveryFilter.h +80 -0
- ParaViewCore/ClientServerCore/vtkImageSliceRepresentation.cxx ...ViewCore/ClientServerCore/vtkImageSliceRepresentation.cxx +368 -0
- ParaViewCore/ClientServerCore/vtkImageSliceRepresentation.h ParaViewCore/ClientServerCore/vtkImageSliceRepresentation.h +175 -0
- ParaViewCore/ClientServerCore/vtkImageVolumeRepresentation.cxx ...iewCore/ClientServerCore/vtkImageVolumeRepresentation.cxx +331 -0
- ParaViewCore/ClientServerCore/vtkImageVolumeRepresentation.h ParaViewCore/ClientServerCore/vtkImageVolumeRepresentation.h +170 -0
- ParaViewCore/ClientServerCore/vtkMPIMToNSocketConnection.cxx ParaViewCore/ClientServerCore/vtkMPIMToNSocketConnection.cxx +324 -0
- ParaViewCore/ClientServerCore/vtkMPIMToNSocketConnection.h ParaViewCore/ClientServerCore/vtkMPIMToNSocketConnection.h +116 -0
- ParaViewCore/ClientServerCore/vtkMPIMToNSocketConnectionPortInformation.cxx ...tServerCore/vtkMPIMToNSocketConnectionPortInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkMPIMToNSocketConnectionPortInformation.h ...entServerCore/vtkMPIMToNSocketConnectionPortInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkMPIMoveData.cxx ParaViewCore/ClientServerCore/vtkMPIMoveData.cxx +1286 -0
- ParaViewCore/ClientServerCore/vtkMPIMoveData.h ParaViewCore/ClientServerCore/vtkMPIMoveData.h +176 -0
- ParaViewCore/ClientServerCore/vtkNetworkAccessManager.cxx ParaViewCore/ClientServerCore/vtkNetworkAccessManager.cxx +31 -0
- ParaViewCore/ClientServerCore/vtkNetworkAccessManager.h ParaViewCore/ClientServerCore/vtkNetworkAccessManager.h +86 -0
- ParaViewCore/ClientServerCore/vtkNetworkImageSource.cxx ParaViewCore/ClientServerCore/vtkNetworkImageSource.cxx +187 -0
- ParaViewCore/ClientServerCore/vtkNetworkImageSource.h ParaViewCore/ClientServerCore/vtkNetworkImageSource.h +68 -0
- ParaViewCore/ClientServerCore/vtkOutlineRepresentation.cxx ParaViewCore/ClientServerCore/vtkOutlineRepresentation.cxx +47 -0
- ParaViewCore/ClientServerCore/vtkOutlineRepresentation.h ParaViewCore/ClientServerCore/vtkOutlineRepresentation.h +43 -0
- ParaViewCore/ClientServerCore/vtkPV2DRenderView.cxx ParaViewCore/ClientServerCore/vtkPV2DRenderView.cxx +64 -0
- ParaViewCore/ClientServerCore/vtkPV2DRenderView.h ParaViewCore/ClientServerCore/vtkPV2DRenderView.h +61 -0
- ParaViewCore/ClientServerCore/vtkPVAlgorithmPortsInformation.cxx ...wCore/ClientServerCore/vtkPVAlgorithmPortsInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVAlgorithmPortsInformation.h ...iewCore/ClientServerCore/vtkPVAlgorithmPortsInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVArrayInformation.cxx ParaViewCore/ClientServerCore/vtkPVArrayInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVArrayInformation.h ParaViewCore/ClientServerCore/vtkPVArrayInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVBarChartView.cxx ParaViewCore/ClientServerCore/vtkPVBarChartView.cxx +35 -0
- ParaViewCore/ClientServerCore/vtkPVBarChartView.h ParaViewCore/ClientServerCore/vtkPVBarChartView.h +43 -0
- ParaViewCore/ClientServerCore/vtkPVCacheKeeper.cxx ParaViewCore/ClientServerCore/vtkPVCacheKeeper.cxx +195 -0
- ParaViewCore/ClientServerCore/vtkPVCacheKeeper.h ParaViewCore/ClientServerCore/vtkPVCacheKeeper.h +99 -0
- ParaViewCore/ClientServerCore/vtkPVCacheKeeperPipeline.cxx ParaViewCore/ClientServerCore/vtkPVCacheKeeperPipeline.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVCacheKeeperPipeline.h ParaViewCore/ClientServerCore/vtkPVCacheKeeperPipeline.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVCacheSizeInformation.cxx ParaViewCore/ClientServerCore/vtkPVCacheSizeInformation.cxx +92 -0
- ParaViewCore/ClientServerCore/vtkPVCacheSizeInformation.h ParaViewCore/ClientServerCore/vtkPVCacheSizeInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVCameraAnimationCue.cxx ParaViewCore/ClientServerCore/vtkPVCameraAnimationCue.cxx +63 -0
- ParaViewCore/ClientServerCore/vtkPVCameraAnimationCue.h ParaViewCore/ClientServerCore/vtkPVCameraAnimationCue.h +64 -0
- ParaViewCore/ClientServerCore/vtkPVCameraCueManipulator.cxx ParaViewCore/ClientServerCore/vtkPVCameraCueManipulator.cxx +123 -0
- ParaViewCore/ClientServerCore/vtkPVCameraCueManipulator.h ParaViewCore/ClientServerCore/vtkPVCameraCueManipulator.h +80 -0
- ParaViewCore/ClientServerCore/vtkPVCameraKeyFrame.cxx ParaViewCore/ClientServerCore/vtkPVCameraKeyFrame.cxx +187 -0
- ParaViewCore/ClientServerCore/vtkPVCameraKeyFrame.h ParaViewCore/ClientServerCore/vtkPVCameraKeyFrame.h +86 -0
- ParaViewCore/ClientServerCore/vtkPVClassNameInformation.cxx ParaViewCore/ClientServerCore/vtkPVClassNameInformation.cxx +119 -0
- ParaViewCore/ClientServerCore/vtkPVClassNameInformation.h ParaViewCore/ClientServerCore/vtkPVClassNameInformation.h +79 -0
- ParaViewCore/ClientServerCore/vtkPVClientServerSynchronizedRenderers.cxx ...ientServerCore/vtkPVClientServerSynchronizedRenderers.cxx +187 -0
- ParaViewCore/ClientServerCore/vtkPVClientServerSynchronizedRenderers.h ...ClientServerCore/vtkPVClientServerSynchronizedRenderers.h +73 -0
- ParaViewCore/ClientServerCore/vtkPVCompositeDataInformation.cxx ...ewCore/ClientServerCore/vtkPVCompositeDataInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVCompositeDataInformation.h ...ViewCore/ClientServerCore/vtkPVCompositeDataInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVCompositeDataInformationIterator.cxx ...lientServerCore/vtkPVCompositeDataInformationIterator.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVCompositeDataInformationIterator.h .../ClientServerCore/vtkPVCompositeDataInformationIterator.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVCompositeRepresentation.cxx ...iewCore/ClientServerCore/vtkPVCompositeRepresentation.cxx +223 -0
- ParaViewCore/ClientServerCore/vtkPVCompositeRepresentation.h ParaViewCore/ClientServerCore/vtkPVCompositeRepresentation.h +113 -0
- ParaViewCore/ClientServerCore/vtkPVContextView.cxx ParaViewCore/ClientServerCore/vtkPVContextView.cxx +257 -0
- ParaViewCore/ClientServerCore/vtkPVContextView.h ParaViewCore/ClientServerCore/vtkPVContextView.h +84 -0
- ParaViewCore/ClientServerCore/vtkPVDataInformation.cxx ParaViewCore/ClientServerCore/vtkPVDataInformation.cxx +1334 -0
- ParaViewCore/ClientServerCore/vtkPVDataInformation.h ParaViewCore/ClientServerCore/vtkPVDataInformation.h +230 -0
- ParaViewCore/ClientServerCore/vtkPVDataRepresentation.cxx ParaViewCore/ClientServerCore/vtkPVDataRepresentation.cxx +194 -0
- ParaViewCore/ClientServerCore/vtkPVDataRepresentation.h ParaViewCore/ClientServerCore/vtkPVDataRepresentation.h +181 -0
- ParaViewCore/ClientServerCore/vtkPVDataRepresentationPipeline.cxx ...Core/ClientServerCore/vtkPVDataRepresentationPipeline.cxx +141 -0
- ParaViewCore/ClientServerCore/vtkPVDataRepresentationPipeline.h ...ewCore/ClientServerCore/vtkPVDataRepresentationPipeline.h +61 -0
- ParaViewCore/ClientServerCore/vtkPVDataSetAttributesInformation.cxx ...re/ClientServerCore/vtkPVDataSetAttributesInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVDataSetAttributesInformation.h ...Core/ClientServerCore/vtkPVDataSetAttributesInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVDataSizeInformation.cxx ParaViewCore/ClientServerCore/vtkPVDataSizeInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVDataSizeInformation.h ParaViewCore/ClientServerCore/vtkPVDataSizeInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVDisplayInformation.cxx ParaViewCore/ClientServerCore/vtkPVDisplayInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVDisplayInformation.h ParaViewCore/ClientServerCore/vtkPVDisplayInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVEnvironmentInformation.cxx ...ViewCore/ClientServerCore/vtkPVEnvironmentInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVEnvironmentInformation.h ParaViewCore/ClientServerCore/vtkPVEnvironmentInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVEnvironmentInformationHelper.cxx ...re/ClientServerCore/vtkPVEnvironmentInformationHelper.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVEnvironmentInformationHelper.h ...Core/ClientServerCore/vtkPVEnvironmentInformationHelper.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVFileInformation.cxx ParaViewCore/ClientServerCore/vtkPVFileInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVFileInformation.h ParaViewCore/ClientServerCore/vtkPVFileInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVFileInformationHelper.cxx ParaViewCore/ClientServerCore/vtkPVFileInformationHelper.cxx +72 -0
- ParaViewCore/ClientServerCore/vtkPVFileInformationHelper.h ParaViewCore/ClientServerCore/vtkPVFileInformationHelper.h +112 -0
- ParaViewCore/ClientServerCore/vtkPVGenericAttributeInformation.cxx ...ore/ClientServerCore/vtkPVGenericAttributeInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVGenericAttributeInformation.h ...wCore/ClientServerCore/vtkPVGenericAttributeInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVImageSliceMapper.cxx ParaViewCore/ClientServerCore/vtkPVImageSliceMapper.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVImageSliceMapper.h ParaViewCore/ClientServerCore/vtkPVImageSliceMapper.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVImplicitPlaneRepresentation.cxx ...ore/ClientServerCore/vtkPVImplicitPlaneRepresentation.cxx +47 -0
- ParaViewCore/ClientServerCore/vtkPVImplicitPlaneRepresentation.h ...wCore/ClientServerCore/vtkPVImplicitPlaneRepresentation.h +43 -0
- ParaViewCore/ClientServerCore/vtkPVInformation.cxx ParaViewCore/ClientServerCore/vtkPVInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVInformation.h ParaViewCore/ClientServerCore/vtkPVInformation.h +71 -0
- ParaViewCore/ClientServerCore/vtkPVLastSelectionInformation.cxx ...ewCore/ClientServerCore/vtkPVLastSelectionInformation.cxx +48 -0
- ParaViewCore/ClientServerCore/vtkPVLastSelectionInformation.h ...ViewCore/ClientServerCore/vtkPVLastSelectionInformation.h +45 -0
- ParaViewCore/ClientServerCore/vtkPVLineChartView.cxx ParaViewCore/ClientServerCore/vtkPVLineChartView.cxx +35 -0
- ParaViewCore/ClientServerCore/vtkPVLineChartView.h ParaViewCore/ClientServerCore/vtkPVLineChartView.h +43 -0
- ParaViewCore/ClientServerCore/vtkPVMPICommunicator.cxx ParaViewCore/ClientServerCore/vtkPVMPICommunicator.cxx +119 -0
- ParaViewCore/ClientServerCore/vtkPVMPICommunicator.h ParaViewCore/ClientServerCore/vtkPVMPICommunicator.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVOpenGLExtensionsInformation.cxx ...ore/ClientServerCore/vtkPVOpenGLExtensionsInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVOpenGLExtensionsInformation.h ...wCore/ClientServerCore/vtkPVOpenGLExtensionsInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVOptions.cxx ParaViewCore/ClientServerCore/vtkPVOptions.cxx +510 -0
- ParaViewCore/ClientServerCore/vtkPVOptions.h ParaViewCore/ClientServerCore/vtkPVOptions.h +250 -0
- ParaViewCore/ClientServerCore/vtkPVOptionsXMLParser.cxx ParaViewCore/ClientServerCore/vtkPVOptionsXMLParser.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVOptionsXMLParser.h ParaViewCore/ClientServerCore/vtkPVOptionsXMLParser.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVParallelCoordinatesChartView.cxx ...re/ClientServerCore/vtkPVParallelCoordinatesChartView.cxx +35 -0
- ParaViewCore/ClientServerCore/vtkPVParallelCoordinatesChartView.h ...Core/ClientServerCore/vtkPVParallelCoordinatesChartView.h +43 -0
- ParaViewCore/ClientServerCore/vtkPVParallelCoordinatesRepresentation.cxx ...ientServerCore/vtkPVParallelCoordinatesRepresentation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVParallelCoordinatesRepresentation.h ...ClientServerCore/vtkPVParallelCoordinatesRepresentation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVPaths.h.in ParaViewCore/ClientServerCore/vtkPVPaths.h.in +0 -0
- ParaViewCore/ClientServerCore/vtkPVPlugin.cxx ParaViewCore/ClientServerCore/vtkPVPlugin.cxx +48 -0
- ParaViewCore/ClientServerCore/vtkPVPlugin.h ParaViewCore/ClientServerCore/vtkPVPlugin.h +132 -0
- ParaViewCore/ClientServerCore/vtkPVPluginLoader.cxx ParaViewCore/ClientServerCore/vtkPVPluginLoader.cxx +379 -0
- ParaViewCore/ClientServerCore/vtkPVPluginLoader.h ParaViewCore/ClientServerCore/vtkPVPluginLoader.h +118 -0
- ParaViewCore/ClientServerCore/vtkPVPluginTracker.cxx ParaViewCore/ClientServerCore/vtkPVPluginTracker.cxx +483 -0
- ParaViewCore/ClientServerCore/vtkPVPluginTracker.h ParaViewCore/ClientServerCore/vtkPVPluginTracker.h +113 -0
- ParaViewCore/ClientServerCore/vtkPVPluginsInformation.cxx ParaViewCore/ClientServerCore/vtkPVPluginsInformation.cxx +412 -0
- ParaViewCore/ClientServerCore/vtkPVPluginsInformation.h ParaViewCore/ClientServerCore/vtkPVPluginsInformation.h +103 -0
- ParaViewCore/ClientServerCore/vtkPVProgressHandler.cxx ParaViewCore/ClientServerCore/vtkPVProgressHandler.cxx +755 -0
- ParaViewCore/ClientServerCore/vtkPVProgressHandler.h ParaViewCore/ClientServerCore/vtkPVProgressHandler.h +152 -0
- ParaViewCore/ClientServerCore/vtkPVPythonModule.cxx ParaViewCore/ClientServerCore/vtkPVPythonModule.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVPythonModule.h ParaViewCore/ClientServerCore/vtkPVPythonModule.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVPythonPluginInterface.cxx ParaViewCore/ClientServerCore/vtkPVPythonPluginInterface.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVPythonPluginInterface.h ParaViewCore/ClientServerCore/vtkPVPythonPluginInterface.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVRenderView.cxx ParaViewCore/ClientServerCore/vtkPVRenderView.cxx +1332 -0
- ParaViewCore/ClientServerCore/vtkPVRenderView.h ParaViewCore/ClientServerCore/vtkPVRenderView.h +546 -0
- ParaViewCore/ClientServerCore/vtkPVRepresentedDataInformation.cxx ...Core/ClientServerCore/vtkPVRepresentedDataInformation.cxx +50 -0
- ParaViewCore/ClientServerCore/vtkPVRepresentedDataInformation.h ...ewCore/ClientServerCore/vtkPVRepresentedDataInformation.h +47 -0
- ParaViewCore/ClientServerCore/vtkPVSILInformation.cxx ParaViewCore/ClientServerCore/vtkPVSILInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVSILInformation.h ParaViewCore/ClientServerCore/vtkPVSILInformation.h +63 -0
- ParaViewCore/ClientServerCore/vtkPVSelectionInformation.cxx ParaViewCore/ClientServerCore/vtkPVSelectionInformation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVSelectionInformation.h ParaViewCore/ClientServerCore/vtkPVSelectionInformation.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVServerInformation.cxx ParaViewCore/ClientServerCore/vtkPVServerInformation.cxx +480 -0
- ParaViewCore/ClientServerCore/vtkPVServerInformation.h ParaViewCore/ClientServerCore/vtkPVServerInformation.h +148 -0
- ParaViewCore/ClientServerCore/vtkPVServerManagerPluginInterface.cxx ...re/ClientServerCore/vtkPVServerManagerPluginInterface.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVServerManagerPluginInterface.h ...Core/ClientServerCore/vtkPVServerManagerPluginInterface.h +46 -0
- ParaViewCore/ClientServerCore/vtkPVServerOptions.cxx ParaViewCore/ClientServerCore/vtkPVServerOptions.cxx +179 -0
- ParaViewCore/ClientServerCore/vtkPVServerOptions.h ParaViewCore/ClientServerCore/vtkPVServerOptions.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVServerOptionsInternals.h ParaViewCore/ClientServerCore/vtkPVServerOptionsInternals.h +0 -0
- ParaViewCore/ClientServerCore/vtkPVSession.cxx ParaViewCore/ClientServerCore/vtkPVSession.cxx +116 -0
- ParaViewCore/ClientServerCore/vtkPVSession.h ParaViewCore/ClientServerCore/vtkPVSession.h +115 -0
- ParaViewCore/ClientServerCore/vtkPVSynchronizedRenderWindows.cxx ...wCore/ClientServerCore/vtkPVSynchronizedRenderWindows.cxx +1701 -0
- ParaViewCore/ClientServerCore/vtkPVSynchronizedRenderWindows.h ...iewCore/ClientServerCore/vtkPVSynchronizedRenderWindows.h +263 -0
- ParaViewCore/ClientServerCore/vtkPVSynchronizedRenderer.cxx ParaViewCore/ClientServerCore/vtkPVSynchronizedRenderer.cxx +448 -0
- ParaViewCore/ClientServerCore/vtkPVSynchronizedRenderer.h ParaViewCore/ClientServerCore/vtkPVSynchronizedRenderer.h +142 -0
- ParaViewCore/ClientServerCore/vtkPVTemporalDataInformation.cxx ...iewCore/ClientServerCore/vtkPVTemporalDataInformation.cxx +434 -0
- ParaViewCore/ClientServerCore/vtkPVTemporalDataInformation.h ParaViewCore/ClientServerCore/vtkPVTemporalDataInformation.h +120 -0
- ParaViewCore/ClientServerCore/vtkPVTimerInformation.cxx ParaViewCore/ClientServerCore/vtkPVTimerInformation.cxx +309 -0
- ParaViewCore/ClientServerCore/vtkPVTimerInformation.h ParaViewCore/ClientServerCore/vtkPVTimerInformation.h +80 -0
- ParaViewCore/ClientServerCore/vtkPVView.cxx ParaViewCore/ClientServerCore/vtkPVView.cxx +235 -0
- ParaViewCore/ClientServerCore/vtkPVView.h ParaViewCore/ClientServerCore/vtkPVView.h +202 -0
- ParaViewCore/ClientServerCore/vtkPVXYChartView.cxx ParaViewCore/ClientServerCore/vtkPVXYChartView.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPVXYChartView.h ParaViewCore/ClientServerCore/vtkPVXYChartView.h +0 -0
- ParaViewCore/ClientServerCore/vtkProcessModule.cxx ParaViewCore/ClientServerCore/vtkProcessModule.cxx +425 -0
- ParaViewCore/ClientServerCore/vtkProcessModule.h ParaViewCore/ClientServerCore/vtkProcessModule.h +232 -0
- ParaViewCore/ClientServerCore/vtkProcessModuleAutoMPI.cxx ParaViewCore/ClientServerCore/vtkProcessModuleAutoMPI.cxx +646 -0
- ParaViewCore/ClientServerCore/vtkProcessModuleAutoMPI.h ParaViewCore/ClientServerCore/vtkProcessModuleAutoMPI.h +56 -0
- ParaViewCore/ClientServerCore/vtkProcessModuleInternals.h ParaViewCore/ClientServerCore/vtkProcessModuleInternals.h +35 -0
- ParaViewCore/ClientServerCore/vtkPythonCalculator.cxx ParaViewCore/ClientServerCore/vtkPythonCalculator.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPythonCalculator.h ParaViewCore/ClientServerCore/vtkPythonCalculator.h +0 -0
- ParaViewCore/ClientServerCore/vtkPythonProgrammableFilter.cxx ...ViewCore/ClientServerCore/vtkPythonProgrammableFilter.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkPythonProgrammableFilter.h ParaViewCore/ClientServerCore/vtkPythonProgrammableFilter.h +150 -0
- ParaViewCore/ClientServerCore/vtkReservedRemoteObjectIds.h ParaViewCore/ClientServerCore/vtkReservedRemoteObjectIds.h +34 -0
- ParaViewCore/ClientServerCore/vtkSelectionDeliveryFilter.cxx ParaViewCore/ClientServerCore/vtkSelectionDeliveryFilter.cxx +90 -0
- ParaViewCore/ClientServerCore/vtkSelectionDeliveryFilter.h ParaViewCore/ClientServerCore/vtkSelectionDeliveryFilter.h +55 -0
- ParaViewCore/ClientServerCore/vtkSelectionRepresentation.cxx ParaViewCore/ClientServerCore/vtkSelectionRepresentation.cxx +271 -0
- ParaViewCore/ClientServerCore/vtkSelectionRepresentation.h ParaViewCore/ClientServerCore/vtkSelectionRepresentation.h +125 -0
- ParaViewCore/ClientServerCore/vtkSession.cxx ParaViewCore/ClientServerCore/vtkSession.cxx +46 -0
- ParaViewCore/ClientServerCore/vtkSession.h ParaViewCore/ClientServerCore/vtkSession.h +62 -0
- ParaViewCore/ClientServerCore/vtkSessionIterator.cxx ParaViewCore/ClientServerCore/vtkSessionIterator.cxx +115 -0
- ParaViewCore/ClientServerCore/vtkSessionIterator.h ParaViewCore/ClientServerCore/vtkSessionIterator.h +70 -0
- ParaViewCore/ClientServerCore/vtkSpreadSheetRepresentation.cxx ...iewCore/ClientServerCore/vtkSpreadSheetRepresentation.cxx +148 -0
- ParaViewCore/ClientServerCore/vtkSpreadSheetRepresentation.h ParaViewCore/ClientServerCore/vtkSpreadSheetRepresentation.h +77 -0
- ParaViewCore/ClientServerCore/vtkSpreadSheetView.cxx ParaViewCore/ClientServerCore/vtkSpreadSheetView.cxx +531 -0
- ParaViewCore/ClientServerCore/vtkSpreadSheetView.h ParaViewCore/ClientServerCore/vtkSpreadSheetView.h +171 -0
- ParaViewCore/ClientServerCore/vtkTCPNetworkAccessManager.cxx ParaViewCore/ClientServerCore/vtkTCPNetworkAccessManager.cxx +389 -0
- ParaViewCore/ClientServerCore/vtkTCPNetworkAccessManager.h ParaViewCore/ClientServerCore/vtkTCPNetworkAccessManager.h +109 -0
- ParaViewCore/ClientServerCore/vtkTextSourceRepresentation.cxx ...ViewCore/ClientServerCore/vtkTextSourceRepresentation.cxx +214 -0
- ParaViewCore/ClientServerCore/vtkTextSourceRepresentation.h ParaViewCore/ClientServerCore/vtkTextSourceRepresentation.h +105 -0
- ParaViewCore/ClientServerCore/vtkUnstructuredDataDeliveryFilter.cxx ...re/ClientServerCore/vtkUnstructuredDataDeliveryFilter.cxx +175 -0
- ParaViewCore/ClientServerCore/vtkUnstructuredDataDeliveryFilter.h ...Core/ClientServerCore/vtkUnstructuredDataDeliveryFilter.h +97 -0
- ParaViewCore/ClientServerCore/vtkUnstructuredGridVolumeRepresentation.cxx ...entServerCore/vtkUnstructuredGridVolumeRepresentation.cxx +404 -0
- ParaViewCore/ClientServerCore/vtkUnstructuredGridVolumeRepresentation.h ...lientServerCore/vtkUnstructuredGridVolumeRepresentation.h +176 -0
- ParaViewCore/ClientServerCore/vtkXMLPVAnimationWriter.cxx ParaViewCore/ClientServerCore/vtkXMLPVAnimationWriter.cxx +409 -0
- ParaViewCore/ClientServerCore/vtkXMLPVAnimationWriter.h ParaViewCore/ClientServerCore/vtkXMLPVAnimationWriter.h +0 -0
- ParaViewCore/ClientServerCore/vtkXYChartRepresentation.cxx ParaViewCore/ClientServerCore/vtkXYChartRepresentation.cxx +0 -0
- ParaViewCore/ClientServerCore/vtkXYChartRepresentation.h ParaViewCore/ClientServerCore/vtkXYChartRepresentation.h +0 -0
- ParaViewCore/Common/CMakeLists.txt ParaViewCore/Common/CMakeLists.txt +126 -0
- ParaViewCore/Common/Testing/CMakeLists.txt ParaViewCore/Common/Testing/CMakeLists.txt +4 -0
- ParaViewCore/Common/Testing/ParaViewCoreCommonPrintSelf.cxx ParaViewCore/Common/Testing/ParaViewCoreCommonPrintSelf.cxx +24 -0
- ParaViewCore/Common/vtkClientServerInterpreterInitializer.cxx ...ViewCore/Common/vtkClientServerInterpreterInitializer.cxx +137 -0
- ParaViewCore/Common/vtkClientServerInterpreterInitializer.h ParaViewCore/Common/vtkClientServerInterpreterInitializer.h +84 -0
- ParaViewCore/Common/vtkCommandOptions.cxx ParaViewCore/Common/vtkCommandOptions.cxx +376 -0
- ParaViewCore/Common/vtkCommandOptions.h ParaViewCore/Common/vtkCommandOptions.h +182 -0
- ParaViewCore/Common/vtkCommandOptionsXMLParser.cxx ParaViewCore/Common/vtkCommandOptionsXMLParser.cxx +343 -0
- ParaViewCore/Common/vtkCommandOptionsXMLParser.h ParaViewCore/Common/vtkCommandOptionsXMLParser.h +0 -0
- ParaViewCore/Common/vtkPVTestUtilities.cxx ParaViewCore/Common/vtkPVTestUtilities.cxx +155 -0
- ParaViewCore/Common/vtkPVTestUtilities.h ParaViewCore/Common/vtkPVTestUtilities.h +0 -0
- ParaViewCore/Common/vtkPVXMLElement.cxx ParaViewCore/Common/vtkPVXMLElement.cxx +751 -0
- ParaViewCore/Common/vtkPVXMLElement.h ParaViewCore/Common/vtkPVXMLElement.h +243 -0
- ParaViewCore/Common/vtkPVXMLParser.cxx ParaViewCore/Common/vtkPVXMLParser.cxx +0 -0
- ParaViewCore/Common/vtkPVXMLParser.h ParaViewCore/Common/vtkPVXMLParser.h +0 -0
- ParaViewCore/Common/vtkStringList.cxx ParaViewCore/Common/vtkStringList.cxx +0 -0
- ParaViewCore/Common/vtkStringList.h ParaViewCore/Common/vtkStringList.h +0 -0
- ParaViewCore/README.txt ParaViewCore/README.txt +81 -0
- ParaViewCore/ServerImplementation/CMakeLists.txt ParaViewCore/ServerImplementation/CMakeLists.txt +260 -0
- ParaViewCore/ServerImplementation/Resources/3d_widgets.xml ParaViewCore/ServerImplementation/Resources/3d_widgets.xml +1589 -0
- ParaViewCore/ServerImplementation/Resources/filters.xml ParaViewCore/ServerImplementation/Resources/filters.xml +0 -0
- ParaViewCore/ServerImplementation/Resources/internal_writers.xml ...wCore/ServerImplementation/Resources/internal_writers.xml +271 -0
- ParaViewCore/ServerImplementation/Resources/pythonfilter.xml ParaViewCore/ServerImplementation/Resources/pythonfilter.xml +0 -0
- ParaViewCore/ServerImplementation/Resources/readers.xml ParaViewCore/ServerImplementation/Resources/readers.xml +6959 -0
- ParaViewCore/ServerImplementation/Resources/rendering.xml ParaViewCore/ServerImplementation/Resources/rendering.xml +986 -0
- ParaViewCore/ServerImplementation/Resources/sources.xml ParaViewCore/ServerImplementation/Resources/sources.xml +1993 -0
- ParaViewCore/ServerImplementation/Resources/utilities.xml ParaViewCore/ServerImplementation/Resources/utilities.xml +2562 -0
- ParaViewCore/ServerImplementation/Resources/views_and_representations.xml ...verImplementation/Resources/views_and_representations.xml +4306 -0
- ParaViewCore/ServerImplementation/Resources/vtkPVMessage.proto ...iewCore/ServerImplementation/Resources/vtkPVMessage.proto +134 -0
- ParaViewCore/ServerImplementation/Resources/writers.xml ParaViewCore/ServerImplementation/Resources/writers.xml +1249 -0
- ParaViewCore/ServerImplementation/Testing/CMakeLists.txt ParaViewCore/ServerImplementation/Testing/CMakeLists.txt +4 -0
- ParaViewCore/ServerImplementation/Testing/ParaViewCoreServerImplementationPrintSelf.cxx ...ion/Testing/ParaViewCoreServerImplementationPrintSelf.cxx +82 -0
- ParaViewCore/ServerImplementation/vtkPVProxyDefinitionIterator.cxx ...ore/ServerImplementation/vtkPVProxyDefinitionIterator.cxx +32 -0
- ParaViewCore/ServerImplementation/vtkPVProxyDefinitionIterator.h ...wCore/ServerImplementation/vtkPVProxyDefinitionIterator.h +94 -0
- ParaViewCore/ServerImplementation/vtkPVProxyDefinitionManager.cxx ...Core/ServerImplementation/vtkPVProxyDefinitionManager.cxx +1308 -0
- ParaViewCore/ServerImplementation/vtkPVProxyDefinitionManager.h ...ewCore/ServerImplementation/vtkPVProxyDefinitionManager.h +277 -0
- ParaViewCore/ServerImplementation/vtkPVSessionBase.cxx ParaViewCore/ServerImplementation/vtkPVSessionBase.cxx +260 -0
- ParaViewCore/ServerImplementation/vtkPVSessionBase.h ParaViewCore/ServerImplementation/vtkPVSessionBase.h +167 -0
- ParaViewCore/ServerImplementation/vtkPVSessionCore.cxx ParaViewCore/ServerImplementation/vtkPVSessionCore.cxx +865 -0
- ParaViewCore/ServerImplementation/vtkPVSessionCore.h ParaViewCore/ServerImplementation/vtkPVSessionCore.h +199 -0
- ParaViewCore/ServerImplementation/vtkPVSessionCoreInterpreterHelper.cxx ...erverImplementation/vtkPVSessionCoreInterpreterHelper.cxx +91 -0
- ParaViewCore/ServerImplementation/vtkPVSessionCoreInterpreterHelper.h .../ServerImplementation/vtkPVSessionCoreInterpreterHelper.h +65 -0
- ParaViewCore/ServerImplementation/vtkPVSessionServer.cxx ParaViewCore/ServerImplementation/vtkPVSessionServer.cxx +443 -0
- ParaViewCore/ServerImplementation/vtkPVSessionServer.h ParaViewCore/ServerImplementation/vtkPVSessionServer.h +115 -0
- ParaViewCore/ServerImplementation/vtkParaViewIncludeModulesToSMApplication.h.in ...lementation/vtkParaViewIncludeModulesToSMApplication.h.in +12 -0
- ParaViewCore/ServerImplementation/vtkSIArraySelectionProperty.cxx ...Core/ServerImplementation/vtkSIArraySelectionProperty.cxx +148 -0
- ParaViewCore/ServerImplementation/vtkSIArraySelectionProperty.h ...ewCore/ServerImplementation/vtkSIArraySelectionProperty.h +48 -0
- ParaViewCore/ServerImplementation/vtkSIChartRepresentationProxy.cxx ...re/ServerImplementation/vtkSIChartRepresentationProxy.cxx +50 -0
- ParaViewCore/ServerImplementation/vtkSIChartRepresentationProxy.h ...Core/ServerImplementation/vtkSIChartRepresentationProxy.h +54 -0
- ParaViewCore/ServerImplementation/vtkSICompoundSourceProxy.cxx ...iewCore/ServerImplementation/vtkSICompoundSourceProxy.cxx +199 -0
- ParaViewCore/ServerImplementation/vtkSICompoundSourceProxy.h ParaViewCore/ServerImplementation/vtkSICompoundSourceProxy.h +62 -0
- ParaViewCore/ServerImplementation/vtkSIContextArraysProperty.cxx ...wCore/ServerImplementation/vtkSIContextArraysProperty.cxx +65 -0
- ParaViewCore/ServerImplementation/vtkSIContextArraysProperty.h ...iewCore/ServerImplementation/vtkSIContextArraysProperty.h +48 -0
- ParaViewCore/ServerImplementation/vtkSIDataArrayProperty.cxx ParaViewCore/ServerImplementation/vtkSIDataArrayProperty.cxx +141 -0
- ParaViewCore/ServerImplementation/vtkSIDataArrayProperty.h ParaViewCore/ServerImplementation/vtkSIDataArrayProperty.h +48 -0
- ParaViewCore/ServerImplementation/vtkSIDoubleVectorProperty.cxx ...ewCore/ServerImplementation/vtkSIDoubleVectorProperty.cxx +34 -0
- ParaViewCore/ServerImplementation/vtkSIDoubleVectorProperty.h ...ViewCore/ServerImplementation/vtkSIDoubleVectorProperty.h +46 -0
- ParaViewCore/ServerImplementation/vtkSIFileSeriesReaderProxy.cxx ...wCore/ServerImplementation/vtkSIFileSeriesReaderProxy.cxx +96 -0
- ParaViewCore/ServerImplementation/vtkSIFileSeriesReaderProxy.h ...iewCore/ServerImplementation/vtkSIFileSeriesReaderProxy.h +65 -0
- ParaViewCore/ServerImplementation/vtkSIIdTypeVectorProperty.cxx ...ewCore/ServerImplementation/vtkSIIdTypeVectorProperty.cxx +35 -0
- ParaViewCore/ServerImplementation/vtkSIIdTypeVectorProperty.h ...ViewCore/ServerImplementation/vtkSIIdTypeVectorProperty.h +45 -0
- ParaViewCore/ServerImplementation/vtkSIImageTextureProxy.cxx ParaViewCore/ServerImplementation/vtkSIImageTextureProxy.cxx +73 -0
- ParaViewCore/ServerImplementation/vtkSIImageTextureProxy.h ParaViewCore/ServerImplementation/vtkSIImageTextureProxy.h +50 -0
- ParaViewCore/ServerImplementation/vtkSIInputProperty.cxx ParaViewCore/ServerImplementation/vtkSIInputProperty.cxx +127 -0
- ParaViewCore/ServerImplementation/vtkSIInputProperty.h ParaViewCore/ServerImplementation/vtkSIInputProperty.h +59 -0
- ParaViewCore/ServerImplementation/vtkSIIntVectorProperty.cxx ParaViewCore/ServerImplementation/vtkSIIntVectorProperty.cxx +34 -0
- ParaViewCore/ServerImplementation/vtkSIIntVectorProperty.h ParaViewCore/ServerImplementation/vtkSIIntVectorProperty.h +46 -0
- ParaViewCore/ServerImplementation/vtkSIObject.cxx ParaViewCore/ServerImplementation/vtkSIObject.cxx +88 -0
- ParaViewCore/ServerImplementation/vtkSIObject.h ParaViewCore/ServerImplementation/vtkSIObject.h +92 -0
- ParaViewCore/ServerImplementation/vtkSIPVRepresentationProxy.cxx ...wCore/ServerImplementation/vtkSIPVRepresentationProxy.cxx +155 -0
- ParaViewCore/ServerImplementation/vtkSIPVRepresentationProxy.h ...iewCore/ServerImplementation/vtkSIPVRepresentationProxy.h +52 -0
- ParaViewCore/ServerImplementation/vtkSIProperty.cxx ParaViewCore/ServerImplementation/vtkSIProperty.cxx +159 -0
- ParaViewCore/ServerImplementation/vtkSIProperty.h ParaViewCore/ServerImplementation/vtkSIProperty.h +123 -0
- ParaViewCore/ServerImplementation/vtkSIProxy.cxx ParaViewCore/ServerImplementation/vtkSIProxy.cxx +512 -0
- ParaViewCore/ServerImplementation/vtkSIProxy.h ParaViewCore/ServerImplementation/vtkSIProxy.h +148 -0
- ParaViewCore/ServerImplementation/vtkSIProxyProperty.cxx ParaViewCore/ServerImplementation/vtkSIProxyProperty.cxx +296 -0
- ParaViewCore/ServerImplementation/vtkSIProxyProperty.h ParaViewCore/ServerImplementation/vtkSIProxyProperty.h +116 -0
- ParaViewCore/ServerImplementation/vtkSISILProperty.cxx ParaViewCore/ServerImplementation/vtkSISILProperty.cxx +218 -0
- ParaViewCore/ServerImplementation/vtkSISILProperty.h ParaViewCore/ServerImplementation/vtkSISILProperty.h +67 -0
- ParaViewCore/ServerImplementation/vtkSIScalarBarActorProxy.cxx ...iewCore/ServerImplementation/vtkSIScalarBarActorProxy.cxx +65 -0
- ParaViewCore/ServerImplementation/vtkSIScalarBarActorProxy.h ParaViewCore/ServerImplementation/vtkSIScalarBarActorProxy.h +47 -0
- ParaViewCore/ServerImplementation/vtkSISelectionRepresentationProxy.cxx ...erverImplementation/vtkSISelectionRepresentationProxy.cxx +62 -0
- ParaViewCore/ServerImplementation/vtkSISelectionRepresentationProxy.h .../ServerImplementation/vtkSISelectionRepresentationProxy.h +48 -0
- ParaViewCore/ServerImplementation/vtkSISourceProxy.cxx ParaViewCore/ServerImplementation/vtkSISourceProxy.cxx +428 -0
- ParaViewCore/ServerImplementation/vtkSISourceProxy.h ParaViewCore/ServerImplementation/vtkSISourceProxy.h +116 -0
- ParaViewCore/ServerImplementation/vtkSIStringVectorProperty.cxx ...ewCore/ServerImplementation/vtkSIStringVectorProperty.cxx +273 -0
- ParaViewCore/ServerImplementation/vtkSIStringVectorProperty.h ...ViewCore/ServerImplementation/vtkSIStringVectorProperty.h +62 -0
- ParaViewCore/ServerImplementation/vtkSITextSourceRepresentationProxy.cxx ...rverImplementation/vtkSITextSourceRepresentationProxy.cxx +59 -0
- ParaViewCore/ServerImplementation/vtkSITextSourceRepresentationProxy.h ...ServerImplementation/vtkSITextSourceRepresentationProxy.h +50 -0
- ParaViewCore/ServerImplementation/vtkSITimeRangeProperty.cxx ParaViewCore/ServerImplementation/vtkSITimeRangeProperty.cxx +112 -0
- ParaViewCore/ServerImplementation/vtkSITimeRangeProperty.h ParaViewCore/ServerImplementation/vtkSITimeRangeProperty.h +48 -0
- ParaViewCore/ServerImplementation/vtkSITimeStepsProperty.cxx ParaViewCore/ServerImplementation/vtkSITimeStepsProperty.cxx +87 -0
- ParaViewCore/ServerImplementation/vtkSITimeStepsProperty.h ParaViewCore/ServerImplementation/vtkSITimeStepsProperty.h +48 -0
- ParaViewCore/ServerImplementation/vtkSIUniformGridVolumeRepresentationProxy.cxx ...lementation/vtkSIUniformGridVolumeRepresentationProxy.cxx +67 -0
- ParaViewCore/ServerImplementation/vtkSIUniformGridVolumeRepresentationProxy.h ...mplementation/vtkSIUniformGridVolumeRepresentationProxy.h +49 -0
- ParaViewCore/ServerImplementation/vtkSIUnstructuredGridVolumeRepresentationProxy.cxx ...tation/vtkSIUnstructuredGridVolumeRepresentationProxy.cxx +119 -0
- ParaViewCore/ServerImplementation/vtkSIUnstructuredGridVolumeRepresentationProxy.h ...entation/vtkSIUnstructuredGridVolumeRepresentationProxy.h +49 -0
- ParaViewCore/ServerImplementation/vtkSIVectorProperty.cxx ParaViewCore/ServerImplementation/vtkSIVectorProperty.cxx +77 -0
- ParaViewCore/ServerImplementation/vtkSIVectorProperty.h ParaViewCore/ServerImplementation/vtkSIVectorProperty.h +92 -0
- ParaViewCore/ServerImplementation/vtkSIVectorPropertyTemplate.h ...ewCore/ServerImplementation/vtkSIVectorPropertyTemplate.h +73 -0
- ParaViewCore/ServerImplementation/vtkSIVectorPropertyTemplate.txx ...Core/ServerImplementation/vtkSIVectorPropertyTemplate.txx +484 -0
- ParaViewCore/ServerImplementation/vtkSIWriterProxy.cxx ParaViewCore/ServerImplementation/vtkSIWriterProxy.cxx +195 -0
- ParaViewCore/ServerImplementation/vtkSIWriterProxy.h ParaViewCore/ServerImplementation/vtkSIWriterProxy.h +62 -0
- ParaViewCore/ServerImplementation/vtkSIXMLAnimationWriterRepresentationProperty.cxx ...ntation/vtkSIXMLAnimationWriterRepresentationProperty.cxx +81 -0
- ParaViewCore/ServerImplementation/vtkSIXMLAnimationWriterRepresentationProperty.h ...mentation/vtkSIXMLAnimationWriterRepresentationProperty.h +49 -0
- ParaViewCore/ServerImplementation/vtkSMMessage.cxx ParaViewCore/ServerImplementation/vtkSMMessage.cxx +19 -0
- ParaViewCore/ServerImplementation/vtkSMMessage.h ParaViewCore/ServerImplementation/vtkSMMessage.h +77 -0
- ParaViewCore/ServerImplementation/vtkSMMessageMinimal.h ParaViewCore/ServerImplementation/vtkSMMessageMinimal.h +45 -0
- ParaViewCore/ServerManager/CMakeLists.txt ParaViewCore/ServerManager/CMakeLists.txt +360 -0
- ParaViewCore/ServerManager/Testing/CMakeLists.txt ParaViewCore/ServerManager/Testing/CMakeLists.txt +0 -0
- ParaViewCore/ServerManager/Testing/Cxx/CMakeLists.txt ParaViewCore/ServerManager/Testing/Cxx/CMakeLists.txt +68 -0
- ParaViewCore/ServerManager/Testing/Cxx/ParaViewCoreServerManagerPrintSelf.cxx ...anager/Testing/Cxx/ParaViewCoreServerManagerPrintSelf.cxx +275 -0
- ParaViewCore/ServerManager/Testing/Cxx/ServerManagerStateLoader.cxx ...re/ServerManager/Testing/Cxx/ServerManagerStateLoader.cxx +43 -0
- ParaViewCore/ServerManager/Testing/Cxx/TestComparativeAnimationCueProxy.cxx ...rManager/Testing/Cxx/TestComparativeAnimationCueProxy.cxx +87 -0
- ParaViewCore/ServerManager/Testing/Cxx/TestCustomSubProxyDefinition.xml ...erverManager/Testing/Cxx/TestCustomSubProxyDefinition.xml +51 -0
- ParaViewCore/ServerManager/Testing/Cxx/TestSubProxy.cxx ParaViewCore/ServerManager/Testing/Cxx/TestSubProxy.cxx +106 -0
- ParaViewCore/ServerManager/Testing/Cxx/TestXMLSaveLoadState.cxx ...ewCore/ServerManager/Testing/Cxx/TestXMLSaveLoadState.cxx +109 -0
- ParaViewCore/ServerManager/Testing/Cxx/vtkTestingOptions.cxx ParaViewCore/ServerManager/Testing/Cxx/vtkTestingOptions.cxx +93 -0
- ParaViewCore/ServerManager/Testing/Cxx/vtkTestingOptions.h ParaViewCore/ServerManager/Testing/Cxx/vtkTestingOptions.h +0 -0
- ParaViewCore/ServerManager/Testing/Cxx/vtkTestingProcessModuleGUIHelper.cxx ...rManager/Testing/Cxx/vtkTestingProcessModuleGUIHelper.cxx +184 -0
- ParaViewCore/ServerManager/Testing/Cxx/vtkTestingProcessModuleGUIHelper.h ...verManager/Testing/Cxx/vtkTestingProcessModuleGUIHelper.h +41 -0
- ParaViewCore/ServerManager/Testing/Python/Animation.py ParaViewCore/ServerManager/Testing/Python/Animation.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/CMakeLists.txt ParaViewCore/ServerManager/Testing/Python/CMakeLists.txt +0 -0
- ParaViewCore/ServerManager/Testing/Python/CSVWriterReader.py ParaViewCore/ServerManager/Testing/Python/CSVWriterReader.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/CellIntegrator.py ParaViewCore/ServerManager/Testing/Python/CellIntegrator.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/IntegrateAttributes.py ...wCore/ServerManager/Testing/Python/IntegrateAttributes.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/ParallelSerialWriter.py ...Core/ServerManager/Testing/Python/ParallelSerialWriter.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/ProgrammableFilter.py ...ewCore/ServerManager/Testing/Python/ProgrammableFilter.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/ProxyManager.py ParaViewCore/ServerManager/Testing/Python/ProxyManager.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/ProxyPropertyLinks.py ...ewCore/ServerManager/Testing/Python/ProxyPropertyLinks.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/PythonFilters.py ParaViewCore/ServerManager/Testing/Python/PythonFilters.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/PythonPVSimpleCone.py ...ewCore/ServerManager/Testing/Python/PythonPVSimpleCone.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/PythonPVSimpleExII.py ...ewCore/ServerManager/Testing/Python/PythonPVSimpleExII.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/PythonPVSimpleSphere.py ...Core/ServerManager/Testing/Python/PythonPVSimpleSphere.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/PythonSMTraceTest1.py ...ewCore/ServerManager/Testing/Python/PythonSMTraceTest1.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/PythonSMTraceTest2.py ...ewCore/ServerManager/Testing/Python/PythonSMTraceTest2.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/SMAnimation.py ParaViewCore/ServerManager/Testing/Python/SMAnimation.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/SMCompoundProxyUndoRedo.py ...e/ServerManager/Testing/Python/SMCompoundProxyUndoRedo.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/SMPropertyAdaptor.py ...iewCore/ServerManager/Testing/Python/SMPropertyAdaptor.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/SMPythonTesting.py ParaViewCore/ServerManager/Testing/Python/SMPythonTesting.py +156 -0
- ParaViewCore/ServerManager/Testing/Python/SMUndoRedo.py ParaViewCore/ServerManager/Testing/Python/SMUndoRedo.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/Simple.py ParaViewCore/ServerManager/Testing/Python/Simple.py +0 -0
- ParaViewCore/ServerManager/Testing/Python/TestNumPy.cmake ParaViewCore/ServerManager/Testing/Python/TestNumPy.cmake +0 -0
- ParaViewCore/ServerManager/Testing/Python/VRMLSource.py ParaViewCore/ServerManager/Testing/Python/VRMLSource.py +0 -0
- ParaViewCore/ServerManager/Testing/SMStates/Arrow.pvsm ParaViewCore/ServerManager/Testing/SMStates/Arrow.pvsm +0 -0
- ParaViewCore/ServerManager/Testing/SMStates/Axes.pvsm ParaViewCore/ServerManager/Testing/SMStates/Axes.pvsm +0 -0
- ParaViewCore/ServerManager/Testing/SMStates/BlowTest.pvsm ParaViewCore/ServerManager/Testing/SMStates/BlowTest.pvsm +0 -0
- ParaViewCore/ServerManager/Testing/SMStates/CalcInput.pvsm ParaViewCore/ServerManager/Testing/SMStates/CalcInput.pvsm +0 -0
- ParaViewCore/ServerManager/Testing/SMStates/CompoundProxyUndoRedo.pvsm ...ServerManager/Testing/SMStates/CompoundProxyUndoRedo.pvsm +0 -0
- ParaViewCore/ServerManager/Testing/SMStates/ExtractGrid.pvsm ParaViewCore/ServerManager/Testing/SMStates/ExtractGrid.pvsm +0 -0
- ParaViewCore/ServerManager/Testing/SMStates/ProxyPropertyLinks.pvsm ...re/ServerManager/Testing/SMStates/ProxyPropertyLinks.pvsm +0 -0
- ParaViewCore/ServerManager/Testing/SMStates/SPCTH2.pvsm ParaViewCore/ServerManager/Testing/SMStates/SPCTH2.pvsm +0 -0
- ParaViewCore/ServerManager/Testing/SMStates/TestPHT.pvsm ParaViewCore/ServerManager/Testing/SMStates/TestPHT.pvsm +0 -0
- ParaViewCore/ServerManager/Testing/SMStates/UndoRedo.pvsm ParaViewCore/ServerManager/Testing/SMStates/UndoRedo.pvsm +0 -0
- ParaViewCore/ServerManager/hints ParaViewCore/ServerManager/hints +0 -0
- ParaViewCore/ServerManager/vtkInitializationHelper.cxx ParaViewCore/ServerManager/vtkInitializationHelper.cxx +218 -0
- ParaViewCore/ServerManager/vtkInitializationHelper.h ParaViewCore/ServerManager/vtkInitializationHelper.h +60 -0
- ParaViewCore/ServerManager/vtkPVComparativeAnimationCue.cxx ParaViewCore/ServerManager/vtkPVComparativeAnimationCue.cxx +699 -0
- ParaViewCore/ServerManager/vtkPVComparativeAnimationCue.h ParaViewCore/ServerManager/vtkPVComparativeAnimationCue.h +156 -0
- ParaViewCore/ServerManager/vtkPVComparativeView.cxx ParaViewCore/ServerManager/vtkPVComparativeView.cxx +917 -0
- ParaViewCore/ServerManager/vtkPVComparativeView.h ParaViewCore/ServerManager/vtkPVComparativeView.h +198 -0
- ParaViewCore/ServerManager/vtkPVKeyFrameAnimationCueForProxies.cxx ...ore/ServerManager/vtkPVKeyFrameAnimationCueForProxies.cxx +127 -0
- ParaViewCore/ServerManager/vtkPVKeyFrameAnimationCueForProxies.h ...wCore/ServerManager/vtkPVKeyFrameAnimationCueForProxies.h +86 -0
- ParaViewCore/ServerManager/vtkPVRepresentationAnimationHelper.cxx ...Core/ServerManager/vtkPVRepresentationAnimationHelper.cxx +88 -0
- ParaViewCore/ServerManager/vtkPVRepresentationAnimationHelper.h ...ewCore/ServerManager/vtkPVRepresentationAnimationHelper.h +54 -0
- ParaViewCore/ServerManager/vtkSMAnimationScene.cxx ParaViewCore/ServerManager/vtkSMAnimationScene.cxx +335 -0
- ParaViewCore/ServerManager/vtkSMAnimationScene.h ParaViewCore/ServerManager/vtkSMAnimationScene.h +137 -0
- ParaViewCore/ServerManager/vtkSMAnimationSceneGeometryWriter.cxx ...wCore/ServerManager/vtkSMAnimationSceneGeometryWriter.cxx +117 -0
- ParaViewCore/ServerManager/vtkSMAnimationSceneGeometryWriter.h ...iewCore/ServerManager/vtkSMAnimationSceneGeometryWriter.h +66 -0
- ParaViewCore/ServerManager/vtkSMAnimationSceneImageWriter.cxx ...ViewCore/ServerManager/vtkSMAnimationSceneImageWriter.cxx +483 -0
- ParaViewCore/ServerManager/vtkSMAnimationSceneImageWriter.h ParaViewCore/ServerManager/vtkSMAnimationSceneImageWriter.h +0 -0
- ParaViewCore/ServerManager/vtkSMAnimationSceneProxy.cxx ParaViewCore/ServerManager/vtkSMAnimationSceneProxy.cxx +50 -0
- ParaViewCore/ServerManager/vtkSMAnimationSceneProxy.h ParaViewCore/ServerManager/vtkSMAnimationSceneProxy.h +50 -0
- ParaViewCore/ServerManager/vtkSMAnimationSceneWriter.cxx ParaViewCore/ServerManager/vtkSMAnimationSceneWriter.cxx +165 -0
- ParaViewCore/ServerManager/vtkSMAnimationSceneWriter.h ParaViewCore/ServerManager/vtkSMAnimationSceneWriter.h +90 -0
- ParaViewCore/ServerManager/vtkSMArrayListDomain.cxx ParaViewCore/ServerManager/vtkSMArrayListDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMArrayListDomain.h ParaViewCore/ServerManager/vtkSMArrayListDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMArrayRangeDomain.cxx ParaViewCore/ServerManager/vtkSMArrayRangeDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMArrayRangeDomain.h ParaViewCore/ServerManager/vtkSMArrayRangeDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMArraySelectionDomain.cxx ParaViewCore/ServerManager/vtkSMArraySelectionDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMArraySelectionDomain.h ParaViewCore/ServerManager/vtkSMArraySelectionDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMBooleanDomain.cxx ParaViewCore/ServerManager/vtkSMBooleanDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMBooleanDomain.h ParaViewCore/ServerManager/vtkSMBooleanDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMBoundsDomain.cxx ParaViewCore/ServerManager/vtkSMBoundsDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMBoundsDomain.h ParaViewCore/ServerManager/vtkSMBoundsDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMBoxRepresentationProxy.cxx ParaViewCore/ServerManager/vtkSMBoxRepresentationProxy.cxx +96 -0
- ParaViewCore/ServerManager/vtkSMBoxRepresentationProxy.h ParaViewCore/ServerManager/vtkSMBoxRepresentationProxy.h +52 -0
- ParaViewCore/ServerManager/vtkSMCSVExporterProxy.cxx ParaViewCore/ServerManager/vtkSMCSVExporterProxy.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMCSVExporterProxy.h ParaViewCore/ServerManager/vtkSMCSVExporterProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMCacheBasedProxyLocator.cxx ParaViewCore/ServerManager/vtkSMCacheBasedProxyLocator.cxx +128 -0
- ParaViewCore/ServerManager/vtkSMCacheBasedProxyLocator.h ParaViewCore/ServerManager/vtkSMCacheBasedProxyLocator.h +74 -0
- ParaViewCore/ServerManager/vtkSMCameraConfigurationFileInfo.h ...ViewCore/ServerManager/vtkSMCameraConfigurationFileInfo.h +0 -0
- ParaViewCore/ServerManager/vtkSMCameraConfigurationReader.cxx ...ViewCore/ServerManager/vtkSMCameraConfigurationReader.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMCameraConfigurationReader.h ParaViewCore/ServerManager/vtkSMCameraConfigurationReader.h +0 -0
- ParaViewCore/ServerManager/vtkSMCameraConfigurationWriter.cxx ...ViewCore/ServerManager/vtkSMCameraConfigurationWriter.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMCameraConfigurationWriter.h ParaViewCore/ServerManager/vtkSMCameraConfigurationWriter.h +0 -0
- ParaViewCore/ServerManager/vtkSMCameraLink.cxx ParaViewCore/ServerManager/vtkSMCameraLink.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMCameraLink.h ParaViewCore/ServerManager/vtkSMCameraLink.h +0 -0
- ParaViewCore/ServerManager/vtkSMCameraProxy.cxx ParaViewCore/ServerManager/vtkSMCameraProxy.cxx +77 -0
- ParaViewCore/ServerManager/vtkSMCameraProxy.h ParaViewCore/ServerManager/vtkSMCameraProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMChartRepresentationProxy.cxx ParaViewCore/ServerManager/vtkSMChartRepresentationProxy.cxx +79 -0
- ParaViewCore/ServerManager/vtkSMChartRepresentationProxy.h ParaViewCore/ServerManager/vtkSMChartRepresentationProxy.h +54 -0
- ParaViewCore/ServerManager/vtkSMComparativeAnimationCueProxy.cxx ...wCore/ServerManager/vtkSMComparativeAnimationCueProxy.cxx +200 -0
- ParaViewCore/ServerManager/vtkSMComparativeAnimationCueProxy.h ...iewCore/ServerManager/vtkSMComparativeAnimationCueProxy.h +87 -0
- ParaViewCore/ServerManager/vtkSMComparativeAnimationCueUndoElement.cxx ...ServerManager/vtkSMComparativeAnimationCueUndoElement.cxx +114 -0
- ParaViewCore/ServerManager/vtkSMComparativeAnimationCueUndoElement.h ...e/ServerManager/vtkSMComparativeAnimationCueUndoElement.h +52 -0
- ParaViewCore/ServerManager/vtkSMComparativeViewProxy.cxx ParaViewCore/ServerManager/vtkSMComparativeViewProxy.cxx +190 -0
- ParaViewCore/ServerManager/vtkSMComparativeViewProxy.h ParaViewCore/ServerManager/vtkSMComparativeViewProxy.h +87 -0
- ParaViewCore/ServerManager/vtkSMCompositeTreeDomain.cxx ParaViewCore/ServerManager/vtkSMCompositeTreeDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMCompositeTreeDomain.h ParaViewCore/ServerManager/vtkSMCompositeTreeDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMCompoundProxyDefinitionLoader.cxx ...Core/ServerManager/vtkSMCompoundProxyDefinitionLoader.cxx +75 -0
- ParaViewCore/ServerManager/vtkSMCompoundProxyDefinitionLoader.h ...ewCore/ServerManager/vtkSMCompoundProxyDefinitionLoader.h +54 -0
- ParaViewCore/ServerManager/vtkSMCompoundSourceProxy.cxx ParaViewCore/ServerManager/vtkSMCompoundSourceProxy.cxx +545 -0
- ParaViewCore/ServerManager/vtkSMCompoundSourceProxy.h ParaViewCore/ServerManager/vtkSMCompoundSourceProxy.h +154 -0
- ParaViewCore/ServerManager/vtkSMCompoundSourceProxyDefinitionBuilder.cxx ...rverManager/vtkSMCompoundSourceProxyDefinitionBuilder.cxx +361 -0
- ParaViewCore/ServerManager/vtkSMCompoundSourceProxyDefinitionBuilder.h ...ServerManager/vtkSMCompoundSourceProxyDefinitionBuilder.h +126 -0
- ParaViewCore/ServerManager/vtkSMContextNamedOptionsProxy.cxx ParaViewCore/ServerManager/vtkSMContextNamedOptionsProxy.cxx +150 -0
- ParaViewCore/ServerManager/vtkSMContextNamedOptionsProxy.h ParaViewCore/ServerManager/vtkSMContextNamedOptionsProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMContextViewProxy.cxx ParaViewCore/ServerManager/vtkSMContextViewProxy.cxx +123 -0
- ParaViewCore/ServerManager/vtkSMContextViewProxy.h ParaViewCore/ServerManager/vtkSMContextViewProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMDataSourceProxy.cxx ParaViewCore/ServerManager/vtkSMDataSourceProxy.cxx +60 -0
- ParaViewCore/ServerManager/vtkSMDataSourceProxy.h ParaViewCore/ServerManager/vtkSMDataSourceProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMDataTypeDomain.cxx ParaViewCore/ServerManager/vtkSMDataTypeDomain.cxx +280 -0
- ParaViewCore/ServerManager/vtkSMDataTypeDomain.h ParaViewCore/ServerManager/vtkSMDataTypeDomain.h +87 -0
- ParaViewCore/ServerManager/vtkSMDeserializer.cxx ParaViewCore/ServerManager/vtkSMDeserializer.cxx +113 -0
- ParaViewCore/ServerManager/vtkSMDeserializer.h ParaViewCore/ServerManager/vtkSMDeserializer.h +85 -0
- ParaViewCore/ServerManager/vtkSMDimensionsDomain.cxx ParaViewCore/ServerManager/vtkSMDimensionsDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMDimensionsDomain.h ParaViewCore/ServerManager/vtkSMDimensionsDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMDirectoryProxy.cxx ParaViewCore/ServerManager/vtkSMDirectoryProxy.cxx +125 -0
- ParaViewCore/ServerManager/vtkSMDirectoryProxy.h ParaViewCore/ServerManager/vtkSMDirectoryProxy.h +54 -0
- ParaViewCore/ServerManager/vtkSMDocumentation.cxx ParaViewCore/ServerManager/vtkSMDocumentation.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMDocumentation.h ParaViewCore/ServerManager/vtkSMDocumentation.h +0 -0
- ParaViewCore/ServerManager/vtkSMDomain.cxx ParaViewCore/ServerManager/vtkSMDomain.cxx +185 -0
- ParaViewCore/ServerManager/vtkSMDomain.h ParaViewCore/ServerManager/vtkSMDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMDomainIterator.cxx ParaViewCore/ServerManager/vtkSMDomainIterator.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMDomainIterator.h ParaViewCore/ServerManager/vtkSMDomainIterator.h +0 -0
- ParaViewCore/ServerManager/vtkSMDoubleRangeDomain.cxx ParaViewCore/ServerManager/vtkSMDoubleRangeDomain.cxx +444 -0
- ParaViewCore/ServerManager/vtkSMDoubleRangeDomain.h ParaViewCore/ServerManager/vtkSMDoubleRangeDomain.h +196 -0
- ParaViewCore/ServerManager/vtkSMDoubleVectorProperty.cxx ParaViewCore/ServerManager/vtkSMDoubleVectorProperty.cxx +299 -0
- ParaViewCore/ServerManager/vtkSMDoubleVectorProperty.h ParaViewCore/ServerManager/vtkSMDoubleVectorProperty.h +185 -0
- ParaViewCore/ServerManager/vtkSMEnumerationDomain.cxx ParaViewCore/ServerManager/vtkSMEnumerationDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMEnumerationDomain.h ParaViewCore/ServerManager/vtkSMEnumerationDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMExporterProxy.cxx ParaViewCore/ServerManager/vtkSMExporterProxy.cxx +61 -0
- ParaViewCore/ServerManager/vtkSMExporterProxy.h ParaViewCore/ServerManager/vtkSMExporterProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMExtentDomain.cxx ParaViewCore/ServerManager/vtkSMExtentDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMExtentDomain.h ParaViewCore/ServerManager/vtkSMExtentDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMExtractDocumentation.cxx ParaViewCore/ServerManager/vtkSMExtractDocumentation.cxx +1101 -0
- ParaViewCore/ServerManager/vtkSMFieldDataDomain.cxx ParaViewCore/ServerManager/vtkSMFieldDataDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMFieldDataDomain.h ParaViewCore/ServerManager/vtkSMFieldDataDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMFileListDomain.cxx ParaViewCore/ServerManager/vtkSMFileListDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMFileListDomain.h ParaViewCore/ServerManager/vtkSMFileListDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMFixedTypeDomain.cxx ParaViewCore/ServerManager/vtkSMFixedTypeDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMFixedTypeDomain.h ParaViewCore/ServerManager/vtkSMFixedTypeDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMGlobalPropertiesLinkUndoElement.cxx ...re/ServerManager/vtkSMGlobalPropertiesLinkUndoElement.cxx +98 -0
- ParaViewCore/ServerManager/vtkSMGlobalPropertiesLinkUndoElement.h ...Core/ServerManager/vtkSMGlobalPropertiesLinkUndoElement.h +74 -0
- ParaViewCore/ServerManager/vtkSMGlobalPropertiesManager.cxx ParaViewCore/ServerManager/vtkSMGlobalPropertiesManager.cxx +267 -0
- ParaViewCore/ServerManager/vtkSMGlobalPropertiesManager.h ParaViewCore/ServerManager/vtkSMGlobalPropertiesManager.h +99 -0
- ParaViewCore/ServerManager/vtkSMIdTypeVectorProperty.cxx ParaViewCore/ServerManager/vtkSMIdTypeVectorProperty.cxx +275 -0
- ParaViewCore/ServerManager/vtkSMIdTypeVectorProperty.h ParaViewCore/ServerManager/vtkSMIdTypeVectorProperty.h +164 -0
- ParaViewCore/ServerManager/vtkSMImplicitPlaneRepresentationProxy.cxx ...e/ServerManager/vtkSMImplicitPlaneRepresentationProxy.cxx +61 -0
- ParaViewCore/ServerManager/vtkSMImplicitPlaneRepresentationProxy.h ...ore/ServerManager/vtkSMImplicitPlaneRepresentationProxy.h +43 -0
- ParaViewCore/ServerManager/vtkSMInputArrayDomain.cxx ParaViewCore/ServerManager/vtkSMInputArrayDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMInputArrayDomain.h ParaViewCore/ServerManager/vtkSMInputArrayDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMInputProperty.cxx ParaViewCore/ServerManager/vtkSMInputProperty.cxx +445 -0
- ParaViewCore/ServerManager/vtkSMInputProperty.h ParaViewCore/ServerManager/vtkSMInputProperty.h +156 -0
- ParaViewCore/ServerManager/vtkSMIntRangeDomain.cxx ParaViewCore/ServerManager/vtkSMIntRangeDomain.cxx +472 -0
- ParaViewCore/ServerManager/vtkSMIntRangeDomain.h ParaViewCore/ServerManager/vtkSMIntRangeDomain.h +206 -0
- ParaViewCore/ServerManager/vtkSMIntVectorProperty.cxx ParaViewCore/ServerManager/vtkSMIntVectorProperty.cxx +287 -0
- ParaViewCore/ServerManager/vtkSMIntVectorProperty.h ParaViewCore/ServerManager/vtkSMIntVectorProperty.h +173 -0
- ParaViewCore/ServerManager/vtkSMInteractionUndoStackBuilder.cxx ...ewCore/ServerManager/vtkSMInteractionUndoStackBuilder.cxx +189 -0
- ParaViewCore/ServerManager/vtkSMInteractionUndoStackBuilder.h ...ViewCore/ServerManager/vtkSMInteractionUndoStackBuilder.h +100 -0
- ParaViewCore/ServerManager/vtkSMLinearAnimationCueManipulatorProxy.cxx ...ServerManager/vtkSMLinearAnimationCueManipulatorProxy.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMLinearAnimationCueManipulatorProxy.h ...e/ServerManager/vtkSMLinearAnimationCueManipulatorProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMLink.cxx ParaViewCore/ServerManager/vtkSMLink.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMLink.h ParaViewCore/ServerManager/vtkSMLink.h +0 -0
- ParaViewCore/ServerManager/vtkSMNamedPropertyIterator.cxx ParaViewCore/ServerManager/vtkSMNamedPropertyIterator.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMNamedPropertyIterator.h ParaViewCore/ServerManager/vtkSMNamedPropertyIterator.h +0 -0
- ParaViewCore/ServerManager/vtkSMNewWidgetRepresentationProxy.cxx ...wCore/ServerManager/vtkSMNewWidgetRepresentationProxy.cxx +281 -0
- ParaViewCore/ServerManager/vtkSMNewWidgetRepresentationProxy.h ...iewCore/ServerManager/vtkSMNewWidgetRepresentationProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMNullProxy.cxx ParaViewCore/ServerManager/vtkSMNullProxy.cxx +42 -0
- ParaViewCore/ServerManager/vtkSMNullProxy.h ParaViewCore/ServerManager/vtkSMNullProxy.h +42 -0
- ParaViewCore/ServerManager/vtkSMNumberOfComponentsDomain.cxx ParaViewCore/ServerManager/vtkSMNumberOfComponentsDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMNumberOfComponentsDomain.h ParaViewCore/ServerManager/vtkSMNumberOfComponentsDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMNumberOfGroupsDomain.cxx ParaViewCore/ServerManager/vtkSMNumberOfGroupsDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMNumberOfGroupsDomain.h ParaViewCore/ServerManager/vtkSMNumberOfGroupsDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMObject.cxx ParaViewCore/ServerManager/vtkSMObject.cxx +60 -0
- ParaViewCore/ServerManager/vtkSMObject.h ParaViewCore/ServerManager/vtkSMObject.h +52 -0
- ParaViewCore/ServerManager/vtkSMOrderedPropertyIterator.cxx ParaViewCore/ServerManager/vtkSMOrderedPropertyIterator.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMOrderedPropertyIterator.h ParaViewCore/ServerManager/vtkSMOrderedPropertyIterator.h +0 -0
- ParaViewCore/ServerManager/vtkSMOutputPort.cxx ParaViewCore/ServerManager/vtkSMOutputPort.cxx +234 -0
- ParaViewCore/ServerManager/vtkSMOutputPort.h ParaViewCore/ServerManager/vtkSMOutputPort.h +144 -0
- ParaViewCore/ServerManager/vtkSMPSWriterProxy.cxx ParaViewCore/ServerManager/vtkSMPSWriterProxy.cxx +39 -0
- ParaViewCore/ServerManager/vtkSMPSWriterProxy.h ParaViewCore/ServerManager/vtkSMPSWriterProxy.h +44 -0
- ParaViewCore/ServerManager/vtkSMPVRepresentationProxy.cxx ParaViewCore/ServerManager/vtkSMPVRepresentationProxy.cxx +158 -0
- ParaViewCore/ServerManager/vtkSMPVRepresentationProxy.h ParaViewCore/ServerManager/vtkSMPVRepresentationProxy.h +71 -0
- ParaViewCore/ServerManager/vtkSMPWriterProxy.cxx ParaViewCore/ServerManager/vtkSMPWriterProxy.cxx +39 -0
- ParaViewCore/ServerManager/vtkSMPWriterProxy.h ParaViewCore/ServerManager/vtkSMPWriterProxy.h +45 -0
- ParaViewCore/ServerManager/vtkSMParallelCoordinatesRepresentationProxy.cxx ...erManager/vtkSMParallelCoordinatesRepresentationProxy.cxx +120 -0
- ParaViewCore/ServerManager/vtkSMParallelCoordinatesRepresentationProxy.h ...rverManager/vtkSMParallelCoordinatesRepresentationProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMPipelineState.cxx ParaViewCore/ServerManager/vtkSMPipelineState.cxx +66 -0
- ParaViewCore/ServerManager/vtkSMPipelineState.h ParaViewCore/ServerManager/vtkSMPipelineState.h +74 -0
- ParaViewCore/ServerManager/vtkSMPluginLoaderProxy.cxx ParaViewCore/ServerManager/vtkSMPluginLoaderProxy.cxx +68 -0
- ParaViewCore/ServerManager/vtkSMPluginLoaderProxy.h ParaViewCore/ServerManager/vtkSMPluginLoaderProxy.h +56 -0
- ParaViewCore/ServerManager/vtkSMPluginManager.cxx ParaViewCore/ServerManager/vtkSMPluginManager.cxx +167 -0
- ParaViewCore/ServerManager/vtkSMPluginManager.h ParaViewCore/ServerManager/vtkSMPluginManager.h +86 -0
- ParaViewCore/ServerManager/vtkSMProperty.cxx ParaViewCore/ServerManager/vtkSMProperty.cxx +569 -0
- ParaViewCore/ServerManager/vtkSMProperty.h ParaViewCore/ServerManager/vtkSMProperty.h +400 -0
- ParaViewCore/ServerManager/vtkSMPropertyAdaptor.cxx ParaViewCore/ServerManager/vtkSMPropertyAdaptor.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMPropertyAdaptor.h ParaViewCore/ServerManager/vtkSMPropertyAdaptor.h +0 -0
- ParaViewCore/ServerManager/vtkSMPropertyHelper.cxx ParaViewCore/ServerManager/vtkSMPropertyHelper.cxx +865 -0
- ParaViewCore/ServerManager/vtkSMPropertyHelper.h ParaViewCore/ServerManager/vtkSMPropertyHelper.h +211 -0
- ParaViewCore/ServerManager/vtkSMPropertyInternals.h ParaViewCore/ServerManager/vtkSMPropertyInternals.h +37 -0
- ParaViewCore/ServerManager/vtkSMPropertyIterator.cxx ParaViewCore/ServerManager/vtkSMPropertyIterator.cxx +240 -0
- ParaViewCore/ServerManager/vtkSMPropertyIterator.h ParaViewCore/ServerManager/vtkSMPropertyIterator.h +0 -0
- ParaViewCore/ServerManager/vtkSMPropertyLink.cxx ParaViewCore/ServerManager/vtkSMPropertyLink.cxx +622 -0
- ParaViewCore/ServerManager/vtkSMPropertyLink.h ParaViewCore/ServerManager/vtkSMPropertyLink.h +0 -0
- ParaViewCore/ServerManager/vtkSMPropertyModificationUndoElement.cxx ...re/ServerManager/vtkSMPropertyModificationUndoElement.cxx +109 -0
- ParaViewCore/ServerManager/vtkSMPropertyModificationUndoElement.h ...Core/ServerManager/vtkSMPropertyModificationUndoElement.h +75 -0
- ParaViewCore/ServerManager/vtkSMProxy.cxx ParaViewCore/ServerManager/vtkSMProxy.cxx +2057 -0
- ParaViewCore/ServerManager/vtkSMProxy.h ParaViewCore/ServerManager/vtkSMProxy.h +744 -0
- ParaViewCore/ServerManager/vtkSMProxyConfigurationFileInfo.h ParaViewCore/ServerManager/vtkSMProxyConfigurationFileInfo.h +0 -0
- ParaViewCore/ServerManager/vtkSMProxyConfigurationReader.cxx ParaViewCore/ServerManager/vtkSMProxyConfigurationReader.cxx +170 -0
- ParaViewCore/ServerManager/vtkSMProxyConfigurationReader.h ParaViewCore/ServerManager/vtkSMProxyConfigurationReader.h +0 -0
- ParaViewCore/ServerManager/vtkSMProxyConfigurationWriter.cxx ParaViewCore/ServerManager/vtkSMProxyConfigurationWriter.cxx +157 -0
- ParaViewCore/ServerManager/vtkSMProxyConfigurationWriter.h ParaViewCore/ServerManager/vtkSMProxyConfigurationWriter.h +0 -0
- ParaViewCore/ServerManager/vtkSMProxyGroupDomain.cxx ParaViewCore/ServerManager/vtkSMProxyGroupDomain.cxx +239 -0
- ParaViewCore/ServerManager/vtkSMProxyGroupDomain.h ParaViewCore/ServerManager/vtkSMProxyGroupDomain.h +99 -0
- ParaViewCore/ServerManager/vtkSMProxyInternals.h ParaViewCore/ServerManager/vtkSMProxyInternals.h +92 -0
- ParaViewCore/ServerManager/vtkSMProxyIterator.cxx ParaViewCore/ServerManager/vtkSMProxyIterator.cxx +298 -0
- ParaViewCore/ServerManager/vtkSMProxyIterator.h ParaViewCore/ServerManager/vtkSMProxyIterator.h +109 -0
- ParaViewCore/ServerManager/vtkSMProxyLink.cxx ParaViewCore/ServerManager/vtkSMProxyLink.cxx +341 -0
- ParaViewCore/ServerManager/vtkSMProxyLink.h ParaViewCore/ServerManager/vtkSMProxyLink.h +0 -0
- ParaViewCore/ServerManager/vtkSMProxyListDomain.cxx ParaViewCore/ServerManager/vtkSMProxyListDomain.cxx +285 -0
- ParaViewCore/ServerManager/vtkSMProxyListDomain.h ParaViewCore/ServerManager/vtkSMProxyListDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMProxyLocator.cxx ParaViewCore/ServerManager/vtkSMProxyLocator.cxx +90 -0
- ParaViewCore/ServerManager/vtkSMProxyLocator.h ParaViewCore/ServerManager/vtkSMProxyLocator.h +74 -0
- ParaViewCore/ServerManager/vtkSMProxyManager.cxx ParaViewCore/ServerManager/vtkSMProxyManager.cxx +1741 -0
- ParaViewCore/ServerManager/vtkSMProxyManager.h ParaViewCore/ServerManager/vtkSMProxyManager.h +611 -0
- ParaViewCore/ServerManager/vtkSMProxyManagerInternals.h ParaViewCore/ServerManager/vtkSMProxyManagerInternals.h +492 -0
- ParaViewCore/ServerManager/vtkSMProxyProperty.cxx ParaViewCore/ServerManager/vtkSMProxyProperty.cxx +678 -0
- ParaViewCore/ServerManager/vtkSMProxyProperty.h ParaViewCore/ServerManager/vtkSMProxyProperty.h +211 -0
- ParaViewCore/ServerManager/vtkSMProxySelectionModel.cxx ParaViewCore/ServerManager/vtkSMProxySelectionModel.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMProxySelectionModel.h ParaViewCore/ServerManager/vtkSMProxySelectionModel.h +0 -0
- ParaViewCore/ServerManager/vtkSMPythonTraceObserver.cxx ParaViewCore/ServerManager/vtkSMPythonTraceObserver.cxx +209 -0
- ParaViewCore/ServerManager/vtkSMPythonTraceObserver.h ParaViewCore/ServerManager/vtkSMPythonTraceObserver.h +0 -0
- ParaViewCore/ServerManager/vtkSMReaderFactory.cxx ParaViewCore/ServerManager/vtkSMReaderFactory.cxx +679 -0
- ParaViewCore/ServerManager/vtkSMReaderFactory.h ParaViewCore/ServerManager/vtkSMReaderFactory.h +174 -0
- ParaViewCore/ServerManager/vtkSMRemoteObject.cxx ParaViewCore/ServerManager/vtkSMRemoteObject.cxx +182 -0
- ParaViewCore/ServerManager/vtkSMRemoteObject.h ParaViewCore/ServerManager/vtkSMRemoteObject.h +137 -0
- ParaViewCore/ServerManager/vtkSMRemoteObjectUpdateUndoElement.cxx ...Core/ServerManager/vtkSMRemoteObjectUpdateUndoElement.cxx +111 -0
- ParaViewCore/ServerManager/vtkSMRemoteObjectUpdateUndoElement.h ...ewCore/ServerManager/vtkSMRemoteObjectUpdateUndoElement.h +82 -0
- ParaViewCore/ServerManager/vtkSMRenderViewExporterProxy.cxx ParaViewCore/ServerManager/vtkSMRenderViewExporterProxy.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMRenderViewExporterProxy.h ParaViewCore/ServerManager/vtkSMRenderViewExporterProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMRenderViewProxy.cxx ParaViewCore/ServerManager/vtkSMRenderViewProxy.cxx +863 -0
- ParaViewCore/ServerManager/vtkSMRenderViewProxy.h ParaViewCore/ServerManager/vtkSMRenderViewProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMRepresentationProxy.cxx ParaViewCore/ServerManager/vtkSMRepresentationProxy.cxx +192 -0
- ParaViewCore/ServerManager/vtkSMRepresentationProxy.h ParaViewCore/ServerManager/vtkSMRepresentationProxy.h +88 -0
- ParaViewCore/ServerManager/vtkSMSILDomain.cxx ParaViewCore/ServerManager/vtkSMSILDomain.cxx +87 -0
- ParaViewCore/ServerManager/vtkSMSILDomain.h ParaViewCore/ServerManager/vtkSMSILDomain.h +79 -0
- ParaViewCore/ServerManager/vtkSMSILModel.cxx ParaViewCore/ServerManager/vtkSMSILModel.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMSILModel.h ParaViewCore/ServerManager/vtkSMSILModel.h +0 -0
- ParaViewCore/ServerManager/vtkSMScalarBarWidgetRepresentationProxy.cxx ...ServerManager/vtkSMScalarBarWidgetRepresentationProxy.cxx +118 -0
- ParaViewCore/ServerManager/vtkSMScalarBarWidgetRepresentationProxy.h ...e/ServerManager/vtkSMScalarBarWidgetRepresentationProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMSelectionHelper.cxx ParaViewCore/ServerManager/vtkSMSelectionHelper.cxx +677 -0
- ParaViewCore/ServerManager/vtkSMSelectionHelper.h ParaViewCore/ServerManager/vtkSMSelectionHelper.h +93 -0
- ParaViewCore/ServerManager/vtkSMSession.cxx ParaViewCore/ServerManager/vtkSMSession.cxx +309 -0
- ParaViewCore/ServerManager/vtkSMSession.h ParaViewCore/ServerManager/vtkSMSession.h +212 -0
- ParaViewCore/ServerManager/vtkSMSessionClient.cxx ParaViewCore/ServerManager/vtkSMSessionClient.cxx +723 -0
- ParaViewCore/ServerManager/vtkSMSessionClient.h ParaViewCore/ServerManager/vtkSMSessionClient.h +161 -0
- ParaViewCore/ServerManager/vtkSMSourceProxy.cxx ParaViewCore/ServerManager/vtkSMSourceProxy.cxx +600 -0
- ParaViewCore/ServerManager/vtkSMSourceProxy.h ParaViewCore/ServerManager/vtkSMSourceProxy.h +238 -0
- ParaViewCore/ServerManager/vtkSMSpreadSheetRepresentationProxy.cxx ...ore/ServerManager/vtkSMSpreadSheetRepresentationProxy.cxx +73 -0
- ParaViewCore/ServerManager/vtkSMSpreadSheetRepresentationProxy.h ...wCore/ServerManager/vtkSMSpreadSheetRepresentationProxy.h +52 -0
- ParaViewCore/ServerManager/vtkSMStateLoader.cxx ParaViewCore/ServerManager/vtkSMStateLoader.cxx +565 -0
- ParaViewCore/ServerManager/vtkSMStateLoader.h ParaViewCore/ServerManager/vtkSMStateLoader.h +116 -0
- ParaViewCore/ServerManager/vtkSMStateLocator.cxx ParaViewCore/ServerManager/vtkSMStateLocator.cxx +120 -0
- ParaViewCore/ServerManager/vtkSMStateLocator.h ParaViewCore/ServerManager/vtkSMStateLocator.h +80 -0
- ParaViewCore/ServerManager/vtkSMStateVersionController.cxx ParaViewCore/ServerManager/vtkSMStateVersionController.cxx +970 -0
- ParaViewCore/ServerManager/vtkSMStateVersionController.h ParaViewCore/ServerManager/vtkSMStateVersionController.h +64 -0
- ParaViewCore/ServerManager/vtkSMStateVersionControllerBase.cxx ...iewCore/ServerManager/vtkSMStateVersionControllerBase.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMStateVersionControllerBase.h ParaViewCore/ServerManager/vtkSMStateVersionControllerBase.h +0 -0
- ParaViewCore/ServerManager/vtkSMStringListDomain.cxx ParaViewCore/ServerManager/vtkSMStringListDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMStringListDomain.h ParaViewCore/ServerManager/vtkSMStringListDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMStringListRangeDomain.cxx ParaViewCore/ServerManager/vtkSMStringListRangeDomain.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMStringListRangeDomain.h ParaViewCore/ServerManager/vtkSMStringListRangeDomain.h +0 -0
- ParaViewCore/ServerManager/vtkSMStringVectorProperty.cxx ParaViewCore/ServerManager/vtkSMStringVectorProperty.cxx +327 -0
- ParaViewCore/ServerManager/vtkSMStringVectorProperty.h ParaViewCore/ServerManager/vtkSMStringVectorProperty.h +159 -0
- ParaViewCore/ServerManager/vtkSMTesting.cxx ParaViewCore/ServerManager/vtkSMTesting.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMTesting.h ParaViewCore/ServerManager/vtkSMTesting.h +0 -0
- ParaViewCore/ServerManager/vtkSMTextWidgetRepresentationProxy.cxx ...Core/ServerManager/vtkSMTextWidgetRepresentationProxy.cxx +109 -0
- ParaViewCore/ServerManager/vtkSMTextWidgetRepresentationProxy.h ...ewCore/ServerManager/vtkSMTextWidgetRepresentationProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMTimeKeeper.cxx ParaViewCore/ServerManager/vtkSMTimeKeeper.cxx +249 -0
- ParaViewCore/ServerManager/vtkSMTimeKeeper.h ParaViewCore/ServerManager/vtkSMTimeKeeper.h +96 -0
- ParaViewCore/ServerManager/vtkSMTimeKeeperProxy.cxx ParaViewCore/ServerManager/vtkSMTimeKeeperProxy.cxx +55 -0
- ParaViewCore/ServerManager/vtkSMTimeKeeperProxy.h ParaViewCore/ServerManager/vtkSMTimeKeeperProxy.h +45 -0
- ParaViewCore/ServerManager/vtkSMTwoDRenderViewProxy.cxx ParaViewCore/ServerManager/vtkSMTwoDRenderViewProxy.cxx +83 -0
- ParaViewCore/ServerManager/vtkSMTwoDRenderViewProxy.h ParaViewCore/ServerManager/vtkSMTwoDRenderViewProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMUndoElement.cxx ParaViewCore/ServerManager/vtkSMUndoElement.cxx +53 -0
- ParaViewCore/ServerManager/vtkSMUndoElement.h ParaViewCore/ServerManager/vtkSMUndoElement.h +54 -0
- ParaViewCore/ServerManager/vtkSMUndoStack.cxx ParaViewCore/ServerManager/vtkSMUndoStack.cxx +124 -0
- ParaViewCore/ServerManager/vtkSMUndoStack.h ParaViewCore/ServerManager/vtkSMUndoStack.h +96 -0
- ParaViewCore/ServerManager/vtkSMUndoStackBuilder.cxx ParaViewCore/ServerManager/vtkSMUndoStackBuilder.cxx +152 -0
- ParaViewCore/ServerManager/vtkSMUndoStackBuilder.h ParaViewCore/ServerManager/vtkSMUndoStackBuilder.h +150 -0
- ParaViewCore/ServerManager/vtkSMUtilities.cxx ParaViewCore/ServerManager/vtkSMUtilities.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMUtilities.h ParaViewCore/ServerManager/vtkSMUtilities.h +0 -0
- ParaViewCore/ServerManager/vtkSMVectorProperty.cxx ParaViewCore/ServerManager/vtkSMVectorProperty.cxx +149 -0
- ParaViewCore/ServerManager/vtkSMVectorProperty.h ParaViewCore/ServerManager/vtkSMVectorProperty.h +133 -0
- ParaViewCore/ServerManager/vtkSMVectorPropertyTemplate.h ParaViewCore/ServerManager/vtkSMVectorPropertyTemplate.h +290 -0
- ParaViewCore/ServerManager/vtkSMViewProxy.cxx ParaViewCore/ServerManager/vtkSMViewProxy.cxx +287 -0
- ParaViewCore/ServerManager/vtkSMViewProxy.h ParaViewCore/ServerManager/vtkSMViewProxy.h +112 -0
- ParaViewCore/ServerManager/vtkSMWidgetRepresentationProxy.cxx ...ViewCore/ServerManager/vtkSMWidgetRepresentationProxy.cxx +0 -0
- ParaViewCore/ServerManager/vtkSMWidgetRepresentationProxy.h ParaViewCore/ServerManager/vtkSMWidgetRepresentationProxy.h +0 -0
- ParaViewCore/ServerManager/vtkSMWriterFactory.cxx ParaViewCore/ServerManager/vtkSMWriterFactory.cxx +442 -0
- ParaViewCore/ServerManager/vtkSMWriterFactory.h ParaViewCore/ServerManager/vtkSMWriterFactory.h +132 -0
- ParaViewCore/ServerManager/vtkSMWriterProxy.cxx ParaViewCore/ServerManager/vtkSMWriterProxy.cxx +108 -0
- ParaViewCore/ServerManager/vtkSMWriterProxy.h ParaViewCore/ServerManager/vtkSMWriterProxy.h +84 -0
- ParaViewCore/Testing/CMakeLists.txt ParaViewCore/Testing/CMakeLists.txt +73 -0
- ParaViewCore/VTKExtensions/CMakeLists.txt ParaViewCore/VTKExtensions/CMakeLists.txt +439 -0
- ParaViewCore/VTKExtensions/Testing/CMakeLists.txt ParaViewCore/VTKExtensions/Testing/CMakeLists.txt +128 -0
- ParaViewCore/VTKExtensions/Testing/DistributedSubsetSortingTable.cxx ...e/VTKExtensions/Testing/DistributedSubsetSortingTable.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/ParaViewCoreVTKExtensionsPrintSelf.cxx ...Extensions/Testing/ParaViewCoreVTKExtensionsPrintSelf.cxx +423 -0
- ParaViewCore/VTKExtensions/Testing/TestCompleteArrays.cxx ParaViewCore/VTKExtensions/Testing/TestCompleteArrays.cxx +85 -0
- ParaViewCore/VTKExtensions/Testing/TestContinuousClose3D.cxx ParaViewCore/VTKExtensions/Testing/TestContinuousClose3D.cxx +75 -0
- ParaViewCore/VTKExtensions/Testing/TestExtractHistogram.cxx ParaViewCore/VTKExtensions/Testing/TestExtractHistogram.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestExtractScatterPlot.cxx ...ViewCore/VTKExtensions/Testing/TestExtractScatterPlot.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestIceTCompositePass.cxx ParaViewCore/VTKExtensions/Testing/TestIceTCompositePass.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestIceTShadowMapPass.cxx ParaViewCore/VTKExtensions/Testing/TestIceTShadowMapPass.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestIsoVolume.cxx ParaViewCore/VTKExtensions/Testing/TestIsoVolume.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestPVAMRDualClip.cxx ParaViewCore/VTKExtensions/Testing/TestPVAMRDualClip.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestPVFilters.cxx ParaViewCore/VTKExtensions/Testing/TestPVFilters.cxx +157 -0
- ParaViewCore/VTKExtensions/Testing/TestSimpleIceTCompositePass.cxx ...ore/VTKExtensions/Testing/TestSimpleIceTCompositePass.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestSortingTable.cxx ParaViewCore/VTKExtensions/Testing/TestSortingTable.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestSpyPlotTracers.cxx ParaViewCore/VTKExtensions/Testing/TestSpyPlotTracers.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestTilesHelper.cxx ParaViewCore/VTKExtensions/Testing/TestTilesHelper.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestTransferFunctionEditor.cxx ...Core/VTKExtensions/Testing/TestTransferFunctionEditor.cxx +0 -0
- ParaViewCore/VTKExtensions/Testing/TestTransferFunctionEditor2.cxx ...ore/VTKExtensions/Testing/TestTransferFunctionEditor2.cxx +0 -0
- ParaViewCore/VTKExtensions/hints ParaViewCore/VTKExtensions/hints +3 -0
- ParaViewCore/VTKExtensions/vtkAMRDualClip.cxx ParaViewCore/VTKExtensions/vtkAMRDualClip.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkAMRDualClip.h ParaViewCore/VTKExtensions/vtkAMRDualClip.h +0 -0
- ParaViewCore/VTKExtensions/vtkAMRDualContour.cxx ParaViewCore/VTKExtensions/vtkAMRDualContour.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkAMRDualContour.h ParaViewCore/VTKExtensions/vtkAMRDualContour.h +0 -0
- ParaViewCore/VTKExtensions/vtkAMRDualGridHelper.cxx ParaViewCore/VTKExtensions/vtkAMRDualGridHelper.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkAMRDualGridHelper.h ParaViewCore/VTKExtensions/vtkAMRDualGridHelper.h +0 -0
- ParaViewCore/VTKExtensions/vtkAllToNRedistributeCompositePolyData.cxx .../VTKExtensions/vtkAllToNRedistributeCompositePolyData.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkAllToNRedistributeCompositePolyData.h ...re/VTKExtensions/vtkAllToNRedistributeCompositePolyData.h +0 -0
- ParaViewCore/VTKExtensions/vtkAllToNRedistributePolyData.cxx ParaViewCore/VTKExtensions/vtkAllToNRedistributePolyData.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkAllToNRedistributePolyData.h ParaViewCore/VTKExtensions/vtkAllToNRedistributePolyData.h +0 -0
- ParaViewCore/VTKExtensions/vtkAnimationPlayer.cxx ParaViewCore/VTKExtensions/vtkAnimationPlayer.cxx +189 -0
- ParaViewCore/VTKExtensions/vtkAnimationPlayer.h ParaViewCore/VTKExtensions/vtkAnimationPlayer.h +103 -0
- ParaViewCore/VTKExtensions/vtkAppendArcLength.cxx ParaViewCore/VTKExtensions/vtkAppendArcLength.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkAppendArcLength.h ParaViewCore/VTKExtensions/vtkAppendArcLength.h +0 -0
- ParaViewCore/VTKExtensions/vtkAppendRectilinearGrid.cxx ParaViewCore/VTKExtensions/vtkAppendRectilinearGrid.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkAppendRectilinearGrid.h ParaViewCore/VTKExtensions/vtkAppendRectilinearGrid.h +0 -0
- ParaViewCore/VTKExtensions/vtkAttributeDataReductionFilter.cxx ...iewCore/VTKExtensions/vtkAttributeDataReductionFilter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkAttributeDataReductionFilter.h ParaViewCore/VTKExtensions/vtkAttributeDataReductionFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkAttributeDataToTableFilter.cxx ParaViewCore/VTKExtensions/vtkAttributeDataToTableFilter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkAttributeDataToTableFilter.h ParaViewCore/VTKExtensions/vtkAttributeDataToTableFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkBSPCutsGenerator.cxx ParaViewCore/VTKExtensions/vtkBSPCutsGenerator.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkBSPCutsGenerator.h ParaViewCore/VTKExtensions/vtkBSPCutsGenerator.h +0 -0
- ParaViewCore/VTKExtensions/vtkBalancedRedistributePolyData.cxx ...iewCore/VTKExtensions/vtkBalancedRedistributePolyData.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkBalancedRedistributePolyData.h ParaViewCore/VTKExtensions/vtkBalancedRedistributePolyData.h +0 -0
- ParaViewCore/VTKExtensions/vtkBlockDeliveryPreprocessor.cxx ParaViewCore/VTKExtensions/vtkBlockDeliveryPreprocessor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkBlockDeliveryPreprocessor.h ParaViewCore/VTKExtensions/vtkBlockDeliveryPreprocessor.h +0 -0
- ParaViewCore/VTKExtensions/vtkCSVExporter.cxx ParaViewCore/VTKExtensions/vtkCSVExporter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkCSVExporter.h ParaViewCore/VTKExtensions/vtkCSVExporter.h +0 -0
- ParaViewCore/VTKExtensions/vtkCSVWriter.cxx ParaViewCore/VTKExtensions/vtkCSVWriter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkCSVWriter.h ParaViewCore/VTKExtensions/vtkCSVWriter.h +0 -0
- ParaViewCore/VTKExtensions/vtkCacheSizeKeeper.cxx ParaViewCore/VTKExtensions/vtkCacheSizeKeeper.cxx +66 -0
- ParaViewCore/VTKExtensions/vtkCacheSizeKeeper.h ParaViewCore/VTKExtensions/vtkCacheSizeKeeper.h +88 -0
- ParaViewCore/VTKExtensions/vtkCameraInterpolator2.cxx ParaViewCore/VTKExtensions/vtkCameraInterpolator2.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkCameraInterpolator2.h ParaViewCore/VTKExtensions/vtkCameraInterpolator2.h +0 -0
- ParaViewCore/VTKExtensions/vtkCameraManipulator.cxx ParaViewCore/VTKExtensions/vtkCameraManipulator.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkCameraManipulator.h ParaViewCore/VTKExtensions/vtkCameraManipulator.h +0 -0
- ParaViewCore/VTKExtensions/vtkCameraManipulatorGUIHelper.cxx ParaViewCore/VTKExtensions/vtkCameraManipulatorGUIHelper.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkCameraManipulatorGUIHelper.h ParaViewCore/VTKExtensions/vtkCameraManipulatorGUIHelper.h +0 -0
- ParaViewCore/VTKExtensions/vtkCellIntegrator.cxx ParaViewCore/VTKExtensions/vtkCellIntegrator.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkCellIntegrator.h ParaViewCore/VTKExtensions/vtkCellIntegrator.h +0 -0
- ParaViewCore/VTKExtensions/vtkCleanArrays.cxx ParaViewCore/VTKExtensions/vtkCleanArrays.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkCleanArrays.h ParaViewCore/VTKExtensions/vtkCleanArrays.h +0 -0
- ParaViewCore/VTKExtensions/vtkCleanUnstructuredGrid.cxx ParaViewCore/VTKExtensions/vtkCleanUnstructuredGrid.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkCleanUnstructuredGrid.h ParaViewCore/VTKExtensions/vtkCleanUnstructuredGrid.h +0 -0
- ParaViewCore/VTKExtensions/vtkCompositeAnimationPlayer.cxx ParaViewCore/VTKExtensions/vtkCompositeAnimationPlayer.cxx +154 -0
- ParaViewCore/VTKExtensions/vtkCompositeAnimationPlayer.h ParaViewCore/VTKExtensions/vtkCompositeAnimationPlayer.h +96 -0
- ParaViewCore/VTKExtensions/vtkCompositeDataToUnstructuredGridFilter.cxx ...TKExtensions/vtkCompositeDataToUnstructuredGridFilter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkCompositeDataToUnstructuredGridFilter.h .../VTKExtensions/vtkCompositeDataToUnstructuredGridFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkContextNamedOptions.cxx ParaViewCore/VTKExtensions/vtkContextNamedOptions.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkContextNamedOptions.h ParaViewCore/VTKExtensions/vtkContextNamedOptions.h +0 -0
- ParaViewCore/VTKExtensions/vtkDataSetToRectilinearGrid.cxx ParaViewCore/VTKExtensions/vtkDataSetToRectilinearGrid.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkDataSetToRectilinearGrid.h ParaViewCore/VTKExtensions/vtkDataSetToRectilinearGrid.h +0 -0
- ParaViewCore/VTKExtensions/vtkEnzoReader.cxx ParaViewCore/VTKExtensions/vtkEnzoReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkEnzoReader.h ParaViewCore/VTKExtensions/vtkEnzoReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkEquivalenceSet.cxx ParaViewCore/VTKExtensions/vtkEquivalenceSet.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkEquivalenceSet.h ParaViewCore/VTKExtensions/vtkEquivalenceSet.h +0 -0
- ParaViewCore/VTKExtensions/vtkExodusFileSeriesReader.cxx ParaViewCore/VTKExtensions/vtkExodusFileSeriesReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkExodusFileSeriesReader.h ParaViewCore/VTKExtensions/vtkExodusFileSeriesReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkExtractHistogram.cxx ParaViewCore/VTKExtensions/vtkExtractHistogram.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkExtractHistogram.h ParaViewCore/VTKExtensions/vtkExtractHistogram.h +0 -0
- ParaViewCore/VTKExtensions/vtkExtractScatterPlot.cxx ParaViewCore/VTKExtensions/vtkExtractScatterPlot.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkExtractScatterPlot.h ParaViewCore/VTKExtensions/vtkExtractScatterPlot.h +0 -0
- ParaViewCore/VTKExtensions/vtkFileSequenceParser.cxx ParaViewCore/VTKExtensions/vtkFileSequenceParser.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkFileSequenceParser.h ParaViewCore/VTKExtensions/vtkFileSequenceParser.h +0 -0
- ParaViewCore/VTKExtensions/vtkFileSeriesReader.cxx ParaViewCore/VTKExtensions/vtkFileSeriesReader.cxx +856 -0
- ParaViewCore/VTKExtensions/vtkFileSeriesReader.h ParaViewCore/VTKExtensions/vtkFileSeriesReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkFileSeriesWriter.cxx ParaViewCore/VTKExtensions/vtkFileSeriesWriter.cxx +276 -0
- ParaViewCore/VTKExtensions/vtkFileSeriesWriter.h ParaViewCore/VTKExtensions/vtkFileSeriesWriter.h +115 -0
- ParaViewCore/VTKExtensions/vtkFlashContour.cxx ParaViewCore/VTKExtensions/vtkFlashContour.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkFlashContour.h ParaViewCore/VTKExtensions/vtkFlashContour.h +0 -0
- ParaViewCore/VTKExtensions/vtkFlashReader.cxx ParaViewCore/VTKExtensions/vtkFlashReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkFlashReader.h ParaViewCore/VTKExtensions/vtkFlashReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkGridConnectivity.cxx ParaViewCore/VTKExtensions/vtkGridConnectivity.cxx +1916 -0
- ParaViewCore/VTKExtensions/vtkGridConnectivity.h ParaViewCore/VTKExtensions/vtkGridConnectivity.h +0 -0
- ParaViewCore/VTKExtensions/vtkHierarchicalFractal.cxx ParaViewCore/VTKExtensions/vtkHierarchicalFractal.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkHierarchicalFractal.h ParaViewCore/VTKExtensions/vtkHierarchicalFractal.h +0 -0
- ParaViewCore/VTKExtensions/vtkIceTCompositePass.cxx ParaViewCore/VTKExtensions/vtkIceTCompositePass.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkIceTCompositePass.h ParaViewCore/VTKExtensions/vtkIceTCompositePass.h +0 -0
- ParaViewCore/VTKExtensions/vtkIceTCompositeZPassShader_fs.glsl ...iewCore/VTKExtensions/vtkIceTCompositeZPassShader_fs.glsl +0 -0
- ParaViewCore/VTKExtensions/vtkIceTConstants.h ParaViewCore/VTKExtensions/vtkIceTConstants.h +0 -0
- ParaViewCore/VTKExtensions/vtkIceTContext.cxx ParaViewCore/VTKExtensions/vtkIceTContext.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkIceTContext.h ParaViewCore/VTKExtensions/vtkIceTContext.h +0 -0
- ParaViewCore/VTKExtensions/vtkImageCompressor.cxx ParaViewCore/VTKExtensions/vtkImageCompressor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkImageCompressor.h ParaViewCore/VTKExtensions/vtkImageCompressor.h +0 -0
- ParaViewCore/VTKExtensions/vtkIntegrateAttributes.cxx ParaViewCore/VTKExtensions/vtkIntegrateAttributes.cxx +1188 -0
- ParaViewCore/VTKExtensions/vtkIntegrateAttributes.h ParaViewCore/VTKExtensions/vtkIntegrateAttributes.h +152 -0
- ParaViewCore/VTKExtensions/vtkIntegrateFlowThroughSurface.cxx ...ViewCore/VTKExtensions/vtkIntegrateFlowThroughSurface.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkIntegrateFlowThroughSurface.h ParaViewCore/VTKExtensions/vtkIntegrateFlowThroughSurface.h +0 -0
- ParaViewCore/VTKExtensions/vtkInteractorStyleTransferFunctionEditor.cxx ...TKExtensions/vtkInteractorStyleTransferFunctionEditor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkInteractorStyleTransferFunctionEditor.h .../VTKExtensions/vtkInteractorStyleTransferFunctionEditor.h +0 -0
- ParaViewCore/VTKExtensions/vtkIntersectFragments.cxx ParaViewCore/VTKExtensions/vtkIntersectFragments.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkIntersectFragments.h ParaViewCore/VTKExtensions/vtkIntersectFragments.h +0 -0
- ParaViewCore/VTKExtensions/vtkIsoVolume.cxx ParaViewCore/VTKExtensions/vtkIsoVolume.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkIsoVolume.h ParaViewCore/VTKExtensions/vtkIsoVolume.h +0 -0
- ParaViewCore/VTKExtensions/vtkKdTreeGenerator.cxx ParaViewCore/VTKExtensions/vtkKdTreeGenerator.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkKdTreeGenerator.h ParaViewCore/VTKExtensions/vtkKdTreeGenerator.h +0 -0
- ParaViewCore/VTKExtensions/vtkKdTreeManager.cxx ParaViewCore/VTKExtensions/vtkKdTreeManager.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkKdTreeManager.h ParaViewCore/VTKExtensions/vtkKdTreeManager.h +0 -0
- ParaViewCore/VTKExtensions/vtkMPICompositeManager.cxx ParaViewCore/VTKExtensions/vtkMPICompositeManager.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMPICompositeManager.h ParaViewCore/VTKExtensions/vtkMPICompositeManager.h +0 -0
- ParaViewCore/VTKExtensions/vtkMarkSelectedRows.cxx ParaViewCore/VTKExtensions/vtkMarkSelectedRows.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMarkSelectedRows.h ParaViewCore/VTKExtensions/vtkMarkSelectedRows.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceCommBuffer.cxx ...ViewCore/VTKExtensions/vtkMaterialInterfaceCommBuffer.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceCommBuffer.h ParaViewCore/VTKExtensions/vtkMaterialInterfaceCommBuffer.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceFilter.cxx ParaViewCore/VTKExtensions/vtkMaterialInterfaceFilter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceFilter.h ParaViewCore/VTKExtensions/vtkMaterialInterfaceFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceIdList.cxx ParaViewCore/VTKExtensions/vtkMaterialInterfaceIdList.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceIdList.h ParaViewCore/VTKExtensions/vtkMaterialInterfaceIdList.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceIdListItem.h ParaViewCore/VTKExtensions/vtkMaterialInterfaceIdListItem.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfacePieceLoading.cxx ...ewCore/VTKExtensions/vtkMaterialInterfacePieceLoading.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfacePieceLoading.h ...ViewCore/VTKExtensions/vtkMaterialInterfacePieceLoading.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfacePieceTransaction.cxx ...re/VTKExtensions/vtkMaterialInterfacePieceTransaction.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfacePieceTransaction.h ...Core/VTKExtensions/vtkMaterialInterfacePieceTransaction.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfacePieceTransactionMatrix.cxx ...Extensions/vtkMaterialInterfacePieceTransactionMatrix.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfacePieceTransactionMatrix.h ...TKExtensions/vtkMaterialInterfacePieceTransactionMatrix.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceProcessLoading.cxx ...Core/VTKExtensions/vtkMaterialInterfaceProcessLoading.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceProcessLoading.h ...ewCore/VTKExtensions/vtkMaterialInterfaceProcessLoading.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceProcessRing.cxx ...iewCore/VTKExtensions/vtkMaterialInterfaceProcessRing.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceProcessRing.h ParaViewCore/VTKExtensions/vtkMaterialInterfaceProcessRing.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceToProcMap.cxx ParaViewCore/VTKExtensions/vtkMaterialInterfaceToProcMap.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceToProcMap.h ParaViewCore/VTKExtensions/vtkMaterialInterfaceToProcMap.h +0 -0
- ParaViewCore/VTKExtensions/vtkMaterialInterfaceUtilities.hxx ParaViewCore/VTKExtensions/vtkMaterialInterfaceUtilities.hxx +0 -0
- ParaViewCore/VTKExtensions/vtkMemberFunctionCommand.h ParaViewCore/VTKExtensions/vtkMemberFunctionCommand.h +0 -0
- ParaViewCore/VTKExtensions/vtkMergeArrays.cxx ParaViewCore/VTKExtensions/vtkMergeArrays.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMergeArrays.h ParaViewCore/VTKExtensions/vtkMergeArrays.h +0 -0
- ParaViewCore/VTKExtensions/vtkMergeCompositeDataSet.cxx ParaViewCore/VTKExtensions/vtkMergeCompositeDataSet.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMergeCompositeDataSet.h ParaViewCore/VTKExtensions/vtkMergeCompositeDataSet.h +0 -0
- ParaViewCore/VTKExtensions/vtkMinMax.cxx ParaViewCore/VTKExtensions/vtkMinMax.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMinMax.h ParaViewCore/VTKExtensions/vtkMinMax.h +0 -0
- ParaViewCore/VTKExtensions/vtkMultiProcessControllerHelper.cxx ...iewCore/VTKExtensions/vtkMultiProcessControllerHelper.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkMultiProcessControllerHelper.h ParaViewCore/VTKExtensions/vtkMultiProcessControllerHelper.h +0 -0
- ParaViewCore/VTKExtensions/vtkOrderedCompositeDistributor.cxx ...ViewCore/VTKExtensions/vtkOrderedCompositeDistributor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkOrderedCompositeDistributor.h ParaViewCore/VTKExtensions/vtkOrderedCompositeDistributor.h +0 -0
- ParaViewCore/VTKExtensions/vtkPConvertSelection.cxx ParaViewCore/VTKExtensions/vtkPConvertSelection.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPConvertSelection.h ParaViewCore/VTKExtensions/vtkPConvertSelection.h +0 -0
- ParaViewCore/VTKExtensions/vtkPEnSightGoldBinaryReader.cxx ParaViewCore/VTKExtensions/vtkPEnSightGoldBinaryReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPEnSightGoldBinaryReader.h ParaViewCore/VTKExtensions/vtkPEnSightGoldBinaryReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkPEnSightGoldReader.cxx ParaViewCore/VTKExtensions/vtkPEnSightGoldReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPEnSightGoldReader.h ParaViewCore/VTKExtensions/vtkPEnSightGoldReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkPEnSightReader.cxx ParaViewCore/VTKExtensions/vtkPEnSightReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPEnSightReader.h ParaViewCore/VTKExtensions/vtkPEnSightReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkPExtractHistogram.cxx ParaViewCore/VTKExtensions/vtkPExtractHistogram.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPExtractHistogram.h ParaViewCore/VTKExtensions/vtkPExtractHistogram.h +0 -0
- ParaViewCore/VTKExtensions/vtkPGenericEnSightReader.cxx ParaViewCore/VTKExtensions/vtkPGenericEnSightReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPGenericEnSightReader.h ParaViewCore/VTKExtensions/vtkPGenericEnSightReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkPPhastaReader.cxx ParaViewCore/VTKExtensions/vtkPPhastaReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPPhastaReader.h ParaViewCore/VTKExtensions/vtkPPhastaReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkPSciVizContingencyStats.cxx ParaViewCore/VTKExtensions/vtkPSciVizContingencyStats.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPSciVizContingencyStats.h ParaViewCore/VTKExtensions/vtkPSciVizContingencyStats.h +0 -0
- ParaViewCore/VTKExtensions/vtkPSciVizDescriptiveStats.cxx ParaViewCore/VTKExtensions/vtkPSciVizDescriptiveStats.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPSciVizDescriptiveStats.h ParaViewCore/VTKExtensions/vtkPSciVizDescriptiveStats.h +0 -0
- ParaViewCore/VTKExtensions/vtkPSciVizKMeans.cxx ParaViewCore/VTKExtensions/vtkPSciVizKMeans.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPSciVizKMeans.h ParaViewCore/VTKExtensions/vtkPSciVizKMeans.h +0 -0
- ParaViewCore/VTKExtensions/vtkPSciVizMultiCorrelativeStats.cxx ...iewCore/VTKExtensions/vtkPSciVizMultiCorrelativeStats.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPSciVizMultiCorrelativeStats.h ParaViewCore/VTKExtensions/vtkPSciVizMultiCorrelativeStats.h +0 -0
- ParaViewCore/VTKExtensions/vtkPSciVizPCAStats.cxx ParaViewCore/VTKExtensions/vtkPSciVizPCAStats.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPSciVizPCAStats.h ParaViewCore/VTKExtensions/vtkPSciVizPCAStats.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVAMRDualClip.cxx ParaViewCore/VTKExtensions/vtkPVAMRDualClip.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVAMRDualClip.h ParaViewCore/VTKExtensions/vtkPVAMRDualClip.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVAnimationCue.cxx ParaViewCore/VTKExtensions/vtkPVAnimationCue.cxx +123 -0
- ParaViewCore/VTKExtensions/vtkPVAnimationCue.h ParaViewCore/VTKExtensions/vtkPVAnimationCue.h +102 -0
- ParaViewCore/VTKExtensions/vtkPVAnimationScene.cxx ParaViewCore/VTKExtensions/vtkPVAnimationScene.cxx +155 -0
- ParaViewCore/VTKExtensions/vtkPVAnimationScene.h ParaViewCore/VTKExtensions/vtkPVAnimationScene.h +96 -0
- ParaViewCore/VTKExtensions/vtkPVArrayCalculator.cxx ParaViewCore/VTKExtensions/vtkPVArrayCalculator.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVArrayCalculator.h ParaViewCore/VTKExtensions/vtkPVArrayCalculator.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVArrowSource.cxx ParaViewCore/VTKExtensions/vtkPVArrowSource.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVArrowSource.h ParaViewCore/VTKExtensions/vtkPVArrowSource.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVAxesActor.cxx ParaViewCore/VTKExtensions/vtkPVAxesActor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVAxesActor.h ParaViewCore/VTKExtensions/vtkPVAxesActor.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVAxesWidget.cxx ParaViewCore/VTKExtensions/vtkPVAxesWidget.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVAxesWidget.h ParaViewCore/VTKExtensions/vtkPVAxesWidget.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVBooleanKeyFrame.cxx ParaViewCore/VTKExtensions/vtkPVBooleanKeyFrame.cxx +60 -0
- ParaViewCore/VTKExtensions/vtkPVBooleanKeyFrame.h ParaViewCore/VTKExtensions/vtkPVBooleanKeyFrame.h +47 -0
- ParaViewCore/VTKExtensions/vtkPVBox.cxx ParaViewCore/VTKExtensions/vtkPVBox.cxx +86 -0
- ParaViewCore/VTKExtensions/vtkPVBox.h ParaViewCore/VTKExtensions/vtkPVBox.h +77 -0
- ParaViewCore/VTKExtensions/vtkPVCenterAxesActor.cxx ParaViewCore/VTKExtensions/vtkPVCenterAxesActor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVCenterAxesActor.h ParaViewCore/VTKExtensions/vtkPVCenterAxesActor.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVClipClosedSurface.cxx ParaViewCore/VTKExtensions/vtkPVClipClosedSurface.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVClipClosedSurface.h ParaViewCore/VTKExtensions/vtkPVClipClosedSurface.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVClipDataSet.cxx ParaViewCore/VTKExtensions/vtkPVClipDataSet.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVClipDataSet.h ParaViewCore/VTKExtensions/vtkPVClipDataSet.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVCompositeDataPipeline.cxx ParaViewCore/VTKExtensions/vtkPVCompositeDataPipeline.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVCompositeDataPipeline.h ParaViewCore/VTKExtensions/vtkPVCompositeDataPipeline.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVCompositeKeyFrame.cxx ParaViewCore/VTKExtensions/vtkPVCompositeKeyFrame.cxx +217 -0
- ParaViewCore/VTKExtensions/vtkPVCompositeKeyFrame.h ParaViewCore/VTKExtensions/vtkPVCompositeKeyFrame.h +103 -0
- ParaViewCore/VTKExtensions/vtkPVConnectivityFilter.cxx ParaViewCore/VTKExtensions/vtkPVConnectivityFilter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVConnectivityFilter.h ParaViewCore/VTKExtensions/vtkPVConnectivityFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVContourFilter.cxx ParaViewCore/VTKExtensions/vtkPVContourFilter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVContourFilter.h ParaViewCore/VTKExtensions/vtkPVContourFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVCueManipulator.cxx ParaViewCore/VTKExtensions/vtkPVCueManipulator.cxx +33 -0
- ParaViewCore/VTKExtensions/vtkPVCueManipulator.h ParaViewCore/VTKExtensions/vtkPVCueManipulator.h +90 -0
- ParaViewCore/VTKExtensions/vtkPVDReader.cxx ParaViewCore/VTKExtensions/vtkPVDReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVDReader.h ParaViewCore/VTKExtensions/vtkPVDReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVDefaultPass.cxx ParaViewCore/VTKExtensions/vtkPVDefaultPass.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVDefaultPass.h ParaViewCore/VTKExtensions/vtkPVDefaultPass.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVEnSightMasterServerReader.cxx ...ViewCore/VTKExtensions/vtkPVEnSightMasterServerReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVEnSightMasterServerReader.h ParaViewCore/VTKExtensions/vtkPVEnSightMasterServerReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVEnSightMasterServerReader2.cxx ...iewCore/VTKExtensions/vtkPVEnSightMasterServerReader2.cxx +810 -0
- ParaViewCore/VTKExtensions/vtkPVEnSightMasterServerReader2.h ParaViewCore/VTKExtensions/vtkPVEnSightMasterServerReader2.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVEnSightMasterServerTranslator.cxx ...Core/VTKExtensions/vtkPVEnSightMasterServerTranslator.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVEnSightMasterServerTranslator.h ...ewCore/VTKExtensions/vtkPVEnSightMasterServerTranslator.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVExponentialKeyFrame.cxx ParaViewCore/VTKExtensions/vtkPVExponentialKeyFrame.cxx +102 -0
- ParaViewCore/VTKExtensions/vtkPVExponentialKeyFrame.h ParaViewCore/VTKExtensions/vtkPVExponentialKeyFrame.h +63 -0
- ParaViewCore/VTKExtensions/vtkPVExtentTranslator.cxx ParaViewCore/VTKExtensions/vtkPVExtentTranslator.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVExtentTranslator.h ParaViewCore/VTKExtensions/vtkPVExtentTranslator.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVExtractSelection.cxx ParaViewCore/VTKExtensions/vtkPVExtractSelection.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVExtractSelection.h ParaViewCore/VTKExtensions/vtkPVExtractSelection.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVExtractVOI.cxx ParaViewCore/VTKExtensions/vtkPVExtractVOI.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVExtractVOI.h ParaViewCore/VTKExtensions/vtkPVExtractVOI.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVFrustumActor.cxx ParaViewCore/VTKExtensions/vtkPVFrustumActor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVFrustumActor.h ParaViewCore/VTKExtensions/vtkPVFrustumActor.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVGenericRenderWindowInteractor.cxx ...Core/VTKExtensions/vtkPVGenericRenderWindowInteractor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVGenericRenderWindowInteractor.h ...ewCore/VTKExtensions/vtkPVGenericRenderWindowInteractor.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVGeometryFilter.cxx ParaViewCore/VTKExtensions/vtkPVGeometryFilter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVGeometryFilter.h ParaViewCore/VTKExtensions/vtkPVGeometryFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVGlyphFilter.cxx ParaViewCore/VTKExtensions/vtkPVGlyphFilter.cxx +504 -0
- ParaViewCore/VTKExtensions/vtkPVGlyphFilter.h ParaViewCore/VTKExtensions/vtkPVGlyphFilter.h +116 -0
- ParaViewCore/VTKExtensions/vtkPVHardwareSelector.cxx ParaViewCore/VTKExtensions/vtkPVHardwareSelector.cxx +67 -0
- ParaViewCore/VTKExtensions/vtkPVHardwareSelector.h ParaViewCore/VTKExtensions/vtkPVHardwareSelector.h +55 -0
- ParaViewCore/VTKExtensions/vtkPVInteractorStyle.cxx ParaViewCore/VTKExtensions/vtkPVInteractorStyle.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVInteractorStyle.h ParaViewCore/VTKExtensions/vtkPVInteractorStyle.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVJoystickFly.cxx ParaViewCore/VTKExtensions/vtkPVJoystickFly.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVJoystickFly.h ParaViewCore/VTKExtensions/vtkPVJoystickFly.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVJoystickFlyIn.cxx ParaViewCore/VTKExtensions/vtkPVJoystickFlyIn.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVJoystickFlyIn.h ParaViewCore/VTKExtensions/vtkPVJoystickFlyIn.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVJoystickFlyOut.cxx ParaViewCore/VTKExtensions/vtkPVJoystickFlyOut.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVJoystickFlyOut.h ParaViewCore/VTKExtensions/vtkPVJoystickFlyOut.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVKeyFrame.cxx ParaViewCore/VTKExtensions/vtkPVKeyFrame.cxx +95 -0
- ParaViewCore/VTKExtensions/vtkPVKeyFrame.h ParaViewCore/VTKExtensions/vtkPVKeyFrame.h +85 -0
- ParaViewCore/VTKExtensions/vtkPVKeyFrameAnimationCue.cxx ParaViewCore/VTKExtensions/vtkPVKeyFrameAnimationCue.cxx +67 -0
- ParaViewCore/VTKExtensions/vtkPVKeyFrameAnimationCue.h ParaViewCore/VTKExtensions/vtkPVKeyFrameAnimationCue.h +54 -0
- ParaViewCore/VTKExtensions/vtkPVKeyFrameCueManipulator.cxx ParaViewCore/VTKExtensions/vtkPVKeyFrameCueManipulator.cxx +419 -0
- ParaViewCore/VTKExtensions/vtkPVKeyFrameCueManipulator.h ParaViewCore/VTKExtensions/vtkPVKeyFrameCueManipulator.h +155 -0
- ParaViewCore/VTKExtensions/vtkPVLODActor.cxx ParaViewCore/VTKExtensions/vtkPVLODActor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVLODActor.h ParaViewCore/VTKExtensions/vtkPVLODActor.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVLODVolume.cxx ParaViewCore/VTKExtensions/vtkPVLODVolume.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVLODVolume.h ParaViewCore/VTKExtensions/vtkPVLODVolume.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVLinearExtrusionFilter.cxx ParaViewCore/VTKExtensions/vtkPVLinearExtrusionFilter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVLinearExtrusionFilter.h ParaViewCore/VTKExtensions/vtkPVLinearExtrusionFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVMergeTables.cxx ParaViewCore/VTKExtensions/vtkPVMergeTables.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVMergeTables.h ParaViewCore/VTKExtensions/vtkPVMergeTables.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVNullSource.cxx ParaViewCore/VTKExtensions/vtkPVNullSource.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVNullSource.h ParaViewCore/VTKExtensions/vtkPVNullSource.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVPlane.cxx ParaViewCore/VTKExtensions/vtkPVPlane.cxx +70 -0
- ParaViewCore/VTKExtensions/vtkPVPlane.h ParaViewCore/VTKExtensions/vtkPVPlane.h +76 -0
- ParaViewCore/VTKExtensions/vtkPVPlotTime.cxx ParaViewCore/VTKExtensions/vtkPVPlotTime.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVPlotTime.h ParaViewCore/VTKExtensions/vtkPVPlotTime.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVPostFilter.cxx ParaViewCore/VTKExtensions/vtkPVPostFilter.cxx +423 -0
- ParaViewCore/VTKExtensions/vtkPVPostFilter.h ParaViewCore/VTKExtensions/vtkPVPostFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVPostFilterExecutive.cxx ParaViewCore/VTKExtensions/vtkPVPostFilterExecutive.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVPostFilterExecutive.h ParaViewCore/VTKExtensions/vtkPVPostFilterExecutive.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVRampKeyFrame.cxx ParaViewCore/VTKExtensions/vtkPVRampKeyFrame.cxx +82 -0
- ParaViewCore/VTKExtensions/vtkPVRampKeyFrame.h ParaViewCore/VTKExtensions/vtkPVRampKeyFrame.h +48 -0
- ParaViewCore/VTKExtensions/vtkPVRecoverGeometryWireframe.cxx ParaViewCore/VTKExtensions/vtkPVRecoverGeometryWireframe.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVRecoverGeometryWireframe.h ParaViewCore/VTKExtensions/vtkPVRecoverGeometryWireframe.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVRenderViewProxy.cxx ParaViewCore/VTKExtensions/vtkPVRenderViewProxy.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVRenderViewProxy.h ParaViewCore/VTKExtensions/vtkPVRenderViewProxy.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVScalarBarActor.cxx ParaViewCore/VTKExtensions/vtkPVScalarBarActor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVScalarBarActor.h ParaViewCore/VTKExtensions/vtkPVScalarBarActor.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVSelectionSource.cxx ParaViewCore/VTKExtensions/vtkPVSelectionSource.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVSelectionSource.h ParaViewCore/VTKExtensions/vtkPVSelectionSource.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVSinusoidKeyFrame.cxx ParaViewCore/VTKExtensions/vtkPVSinusoidKeyFrame.cxx +96 -0
- ParaViewCore/VTKExtensions/vtkPVSinusoidKeyFrame.h ParaViewCore/VTKExtensions/vtkPVSinusoidKeyFrame.h +72 -0
- ParaViewCore/VTKExtensions/vtkPVTextSource.cxx ParaViewCore/VTKExtensions/vtkPVTextSource.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVTextSource.h ParaViewCore/VTKExtensions/vtkPVTextSource.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballMoveActor.cxx ParaViewCore/VTKExtensions/vtkPVTrackballMoveActor.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballMoveActor.h ParaViewCore/VTKExtensions/vtkPVTrackballMoveActor.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballMultiRotate.cxx ParaViewCore/VTKExtensions/vtkPVTrackballMultiRotate.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballMultiRotate.h ParaViewCore/VTKExtensions/vtkPVTrackballMultiRotate.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballPan.cxx ParaViewCore/VTKExtensions/vtkPVTrackballPan.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballPan.h ParaViewCore/VTKExtensions/vtkPVTrackballPan.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballRoll.cxx ParaViewCore/VTKExtensions/vtkPVTrackballRoll.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballRoll.h ParaViewCore/VTKExtensions/vtkPVTrackballRoll.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballRotate.cxx ParaViewCore/VTKExtensions/vtkPVTrackballRotate.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballRotate.h ParaViewCore/VTKExtensions/vtkPVTrackballRotate.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballZoom.cxx ParaViewCore/VTKExtensions/vtkPVTrackballZoom.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrackballZoom.h ParaViewCore/VTKExtensions/vtkPVTrackballZoom.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVTransform.cxx ParaViewCore/VTKExtensions/vtkPVTransform.cxx +114 -0
- ParaViewCore/VTKExtensions/vtkPVTransform.h ParaViewCore/VTKExtensions/vtkPVTransform.h +71 -0
- ParaViewCore/VTKExtensions/vtkPVTrivialExtentTranslator.cxx ParaViewCore/VTKExtensions/vtkPVTrivialExtentTranslator.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrivialExtentTranslator.h ParaViewCore/VTKExtensions/vtkPVTrivialExtentTranslator.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrivialProducer.cxx ParaViewCore/VTKExtensions/vtkPVTrivialProducer.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPVTrivialProducer.h ParaViewCore/VTKExtensions/vtkPVTrivialProducer.h +0 -0
- ParaViewCore/VTKExtensions/vtkPVUpdateSuppressor.cxx ParaViewCore/VTKExtensions/vtkPVUpdateSuppressor.cxx +230 -0
- ParaViewCore/VTKExtensions/vtkPVUpdateSuppressor.h ParaViewCore/VTKExtensions/vtkPVUpdateSuppressor.h +0 -0
- ParaViewCore/VTKExtensions/vtkParallelSerialWriter.cxx ParaViewCore/VTKExtensions/vtkParallelSerialWriter.cxx +332 -0
- ParaViewCore/VTKExtensions/vtkParallelSerialWriter.h ParaViewCore/VTKExtensions/vtkParallelSerialWriter.h +150 -0
- ParaViewCore/VTKExtensions/vtkPhastaReader.cxx ParaViewCore/VTKExtensions/vtkPhastaReader.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPhastaReader.h ParaViewCore/VTKExtensions/vtkPhastaReader.h +0 -0
- ParaViewCore/VTKExtensions/vtkPlotEdges.cxx ParaViewCore/VTKExtensions/vtkPlotEdges.cxx +1206 -0
- ParaViewCore/VTKExtensions/vtkPlotEdges.h ParaViewCore/VTKExtensions/vtkPlotEdges.h +0 -0
- ParaViewCore/VTKExtensions/vtkPointHandleRepresentationSphere.cxx ...Core/VTKExtensions/vtkPointHandleRepresentationSphere.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPointHandleRepresentationSphere.h ...ewCore/VTKExtensions/vtkPointHandleRepresentationSphere.h +0 -0
- ParaViewCore/VTKExtensions/vtkPolyLineToRectilinearGridFilter.cxx ...Core/VTKExtensions/vtkPolyLineToRectilinearGridFilter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPolyLineToRectilinearGridFilter.h ...ewCore/VTKExtensions/vtkPolyLineToRectilinearGridFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkPriorityHelper.cxx ParaViewCore/VTKExtensions/vtkPriorityHelper.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkPriorityHelper.h ParaViewCore/VTKExtensions/vtkPriorityHelper.h +0 -0
- ParaViewCore/VTKExtensions/vtkQuerySelectionSource.cxx ParaViewCore/VTKExtensions/vtkQuerySelectionSource.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkQuerySelectionSource.h ParaViewCore/VTKExtensions/vtkQuerySelectionSource.h +0 -0
- ParaViewCore/VTKExtensions/vtkRealtimeAnimationPlayer.cxx ParaViewCore/VTKExtensions/vtkRealtimeAnimationPlayer.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkRealtimeAnimationPlayer.h ParaViewCore/VTKExtensions/vtkRealtimeAnimationPlayer.h +0 -0
- ParaViewCore/VTKExtensions/vtkRectilinearGridConnectivity.cxx ...ViewCore/VTKExtensions/vtkRectilinearGridConnectivity.cxx +4544 -0
- ParaViewCore/VTKExtensions/vtkRectilinearGridConnectivity.h ParaViewCore/VTKExtensions/vtkRectilinearGridConnectivity.h +0 -0
- ParaViewCore/VTKExtensions/vtkRedistributePolyData.cxx ParaViewCore/VTKExtensions/vtkRedistributePolyData.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkRedistributePolyData.h ParaViewCore/VTKExtensions/vtkRedistributePolyData.h +0 -0
- ParaViewCore/VTKExtensions/vtkReductionFilter.cxx ParaViewCore/VTKExtensions/vtkReductionFilter.cxx +456 -0
- ParaViewCore/VTKExtensions/vtkReductionFilter.h ParaViewCore/VTKExtensions/vtkReductionFilter.h +0 -0
- ParaViewCore/VTKExtensions/vtkScatterPlotMapper.cxx ParaViewCore/VTKExtensions/vtkScatterPlotMapper.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkScatterPlotMapper.h ParaViewCore/VTKExtensions/vtkScatterPlotMapper.h +0 -0
- ParaViewCore/VTKExtensions/vtkScatterPlotPainter.cxx ParaViewCore/VTKExtensions/vtkScatterPlotPainter.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkScatterPlotPainter.h ParaViewCore/VTKExtensions/vtkScatterPlotPainter.h +0 -0
- ParaViewCore/VTKExtensions/vtkSciVizStatistics.cxx ParaViewCore/VTKExtensions/vtkSciVizStatistics.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkSciVizStatistics.h ParaViewCore/VTKExtensions/vtkSciVizStatistics.h +0 -0
- ParaViewCore/VTKExtensions/vtkSciVizStatisticsPrivate.h ParaViewCore/VTKExtensions/vtkSciVizStatisticsPrivate.h +0 -0
- ParaViewCore/VTKExtensions/vtkSelectionConverter.cxx ParaViewCore/VTKExtensions/vtkSelectionConverter.cxx +346 -0
- ParaViewCore/VTKExtensions/vtkSelectionConverter.h ParaViewCore/VTKExtensions/vtkSelectionConverter.h +0 -0
- ParaViewCore/VTKExtensions/vtkSelectionSerializer.cxx ParaViewCore/VTKExtensions/vtkSelectionSerializer.cxx +435 -0
- ParaViewCore/VTKExtensions/vtkSelectionSerializer.h ParaViewCore/VTKExtensions/vtkSelectionSerializer.h +0 -0
- ParaViewCore/VTKExtensions/vtkSequenceAnimationPlayer.cxx ParaViewCore/VTKExtensions/vtkSequenceAnimationPlayer.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkSequenceAnimationPlayer.h ParaViewCore/VTKExtensions/vtkSequenceAnimationPlayer.h +0 -0
- ParaViewCore/VTKExtensions/vtkSortedTableStreamer.cxx ParaViewCore/VTKExtensions/vtkSortedTableStreamer.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkSortedTableStreamer.h ParaViewCore/VTKExtensions/vtkSortedTableStreamer.h +0 -0
- ParaViewCore/VTKExtensions/vtkSpyPlotBlock.cxx ParaViewCore/VTKExtensions/vtkSpyPlotBlock.cxx +0 -0
- ParaViewCore/VTKExtensions/vtkSpyPlotBlock.h ParaViewCore/VTKExtensions/vtkSpyPlotBlock.h +0 -0
- No files found.
Too many changes to show.
To preserve performance only 1000 of 1000+ files are displayed.