ParaView
vtkPVRepresentationAnimationHelper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVRepresentationAnimationHelper.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
26 #ifndef vtkPVRepresentationAnimationHelper_h
27 #define vtkPVRepresentationAnimationHelper_h
28 
29 #include "vtkPVAnimationModule.h" //needed for exports
30 #include "vtkSMProxy.h"
31 #include "vtkWeakPointer.h" // needed for vtkWeakPointer.
32 
33 class VTKPVANIMATION_EXPORT vtkPVRepresentationAnimationHelper : public vtkSMProxy
34 {
35 public:
38  void PrintSelf(ostream& os, vtkIndent indent);
39 
41 
44  void SetVisibility(int);
45  void SetOpacity(double);
46  void SetSourceProxy(vtkSMProxy* proxy);
48 
49 protected:
52 
53  vtkWeakPointer<vtkSMProxy> SourceProxy;
54 
55 private:
57  void operator=(const vtkPVRepresentationAnimationHelper&) VTK_DELETE_FUNCTION;
58 };
59 
60 #endif
helper proxy used to animate properties on the representations for any source.
void operator=(const vtkSMProxy &) VTK_DELETE_FUNCTION
void PrintSelf(ostream &os, vtkIndent indent)
static vtkSMProxy * New()
proxy for a VTK object(s) on a server
Definition: vtkSMProxy.h:152