Salome HOME
Dialogue pour l'adaptation
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_AdaptDlg.h
1 // Copyright (C) 2011-2020  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, or (at your option) any later version.
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 // SMESH SMESHGUI : GUI for the adaptation in the SMESH component
21 // File   : SMESHGUI_AdaptDlg.h
22 // Author : GĂ©rald NICOLAS, EDF
23 //
24 #ifndef SMESHGUI_ADAPTDLG_H
25 #define SMESHGUI_ADAPTDLG_H
26
27 #include "HOMARDGUI_Exports.hxx"
28
29 #include <SalomeApp_Module.h>
30 #include "SalomeApp_Study.h"
31
32 #include <SALOMEconfig.h>
33 #include <SALOME_LifeCycleCORBA.hxx>
34 #include CORBA_CLIENT_HEADER(HOMARD_Gen)
35 #include CORBA_CLIENT_HEADER(HOMARD_Cas)
36 #include CORBA_CLIENT_HEADER(HOMARD_Hypothesis)
37
38 #include <QString>
39
40 //=================================================================================
41 // class    : SMESHGUI_AdaptDlg
42 // purpose  :
43 //=================================================================================
44 class SMESHGUI_EXPORT SMESHGUI_AdaptDlg: public QDialog
45 {
46   Q_OBJECT
47
48 public:
49    SMESHGUI_AdaptDlg( SMESHGUI*,
50                       int theCommandID);
51   ~SMESHGUI_AdaptDlg();
52
53   virtual bool OnGUIEvent (int theCommandID);
54   void    initialize( CAM_Application* );
55   QString engineIOR() const;
56   void    windows( QMap<int, int>& ) const;
57
58   static HOMARD::HOMARD_Gen_var InitHOMARDGen(SalomeApp_Application* );
59
60
61 public slots:
62     bool    deactivateModule( SUIT_Study* );
63     bool    activateModule( SUIT_Study* );
64     static void setOrb();
65
66 private slots:
67     void OnGUIEvent();
68     void EditAsciiFile();
69     void LanceCalcul0();
70     void LanceCalcul1();
71     void IterInfo();
72     void NextIter();
73     void MeshPublish0();
74     void MeshPublish1();
75     void YACSCreate();
76     void YACSWrite();
77     void Edit();
78     void Delete();
79
80 public:
81    virtual void  contextMenuPopup( const QString&, QMenu*, QString& );
82
83
84 private:
85    void createHOMARDAction( const int id, const QString& po_id, const QString& icon_id = QString(""),
86                             const int key = 0, const bool toggle = false );
87    void createActions();
88    void createMenus();
89    void recupPreferences();
90    void createPopupMenus();
91    _PTR(SObject)  chercheMonObjet();
92
93    virtual void createPreferences();
94    HOMARD::HOMARD_Gen_var myComponentHomard;
95
96    int anId;
97    QString _ObjectName;
98    QString _LanguageShort ;
99    int _PublisMeshIN ;
100    int _PublisMeshOUT ;
101    int _YACSMaxIter ;
102    int _YACSMaxNode ;
103    int _YACSMaxElem ;
104    int _YACSTypeTest ;
105 };
106
107 #endif // SMESHGUI_ADAPTDLG_H