Salome HOME
0ae3183a952bf8c02e53eb2f08880988e57c1f54
[tools/install.git] / src / SALOME_HelpWindow.hxx
1 //  File      : SALOME_HelpWindow.hxx
2 //  Created   : Thu Dec 18 12:01:00 2002
3 //  Author    : Vadim SANDLER
4 //  Project   : SALOME
5 //  Module    : Installation Wizard
6 //  Copyright : 2004-2005 CEA
7
8 #ifndef __SALOME_HelpWindow
9 #define __SALOME_HelpWindow
10
11 #include <qmainwindow.h>
12
13 /*!
14   Install Wizard's help window class
15 */
16 class QTextBrowser;
17 class SALOME_InstallWizard;
18 class HelpWindow : public QMainWindow
19 {
20   Q_OBJECT
21
22 public:
23   // constructor
24   HelpWindow( SALOME_InstallWizard* wizard );
25   // destructor
26   ~HelpWindow();
27
28   // opens/raises Help window
29   static HelpWindow* openHelp( SALOME_InstallWizard* wizard );
30
31 private:
32   QTextBrowser*   browser;    // help window browser
33 };
34
35 #endif
36