]> SALOME platform Git repositories - modules/homard.git/blob - src/HOMARDGUI/MonPursueIteration.h
Salome HOME
Nouvelles icones
[modules/homard.git] / src / HOMARDGUI / MonPursueIteration.h
1 // Copyright (C) 2011-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef MON_PURSUEITERATION_H
21 #define MON_PURSUEITERATION_H
22
23 #include <SALOMEconfig.h>
24 #include <SalomeApp_Module.h>
25
26 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
27 #include CORBA_CLIENT_HEADER(HOMARD_Gen)
28 #include CORBA_CLIENT_HEADER(HOMARD_Cas)
29
30 #include <PursueIteration.h>
31 #include <QWidget>
32
33 class MonPursueIteration : public QDialog, public Ui_PursueIteration
34 {
35     Q_OBJECT
36
37   public:
38     MonPursueIteration( QWidget* parent, bool modal, HOMARD::HOMARD_Gen_var myHomardGen);
39     virtual ~MonPursueIteration();
40
41   protected :
42     QString _aCaseName;
43     QString _aDirName;
44     QString _aDirNameStart;
45
46     int _Type ;
47
48     HOMARD::HOMARD_Cas_var aCase ;
49     HOMARD::HOMARD_Gen_var myHomardGen;
50
51     virtual void InitConnect();
52     virtual void SetNewCaseName();
53
54   public slots:
55     virtual void SetDirName();
56
57     virtual void FromIteration();
58     virtual void FromCase();
59     virtual void SetDirNameStart();
60
61     virtual void CaseLastIteration();
62     virtual void CaseNIteration();
63
64     virtual void PushOnOK();
65     virtual bool PushOnApply();
66     virtual void PushOnHelp();
67
68 };
69
70 #endif // MON_PURSUEITERATION_H