Salome HOME
lot 10 - warnings for DTM - untested
[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   QPushButton*     BackButton();
44
45 public slots:
46   void             onNext();
47   void             onBack();
48   
49   void             onFirstPage();
50
51 signals:
52   void             Next( const int );
53   void             Back( const int );
54
55 protected:
56
57   // Returns the state of current page filing.
58   // Reimplement this method in your subclass to verify user input data.
59   virtual bool    acceptCurrent() const;
60
61   virtual bool    IsLastPage();
62
63   void            SetButtonsState (bool IsLastPage);
64
65 private:
66   QStackedWidget* myWizard;
67   QPushButton*    myNext;
68   QPushButton*    myBack;
69   QPushButton*    myFinish;
70 };
71
72 #endif