]> SALOME platform Git repositories - modules/homard.git/blob - src/HOMARDGUI/MonCreateYACS.h
Salome HOME
Schémas YACS - suite
[modules/homard.git] / src / HOMARDGUI / MonCreateYACS.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_CREATEYACS_H
21 #define MON_CREATEYACS_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 <CreateYACS.h>
31 #include <QWidget>
32
33 class MonCreateYACS : public QDialog, public Ui_CreateYACS
34 {
35     Q_OBJECT
36
37   public:
38     MonCreateYACS( QWidget* parent, bool modal, HOMARD::HOMARD_Gen_var myHomardGen, QString CaseName);
39     virtual ~MonCreateYACS();
40
41   protected :
42     MonCreateYACS( QWidget* parent, HOMARD::HOMARD_Gen_var myHomardGen, QString CaseName);
43
44     QString _Name;
45     QString _aCaseName;
46     QString _aScriptFile;
47     QString _aDirName;
48     QString _aMeshFile;
49
50     int _Type;
51
52     bool Chgt;
53
54     HOMARD::HOMARD_YACS_var aYACS;
55     HOMARD::HOMARD_Cas_var aCase ;
56     HOMARD::HOMARD_Gen_var myHomardGen;
57
58     virtual void InitConnect();
59
60   public slots:
61     virtual void SetNewName();
62
63     virtual void SetCaseName();
64     virtual void SetDirName();
65
66     virtual void SetScriptFile();
67     virtual void SetMeshFile();
68
69     virtual void SetType(int Type);
70
71     virtual void PushOnOK();
72     virtual bool PushOnApply();
73     virtual void PushOnHelp();
74
75 };
76
77 #endif // MON_CREATEYACS_H