dox/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
00040
#ifndef __vtkPolyDataSourceWidget_h
00041
#define __vtkPolyDataSourceWidget_h
00042
00043
#include "vtk3DWidget.h"
00044
00045
class vtkPolyDataSource;
00046
00047 class VTK_HYBRID_EXPORT vtkPolyDataSourceWidget :
public vtk3DWidget
00048 {
00049
public:
00050 vtkTypeRevisionMacro(vtkPolyDataSourceWidget,
vtk3DWidget);
00051
void PrintSelf(ostream& os,
vtkIndent indent);
00052
00055
virtual void PlaceWidget();
00056
00061
virtual void PlaceWidget(
float bounds[6]) = 0;
00062
00064
00065 void PlaceWidget(
float xmin,
float xmax,
float ymin,
float ymax,
00066
float zmin,
float zmax)
00067 {this->Superclass::PlaceWidget(xmin,xmax,ymin,ymax,zmin,zmax);}
00069
00076
virtual vtkPolyDataSource* GetPolyDataSource() = 0;
00077
00081
virtual void UpdatePlacement() = 0;
00082
00083
protected:
00086 vtkPolyDataSourceWidget();
00087
00088
private:
00089
00090
00091
00092
00093 vtkPolyDataSourceWidget(
const vtkPolyDataSourceWidget&);
00094
void operator=(
const vtkPolyDataSourceWidget&);
00095 };
00096
00097
#endif