00001 /*========================================================================= 00002 00003 Program: ParaView 00004 Module: $RCSfile: vtkSMCaveRenderModuleProxy.h,v $ 00005 00006 Copyright (c) Kitware, Inc. 00007 All rights reserved. 00008 See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details. 00009 00010 This software is distributed WITHOUT ANY WARRANTY; without even 00011 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 00012 PURPOSE. See the above copyright notice for more information. 00013 00014 =========================================================================*/ 00023 #ifndef __vtkSMCaveRenderModuleProxy_h 00024 #define __vtkSMCaveRenderModuleProxy_h 00025 00026 #include "vtkSMCompositeRenderModuleProxy.h" 00027 00028 class vtkPVServerOptionsInternals; 00029 00030 class VTK_EXPORT vtkSMCaveRenderModuleProxy : public vtkSMCompositeRenderModuleProxy 00031 { 00032 public: 00033 static vtkSMCaveRenderModuleProxy* New(); 00034 vtkTypeRevisionMacro(vtkSMCaveRenderModuleProxy, vtkSMCompositeRenderModuleProxy); 00035 void PrintSelf(ostream& os, vtkIndent indent); 00036 00037 protected: 00038 vtkSMCaveRenderModuleProxy(); 00039 ~vtkSMCaveRenderModuleProxy(); 00040 00045 virtual void CreateCompositeManager(); 00046 00049 virtual void InitializeCompositingPipeline(); 00050 00051 void LoadConfigurationFile(int numDisplays); 00052 void ConfigureFromServerInformation(); 00053 00055 virtual int GetLocalRenderDecision(unsigned long, int); 00056 private: 00057 vtkSMCaveRenderModuleProxy(const vtkSMCaveRenderModuleProxy&); // Not implemented. 00058 void operator=(const vtkSMCaveRenderModuleProxy&); // Not implemented. 00059 00060 vtkPVServerOptionsInternals* CaveInternals; 00061 }; 00062 00063 #endif 00064