]> SALOME platform Git repositories - plugins/hybridplugin.git/blob - src/GUI/HYBRIDPluginGUI_HypothesisCreator.h
Salome HOME
IMP23371: [CEA 1441] Define the faces where we impose the boundary layer from the...
[plugins/hybridplugin.git] / src / GUI / HYBRIDPluginGUI_HypothesisCreator.h
1 // Copyright (C) 2007-2016  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 // ---
21 // File   : HYBRIDPluginGUI_HypothesisCreator.h
22 // Author : Christian VAN WAMBEKE (CEA)
23 // ---
24 //
25 #ifndef HYBRIDPLUGINGUI_HypothesisCreator_HeaderFile
26 #define HYBRIDPLUGINGUI_HypothesisCreator_HeaderFile
27
28 #ifdef WIN32
29   #if defined HYBRIDPluginGUI_EXPORTS
30     #define HYBRIDPLUGINGUI_EXPORT __declspec( dllexport )
31   #else
32     #define HYBRIDPLUGINGUI_EXPORT __declspec( dllimport )
33   #endif
34 #else
35   #define HYBRIDPLUGINGUI_EXPORT
36 #endif
37
38 #include <SMESHGUI_Hypotheses.h>
39 #include <GeomSelectionTools.h>
40 #include <TopAbs_ShapeEnum.hxx>
41
42 #include <QItemDelegate>
43 #include <map>
44 #include <vector>
45 #include <set>
46 #include <GEOM_Client.hxx>
47 #include CORBA_SERVER_HEADER(HYBRIDPlugin_Algorithm)
48 #include CORBA_SERVER_HEADER(SMESH_Gen)
49 #include CORBA_SERVER_HEADER(SMESH_Mesh)
50
51 class QCheckBox;
52 class QComboBox;
53 class QHeaderView;
54 class QLineEdit;
55 class QSpinBox;
56 class QTableWidget;
57 class QTableWidgetItem;
58 class QWidget;
59
60 class HYBRIDPluginGUI_AdvWidget;
61 class LightApp_SelectionMgr;
62 class SMESHGUI_SpinBox;
63 class SUIT_SelectionFilter;
64 class StdMeshersGUI_ObjectReferenceParamWdg;
65 class StdMeshersGUI_SubShapeSelectorWdg;
66
67 class QTEnfVertex
68 {
69
70 public:
71   QTEnfVertex(double size, double x=0., double y=0., double z=0., QString name="", QString geomEntry="", QString groupName="", bool isCompound = false);
72
73 private:
74   bool operator == (const QTEnfVertex* other) const {
75     if (other) {
76       if (this->coords.size() && other->coords.size())
77         return (this->coords == other->coords);
78       else
79         return (this->geomEntry == other->geomEntry);
80     }
81   }
82   
83   QString name;
84   QString geomEntry;
85   bool isCompound;
86   QString groupName;
87   double size;
88   std::vector<double> coords;
89 };
90
91 typedef QList< QTEnfVertex* > QEnfVertexList;
92
93 // Enforced vertex
94 struct TEnfVertex{
95   std::string name;
96   std::string geomEntry;
97   bool isCompound;
98   std::vector<double> coords;
99   std::string groupName;
100   double size;
101 };
102
103 struct CompareEnfVertices
104 {
105   bool operator () (const TEnfVertex* e1, const TEnfVertex* e2) const {
106     if (e1 && e2) {
107       if (e1->coords.size() && e2->coords.size())
108         return (e1->coords < e2->coords);
109       else
110         return (e1->geomEntry < e2->geomEntry);
111     }
112     return false;
113   }
114 };
115
116 // List of enforced vertices
117 typedef std::set< TEnfVertex*, CompareEnfVertices > TEnfVertexList;
118
119 // Enforced mesh
120 struct TEnfMesh{
121   std::string name;
122   std::string entry;
123   int elementType;
124   std::string groupName;
125 };
126
127 struct CompareEnfMeshes
128 {
129   bool operator () (const TEnfMesh* e1, const TEnfMesh* e2) const {
130     if (e1 && e2) {
131       if (e1->entry == e2->entry)
132         return (e1->elementType < e2->elementType);
133       else
134         return (e1->entry < e2->entry);
135     }
136     else
137       return false;
138   }
139 };
140 // List of enforced meshes
141 typedef std::set< TEnfMesh*, CompareEnfMeshes > TEnfMeshList;
142
143 typedef struct
144 {
145   bool    myLayersOnAllWrap, myToMeshHoles, myToMakeGroupsOfDomains,
146           myKeepFiles, myToCreateNewNodes,
147           myBoundaryRecovery, myFEMCorrection,
148           myRemoveInitialCentralPoint,
149           myLogInStandardOutput, myRemoveLogOnSuccess;
150   double  myMaximumMemory,myInitialMemory;
151   int     myOptimizationLevel;
152   int     myCollisionMode;
153   int     myBoundaryLayersGrowth;
154   int     myElementGeneration;
155   QString myName,myWorkingDir,myTextOption;
156   double  myGradation;
157   short   myVerboseLevel;
158   TEnfVertexList myEnforcedVertices;
159   TEnfMeshList myEnforcedMeshes;
160   bool    myAddMultinormals,
161           mySmoothNormals;
162   double  myHeightFirstLayer,
163           myBoundaryLayersProgression,
164           myMultinormalsAngle;
165   short   myNbOfBoundaryLayers;
166   SMESH::long_array_var myFaceWLIds;
167
168 } HYBRIDHypothesisData;
169
170 /*!
171   \brief Class for creation of HYBRID 3D hypotheses
172 */
173 class HYBRIDPLUGINGUI_EXPORT HYBRIDPluginGUI_HypothesisCreator : public SMESHGUI_GenericHypothesisCreator
174 {
175   Q_OBJECT
176
177 public:
178   HYBRIDPluginGUI_HypothesisCreator( const QString& );
179   virtual ~HYBRIDPluginGUI_HypothesisCreator();
180
181   virtual bool     checkParams(QString& msg) const;
182   virtual QString  helpPage() const;
183
184 protected:
185   virtual QFrame*  buildFrame    ();
186   virtual void     retrieveParams() const;
187   virtual QString  storeParams   () const;
188
189   virtual QString  caption() const;
190   virtual QPixmap  icon() const;
191   virtual QString  type() const;
192
193 protected slots:
194   void                onLayersOnAllWrap(bool);
195   void                onToMeshHoles(bool);
196   void                onDirBtnClicked();
197   void                updateWidgets();
198   
199   void                addEnforcedVertex(double x=0, double y=0, double z=0, double size = 0,
200                                         std::string vertexName = "", std::string geomEntry = "", std::string groupName = "",
201                                         bool isCompound = false);
202   void                onAddEnforcedVertex();
203   void                onRemoveEnforcedVertex();
204   void                synchronizeCoords();
205   void                updateEnforcedVertexValues(QTableWidgetItem* );
206   void                onSelectEnforcedVertex();
207   void                clearEnforcedVertexWidgets();
208   void                checkVertexIsDefined();
209   void                clearEnfVertexSelection();
210   
211   void                addEnforcedMesh(std::string name, std::string entry, int elementType, std::string groupName = "");
212   void                onAddEnforcedMesh();
213   void                onRemoveEnforcedMesh();
214   //void                synchronizeEnforcedMesh();
215   void                checkEnfMeshIsDefined();
216   void                onTabChanged( int );
217   
218 signals:
219   void                vertexDefined(bool);
220   void                enfMeshDefined(bool);
221   
222 private:
223   bool                readParamsFromHypo( HYBRIDHypothesisData& ) const;
224   bool                readParamsFromWidgets( HYBRIDHypothesisData& ) const;
225   bool                storeParamsToHypo( const HYBRIDHypothesisData& ) const;
226   GeomSelectionTools* getGeomSelectionTool();
227   GEOM::GEOM_Gen_var  getGeomEngine();
228
229 private:
230   QWidget*            myStdGroup;
231   QLineEdit*          myName;
232   QCheckBox*          myLayersOnAllWrapCheck;
233   QCheckBox*          myToMeshHolesCheck;
234   QCheckBox*          myToMakeGroupsOfDomains;
235   QComboBox*          myOptimizationLevelCombo;
236   QComboBox*          myCollisionModeCombo;
237   QComboBox*          myBoundaryLayersGrowthCombo;
238   QComboBox*          myElementGenerationCombo;
239   QCheckBox*          myAddMultinormalsCheck;
240   QCheckBox*          mySmoothNormals;
241   QWidget*            myAdvGroup;
242   HYBRIDPluginGUI_AdvWidget* myAdvWidget;
243   
244   QWidget*            myEnfGroup;
245   QPixmap             iconVertex, iconCompound;
246   StdMeshersGUI_ObjectReferenceParamWdg *myEnfVertexWdg;
247   GEOM::GEOM_Object_var myEnfVertex;
248   QTableWidget*       myEnforcedTableWidget;
249   SMESHGUI_SpinBox*   myXCoord;
250   SMESHGUI_SpinBox*   myYCoord;
251   SMESHGUI_SpinBox*   myZCoord;
252   SMESHGUI_SpinBox*   mySizeValue;
253   QLineEdit*          myGroupName;
254 //   QGroupBox*          makeGroupsCheck;
255 //   QCheckBox*          myGlobalGroupName;  
256   QPushButton*        addVertexButton;
257   QPushButton*        removeVertexButton;
258   
259   QWidget*            myEnfMeshGroup;
260   StdMeshersGUI_ObjectReferenceParamWdg *myEnfMeshWdg;
261 //   SMESH::SMESH_IDSource_var myEnfMesh;
262   QComboBox*          myEnfMeshConstraint;
263   QStringList         myEnfMeshConstraintLabels;
264 //   SMESH::mesh_array_var myEnfMeshArray;
265   QTableWidget*       myEnforcedMeshTableWidget;
266   QLineEdit*          myMeshGroupName;
267   QPushButton*        addEnfMeshButton;
268   QPushButton*        removeEnfMeshButton;
269   
270   GeomSelectionTools* GeomToolSelected;
271   
272   SMESHGUI_SpinBox*   myHeightFirstLayerSpin;
273   QSpinBox*           myNbOfBoundaryLayersSpin;
274   SMESHGUI_SpinBox*   myBoundaryLayersProgressionSpin;
275   SMESHGUI_SpinBox*   myMultinormalsAngleSpin;
276   QCheckBox*          mySmoothNormalsCheck;
277
278   StdMeshersGUI_SubShapeSelectorWdg* myFaceSelector;
279 };
280
281 class EnforcedVertexTableWidgetDelegate : public QItemDelegate
282 {
283     Q_OBJECT
284
285 public:
286   EnforcedVertexTableWidgetDelegate(QObject *parent = 0);
287
288   QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
289                       const QModelIndex &index) const;
290
291   void setEditorData(QWidget *editor, const QModelIndex &index) const;
292   void setModelData(QWidget *editor, QAbstractItemModel *model,
293                   const QModelIndex &index) const;
294
295   void updateEditorGeometry(QWidget *editor,
296       const QStyleOptionViewItem &option, const QModelIndex &index) const;
297
298   bool vertexExists(QAbstractItemModel *model, const QModelIndex &index, QString value) const;
299 };
300
301 class EnforcedMeshTableWidgetDelegate : public QItemDelegate
302 {
303     Q_OBJECT
304
305 public:
306   EnforcedMeshTableWidgetDelegate(QObject *parent = 0);
307
308   QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
309                       const QModelIndex &index) const;
310
311   void setEditorData(QWidget *editor, const QModelIndex &index) const;
312   void setModelData(QWidget *editor, QAbstractItemModel *model,
313                   const QModelIndex &index) const;
314
315   void updateEditorGeometry(QWidget *editor,
316       const QStyleOptionViewItem &option, const QModelIndex &index) const;
317 };
318
319 #endif