VTK
dox/Widgets/vtkResliceCursorThickLineRepresentation.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkResliceCursorLineRepresentation.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm 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 =========================================================================*/
00034 #ifndef __vtkResliceCursorThickLineRepresentation_h
00035 #define __vtkResliceCursorThickLineRepresentation_h
00036 
00037 #include "vtkResliceCursorLineRepresentation.h"
00038 
00039 class VTK_WIDGETS_EXPORT vtkResliceCursorThickLineRepresentation : public vtkResliceCursorLineRepresentation
00040 {
00041 public:
00043   static vtkResliceCursorThickLineRepresentation *New();
00044 
00046 
00047   vtkTypeMacro(vtkResliceCursorThickLineRepresentation,vtkResliceCursorLineRepresentation);
00048   void PrintSelf(ostream& os, vtkIndent indent);
00050 
00054   virtual void CreateDefaultResliceAlgorithm();
00055 
00057 
00059   virtual void SetResliceParameters(
00060       double outputSpacingX, double outputSpacingY,
00061       int extentX, int extentY );
00063 
00064 protected:
00065   vtkResliceCursorThickLineRepresentation();
00066   ~vtkResliceCursorThickLineRepresentation();
00067 
00068 private:
00069   vtkResliceCursorThickLineRepresentation(const vtkResliceCursorThickLineRepresentation&);  //Not implemented
00070   void operator=(const vtkResliceCursorThickLineRepresentation&);  //Not implemented
00071 };
00072 
00073 #endif