Main Page Class Hierarchy Alphabetical List Compound List File List Compound Members File Members Related Pages
Hybrid/vtkPolyDataSourceWidget.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00051 #ifndef __vtkPolyDataSourceWidget_h
00052 #define __vtkPolyDataSourceWidget_h
00053
00054 #include "vtk3DWidget.h"
00055
00056 class vtkPolyDataSource;
00057
00058 class VTK_EXPORT vtkPolyDataSourceWidget : public vtk3DWidget
00059 {
00060 public:
00061 vtkTypeRevisionMacro(vtkPolyDataSourceWidget, vtk3DWidget);
00062 void PrintSelf(ostream& os, vtkIndent indent);
00063
00066 virtual void PlaceWidget();
00067
00072 virtual void PlaceWidget(float bounds[6]) = 0;
00073
00075
00076 void PlaceWidget(float xmin, float xmax, float ymin, float ymax,
00077 float zmin, float zmax)
00078 {this->Superclass::PlaceWidget(xmin,xmax,ymin,ymax,zmin,zmax);}
00080
00087 virtual vtkPolyDataSource* GetPolyDataSource() = 0;
00088
00092 virtual void UpdatePlacement() = 0;
00093
00094 protected:
00097 vtkPolyDataSourceWidget();
00098
00099 private:
00100
00101
00102
00103
00104 vtkPolyDataSourceWidget(const vtkPolyDataSourceWidget&);
00105 void operator=(const vtkPolyDataSourceWidget&);
00106 };
00107
00108 #endif