VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkLogoWidget.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 =========================================================================*/ 00031 #ifndef __vtkLogoWidget_h 00032 #define __vtkLogoWidget_h 00033 00034 #include "vtkInteractionWidgetsModule.h" // For export macro 00035 #include "vtkBorderWidget.h" 00036 00037 class vtkLogoRepresentation; 00038 00039 00040 class VTKINTERACTIONWIDGETS_EXPORT vtkLogoWidget : public vtkBorderWidget 00041 { 00042 public: 00044 static vtkLogoWidget *New(); 00045 00047 00048 vtkTypeMacro(vtkLogoWidget,vtkBorderWidget); 00049 void PrintSelf(ostream& os, vtkIndent indent); 00051 00053 00056 void SetRepresentation(vtkLogoRepresentation *r) 00057 {this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));} 00059 00061 void CreateDefaultRepresentation(); 00062 00063 protected: 00064 vtkLogoWidget(); 00065 ~vtkLogoWidget(); 00066 00067 private: 00068 vtkLogoWidget(const vtkLogoWidget&); //Not implemented 00069 void operator=(const vtkLogoWidget&); //Not implemented 00070 }; 00071 00072 #endif