Salome HOME
Add layers imprinting on faces.
[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           myCoreSize,
165           myMultinormalsAngle;
166   short   myNbOfBoundaryLayers;
167   // IDs of faces with layers
168   SMESH::long_array_var myFaceWLIds;
169   // IDs of faces with imprinting
170   SMESH::long_array_var myFaceWIIds;
171
172 } HYBRIDHypothesisData;
173
174 /*!
175   \brief Class for creation of HYBRID 3D hypotheses
176 */
177 class HYBRIDPLUGINGUI_EXPORT HYBRIDPluginGUI_HypothesisCreator : public SMESHGUI_GenericHypothesisCreator
178 {
179   Q_OBJECT
180
181 public:
182   HYBRIDPluginGUI_HypothesisCreator( const QString& );
183   virtual ~HYBRIDPluginGUI_HypothesisCreator();
184
185   virtual bool     checkParams(QString& msg) const;
186   virtual QString  helpPage() const;
187
188 protected:
189   virtual QFrame*  buildFrame    ();
190   virtual void     retrieveParams() const;
191   virtual QString  storeParams   () const;
192
193   virtual QString  caption() const;
194   virtual QPixmap  icon() const;
195   virtual QString  type() const;
196
197 protected slots:
198   void                onLayersOnAllWrap(bool);
199   void                onToMeshHoles(bool);
200   void                onDirBtnClicked();
201   void                updateWidgets();
202   
203   void                addEnforcedVertex(double x=0, double y=0, double z=0, double size = 0,
204                                         std::string vertexName = "", std::string geomEntry = "", std::string groupName = "",
205                                         bool isCompound = false);
206   void                onAddEnforcedVertex();
207   void                onRemoveEnforcedVertex();
208   void                synchronizeCoords();
209   void                updateEnforcedVertexValues(QTableWidgetItem* );
210   void                onSelectEnforcedVertex();
211   void                clearEnforcedVertexWidgets();
212   void                checkVertexIsDefined();
213   void                clearEnfVertexSelection();
214   
215   void                addEnforcedMesh(std::string name, std::string entry, int elementType, std::string groupName = "");
216   void                onAddEnforcedMesh();
217   void                onRemoveEnforcedMesh();
218   //void                synchronizeEnforcedMesh();
219   void                checkEnfMeshIsDefined();
220   void                onTabChanged( int );
221   
222 signals:
223   void                vertexDefined(bool);
224   void                enfMeshDefined(bool);
225   
226 private:
227   bool                readParamsFromHypo( HYBRIDHypothesisData& ) const;
228   bool                readParamsFromWidgets( HYBRIDHypothesisData& ) const;
229   bool                storeParamsToHypo( const HYBRIDHypothesisData& ) const;
230   GeomSelectionTools* getGeomSelectionTool();
231   GEOM::GEOM_Gen_var  getGeomEngine();
232
233 private:
234   QWidget*            myStdGroup;
235   QLineEdit*          myName;
236   QCheckBox*          myLayersOnAllWrapCheck;
237   QCheckBox*          myToMeshHolesCheck;
238   QCheckBox*          myToMakeGroupsOfDomains;
239   QComboBox*          myOptimizationLevelCombo;
240   QComboBox*          myCollisionModeCombo;
241   QComboBox*          myBoundaryLayersGrowthCombo;
242   QComboBox*          myElementGenerationCombo;
243   QCheckBox*          myAddMultinormalsCheck;
244   QCheckBox*          mySmoothNormals;
245   QWidget*            myAdvGroup;
246   HYBRIDPluginGUI_AdvWidget* myAdvWidget;
247   
248   QWidget*            myEnfGroup;
249   QPixmap             iconVertex, iconCompound;
250   StdMeshersGUI_ObjectReferenceParamWdg *myEnfVertexWdg;
251   GEOM::GEOM_Object_var myEnfVertex;
252   QTableWidget*       myEnforcedTableWidget;
253   SMESHGUI_SpinBox*   myXCoord;
254   SMESHGUI_SpinBox*   myYCoord;
255   SMESHGUI_SpinBox*   myZCoord;
256   SMESHGUI_SpinBox*   mySizeValue;
257   QLineEdit*          myGroupName;
258 //   QGroupBox*          makeGroupsCheck;
259 //   QCheckBox*          myGlobalGroupName;  
260   QPushButton*        addVertexButton;
261   QPushButton*        removeVertexButton;
262   
263   QWidget*            myEnfMeshGroup;
264   StdMeshersGUI_ObjectReferenceParamWdg *myEnfMeshWdg;
265 //   SMESH::SMESH_IDSource_var myEnfMesh;
266   QComboBox*          myEnfMeshConstraint;
267   QStringList         myEnfMeshConstraintLabels;
268 //   SMESH::mesh_array_var myEnfMeshArray;
269   QTableWidget*       myEnforcedMeshTableWidget;
270   QLineEdit*          myMeshGroupName;
271   QPushButton*        addEnfMeshButton;
272   QPushButton*        removeEnfMeshButton;
273   
274   GeomSelectionTools* GeomToolSelected;
275   
276   SMESHGUI_SpinBox*   myHeightFirstLayerSpin;
277   QSpinBox*           myNbOfBoundaryLayersSpin;
278   SMESHGUI_SpinBox*   myBoundaryLayersProgressionSpin;
279   SMESHGUI_SpinBox*   myCoreSizeSpin;
280   SMESHGUI_SpinBox*   myMultinormalsAngleSpin;
281   QCheckBox*          mySmoothNormalsCheck;
282
283   StdMeshersGUI_SubShapeSelectorWdg* myFaceSelectorLayers;
284   StdMeshersGUI_SubShapeSelectorWdg* myFaceSelectorImprinting;
285 };
286
287 class EnforcedVertexTableWidgetDelegate : public QItemDelegate
288 {
289     Q_OBJECT
290
291 public:
292   EnforcedVertexTableWidgetDelegate(QObject *parent = 0);
293
294   QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
295                       const QModelIndex &index) const;
296
297   void setEditorData(QWidget *editor, const QModelIndex &index) const;
298   void setModelData(QWidget *editor, QAbstractItemModel *model,
299                   const QModelIndex &index) const;
300
301   void updateEditorGeometry(QWidget *editor,
302       const QStyleOptionViewItem &option, const QModelIndex &index) const;
303
304   bool vertexExists(QAbstractItemModel *model, const QModelIndex &index, QString value) const;
305 };
306
307 class EnforcedMeshTableWidgetDelegate : public QItemDelegate
308 {
309     Q_OBJECT
310
311 public:
312   EnforcedMeshTableWidgetDelegate(QObject *parent = 0);
313
314   QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
315                       const QModelIndex &index) const;
316
317   void setEditorData(QWidget *editor, const QModelIndex &index) const;
318   void setModelData(QWidget *editor, QAbstractItemModel *model,
319                   const QModelIndex &index) const;
320
321   void updateEditorGeometry(QWidget *editor,
322       const QStyleOptionViewItem &option, const QModelIndex &index) const;
323 };
324
325 #endif