KWWidgets
debian/kwwidgets-examples/usr/share/doc/kwwidgets-examples/examples/Cxx/Theme/vtkKWMyBlueTheme.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Module: $RCSfile: vtkKWMyBlueTheme.h,v $
4 
5  Copyright (c) Kitware, Inc.
6  All rights reserved.
7  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
8 
9  This software is distributed WITHOUT ANY WARRANTY; without even
10  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11  PURPOSE. See the above copyright notice for more information.
12 
13 =========================================================================*/
14 // .NAME vtkKWMyBlueTheme - a theme class
15 // .SECTION Description
16 // .SECTION Thanks
17 // This work is part of the National Alliance for Medical Image
18 // Computing (NAMIC), funded by the National Institutes of Health
19 // through the NIH Roadmap for Medical Research, Grant U54 EB005149.
20 // Information on the National Centers for Biomedical Computing
21 // can be obtained from http://nihroadmap.nih.gov/bioinformatics.
22 
23 #ifndef __vtkKWMyBlueTheme_h
24 #define __vtkKWMyBlueTheme_h
25 
26 #include "vtkKWTheme.h"
27 
29 {
30 public:
31  static vtkKWMyBlueTheme* New();
32  vtkTypeRevisionMacro(vtkKWMyBlueTheme, vtkKWTheme);
33  void PrintSelf(ostream& os, vtkIndent indent);
34 
35  // Description:
36  // Ask the theme to install itself
37  virtual void Install();
38 
39 protected:
42 
43 private:
44 
45  vtkKWMyBlueTheme(const vtkKWMyBlueTheme&); // Not implemented
46  void operator=(const vtkKWMyBlueTheme&); // Not implemented
47 };
48 
49 #endif