Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/homard.git] / src / HOMARDGUI / MonCreateCase.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_CREATECASE_H
21 #define MON_CREATECASE_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 <CreateCase.h>
31 #include <QWidget>
32
33 class MonCreateCase : public QDialog, public Ui_CreateCase
34 {
35     Q_OBJECT
36
37 public:
38     MonCreateCase( QWidget* parent, bool modal, HOMARD::HOMARD_Gen_var myHomardGen);
39     ~MonCreateCase();
40
41     void addBoundaryAn(QString newBoundary);
42     void addBoundaryDi(QString newBoundary);
43
44 protected :
45     QString _aCaseName;
46     QString _aDirName;
47
48     int _ConfType;
49
50     int _Pyram;
51
52     HOMARD::HOMARD_Cas_var aCase ;
53     HOMARD::HOMARD_Gen_var _myHomardGen;
54
55     virtual void InitConnect();
56     virtual void InitBoundarys();
57     virtual void SetNewCaseName();
58
59 public slots:
60     virtual void SetDirName();
61     virtual void SetFileName();
62
63     virtual void SetConforme();
64     virtual void SetNonConforme();
65     virtual void Set1NpM();
66     virtual void Set1NpA();
67     virtual void SetQuelconque();
68
69     virtual void SetBoundaryD();
70     virtual void PushBoundaryDiNew();
71     virtual void PushBoundaryDiEdit();
72     virtual void PushBoundaryDiHelp();
73     virtual void SetBoundaryA();
74     virtual void PushBoundaryAnNew();
75     virtual void PushBoundaryAnEdit();
76     virtual void PushBoundaryAnHelp();
77
78     virtual void SetAdvanced();
79
80     virtual void PushOnOK();
81     virtual bool PushOnApply();
82     virtual void PushOnHelp();
83
84     virtual void CaseNameChanged();
85 };
86
87 #endif // MON_CREATECASE_H