KWWidgets
Examples/Cxx/WizardDialog/vtkKWMyResultStep.h
Go to the documentation of this file.
1 #ifndef __vtkKWMyResultStep_h
2 #define __vtkKWMyResultStep_h
3 
4 #include "vtkKWWizardStep.h"
5 
7 class vtkKWLabel;
8 
10 {
11 public:
12  static vtkKWMyResultStep* New();
13  vtkTypeRevisionMacro(vtkKWMyResultStep,vtkKWWizardStep);
14 
15  // Description:
16  // Show/hide the UI, check if this finish step is reachable.
17  virtual void ShowUserInterface();
18  virtual void HideUserInterface();
19  virtual int CanGoToSelf();
20 
21  // Description:
22  // Set/Get the wizard widget this step should install its UI in.
23  vtkGetObjectMacro(WizardDialog, vtkKWMyWizardDialog);
24  virtual void SetWizardDialog(vtkKWMyWizardDialog*);
25 
26 protected:
29 
32 
33 private:
34  vtkKWMyResultStep(const vtkKWMyResultStep&); // Not implemented.
35  void operator=(const vtkKWMyResultStep&); // Not implemented.
36 };
37 
38 #endif