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