vtkPolyDataSourceWidget.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00048 #ifndef __vtkPolyDataSourceWidget_h
00049 #define __vtkPolyDataSourceWidget_h
00050
00051 #include "vtk3DWidget.h"
00052
00053 class vtkPolyDataSource;
00054
00055 class VTK_HYBRID_EXPORT vtkPolyDataSourceWidget : public vtk3DWidget
00056 {
00057 public:
00058 vtkTypeRevisionMacro(vtkPolyDataSourceWidget, vtk3DWidget);
00059 void PrintSelf(ostream& os, vtkIndent indent);
00060
00063 virtual void PlaceWidget();
00064
00069 virtual void PlaceWidget(double bounds[6]) = 0;
00070
00072
00073 void PlaceWidget(double xmin, double xmax, double ymin, double ymax,
00074 double zmin, double zmax)
00075 {this->Superclass::PlaceWidget(xmin,xmax,ymin,ymax,zmin,zmax);}
00077
00084 virtual vtkPolyDataSource* GetPolyDataSource() = 0;
00085
00089 virtual void UpdatePlacement() = 0;
00090
00091 protected:
00094 vtkPolyDataSourceWidget();
00095
00096 private:
00097
00098
00099
00100
00101 vtkPolyDataSourceWidget(const vtkPolyDataSourceWidget&);
00102 void operator=(const vtkPolyDataSourceWidget&);
00103 };
00104
00105 #endif