KWWidgets
Examples/Cxx/Theme/vtkKWMyGreenTheme.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Module:    $RCSfile: vtkKWMyGreenTheme.h,v $
00004 
00005   Copyright (c) Kitware, Inc.
00006   All rights reserved.
00007   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00008 
00009      This software is distributed WITHOUT ANY WARRANTY; without even
00010      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00011      PURPOSE.  See the above copyright notice for more information.
00012 
00013 =========================================================================*/
00014 // .NAME vtkKWMyGreenTheme - a theme class
00015 // .SECTION Description
00016 // .SECTION Thanks
00017 // This work is part of the National Alliance for Medical Image
00018 // Computing (NAMIC), funded by the National Institutes of Health
00019 // through the NIH Roadmap for Medical Research, Grant U54 EB005149.
00020 // Information on the National Centers for Biomedical Computing
00021 // can be obtained from http://nihroadmap.nih.gov/bioinformatics.
00022 
00023 #ifndef __vtkKWMyGreenTheme_h
00024 #define __vtkKWMyGreenTheme_h
00025 
00026 #include "vtkKWTheme.h"
00027 
00028 class vtkKWMyGreenTheme : public vtkKWTheme
00029 {
00030 public:
00031   static vtkKWMyGreenTheme* New();
00032   vtkTypeRevisionMacro(vtkKWMyGreenTheme, vtkKWTheme);
00033   void PrintSelf(ostream& os, vtkIndent indent);
00034 
00035   // Description:
00036   // Ask the theme to install itself
00037   virtual void Install();
00038 
00039 protected:
00040   vtkKWMyGreenTheme() {};
00041   ~vtkKWMyGreenTheme() {};
00042 
00043 private:
00044 
00045   vtkKWMyGreenTheme(const vtkKWMyGreenTheme&); // Not implemented
00046   void operator=(const vtkKWMyGreenTheme&); // Not implemented
00047 };
00048 
00049 #endif