VTK
dox/Widgets/vtkLogoWidget.h
Go to the documentation of this file.
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 "vtkBorderWidget.h"
00035 
00036 class vtkLogoRepresentation;
00037 
00038 
00039 class VTK_WIDGETS_EXPORT vtkLogoWidget : public vtkBorderWidget
00040 {
00041 public:
00043   static vtkLogoWidget *New();
00044 
00046 
00047   vtkTypeMacro(vtkLogoWidget,vtkBorderWidget);
00048   void PrintSelf(ostream& os, vtkIndent indent);
00050 
00052 
00055   void SetRepresentation(vtkLogoRepresentation *r)
00056     {this->Superclass::SetWidgetRepresentation(reinterpret_cast<vtkWidgetRepresentation*>(r));}
00058   
00060   void CreateDefaultRepresentation();
00061 
00062 protected:
00063   vtkLogoWidget();
00064   ~vtkLogoWidget();
00065 
00066 private:
00067   vtkLogoWidget(const vtkLogoWidget&);  //Not implemented
00068   void operator=(const vtkLogoWidget&);  //Not implemented
00069 };
00070 
00071 #endif