Salome HOME
LOT 15
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_Wizard.h
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #ifndef HYDROGUI_WIZARD_H
20 #define HYDROGUI_WIZARD_H
21
22 #include "HYDROGUI_InputPanel.h"
23 #include <QWizard>
24 class QAbstractButton;
25 class QStackedWidget;
26 class QWizardPage;
27
28 /**\class HYDROGUI_Wizard
29  *\brief The base class representing base wizard for HYDROGUI module
30  */
31 class HYDROGUI_Wizard : public HYDROGUI_InputPanel
32 {
33   Q_OBJECT
34
35 public:
36   HYDROGUI_Wizard( HYDROGUI_Module* theModule, const QString& theTitle );
37   virtual ~HYDROGUI_Wizard();
38
39   QAbstractButton* button( QWizard::WizardButton theBtnId ) const;
40   int              addPage( QWizardPage* thePage );
41   QStackedWidget*  wizard() const;
42
43 public slots:
44   void             onNext();
45   void             onBack();
46   
47   void             onFirstPage();
48
49 signals:
50   void             Next( const int );
51   void             Back( const int );
52
53 protected:
54
55   // Returns the state of current page filing.
56   // Reimplement this method in your subclass to verify user input data.
57   virtual bool    acceptCurrent() const;
58
59   virtual bool    IsLastPage();
60
61   void            SetButtonsState (bool IsLastPage);
62
63 private:
64   QStackedWidget* myWizard;
65   QPushButton*    myNext;
66   QPushButton*    myBack;
67   QPushButton*    myFinish;
68 };
69
70 #endif