00001 /*========================================================================= 00002 00003 Module: $RCSfile: vtkKWWizardDialog.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 =========================================================================*/ 00029 #ifndef __vtkKWWizardDialog_h 00030 #define __vtkKWWizardDialog_h 00031 00032 #include "vtkKWDialog.h" 00033 00034 class vtkKWWizardWorkflow; 00035 class vtkKWWizardWidget; 00036 00037 class KWWidgets_EXPORT vtkKWWizardDialog : public vtkKWDialog 00038 { 00039 // @cond section_public 00040 public: 00041 static vtkKWWizardDialog* New(); 00042 vtkTypeRevisionMacro(vtkKWWizardDialog,vtkKWDialog); 00043 void PrintSelf(ostream& os, vtkIndent indent); 00044 00046 00047 vtkGetObjectMacro(WizardWidget, vtkKWWizardWidget); 00049 00051 virtual vtkKWWizardWorkflow* GetWizardWorkflow(); 00052 00059 virtual void UpdateEnableState(); 00060 00061 // @endcond 00062 // @cond section_protected 00063 protected: 00064 vtkKWWizardDialog(); 00065 ~vtkKWWizardDialog(); 00066 00068 virtual void CreateWidget(); 00069 00070 vtkKWWizardWidget *WizardWidget; 00071 00072 // @endcond 00073 // @cond section_private 00074 private: 00075 vtkKWWizardDialog(const vtkKWWizardDialog&); // Not implemented 00076 void operator=(const vtkKWWizardDialog&); // Not Implemented 00077 }; 00078 00079 #endif 00080 // @endcond
1.6.1