Salome HOME
IMP: EDF 2680: New options for log files
[plugins/ghs3dplugin.git] / src / GUI / GHS3DPluginGUI_HypothesisCreator.h
1 // Copyright (C) 2004-2013  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 //  GHS3DPlugin GUI: GUI for plugged-in mesher GHS3DPlugin
21 //  File   : GHS3DPluginGUI_HypothesisCreator.h
22 //  Author : Michael Zorin
23 //  Module : GHS3DPlugin
24 //
25 #ifndef GHS3DPLUGINGUI_HypothesisCreator_HeaderFile
26 #define GHS3DPLUGINGUI_HypothesisCreator_HeaderFile
27
28 #ifdef WIN32
29   #if defined GHS3DPluginGUI_EXPORTS
30     #define GHS3DPLUGINGUI_EXPORT __declspec( dllexport )
31   #else
32     #define GHS3DPLUGINGUI_EXPORT __declspec( dllimport )
33   #endif
34 #else
35   #define GHS3DPLUGINGUI_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(GHS3DPlugin_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 GHS3DPluginGUI_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    myToMeshHoles,myToMakeGroupsOfDomains,myKeepFiles,myToCreateNewNodes,myBoundaryRecovery,myFEMCorrection,myRemoveInitialCentralPoint,
145           myLogInStandardOutput, myRemoveLogOnSuccess;
146   int     myMaximumMemory,myInitialMemory,myOptimizationLevel;
147   QString myName,myWorkingDir,myTextOption;
148   double  myGradation;
149   short   myVerboseLevel;
150   TEnfVertexList myEnforcedVertices;
151   TEnfMeshList myEnforcedMeshes;
152 } GHS3DHypothesisData;
153
154 /*!
155   \brief Class for creation of GHS3D2D and GHS3D3D hypotheses
156 */
157 class GHS3DPLUGINGUI_EXPORT GHS3DPluginGUI_HypothesisCreator : public SMESHGUI_GenericHypothesisCreator
158 {
159   Q_OBJECT
160
161 public:
162   GHS3DPluginGUI_HypothesisCreator( const QString& );
163   virtual ~GHS3DPluginGUI_HypothesisCreator();
164
165   virtual bool     checkParams(QString& msg) const;
166   virtual QString  helpPage() const;
167
168 protected:
169   virtual QFrame*  buildFrame    ();
170   virtual void     retrieveParams() const;
171   virtual QString  storeParams   () const;
172
173   virtual QString  caption() const;
174   virtual QPixmap  icon() const;
175   virtual QString  type() const;
176
177 protected slots:
178   void                onToMeshHoles(bool);
179   void                onDirBtnClicked();
180   void                updateWidgets();
181   
182   void                addEnforcedVertex(double x=0, double y=0, double z=0, double size = 0,
183                                         std::string vertexName = "", std::string geomEntry = "", std::string groupName = "",
184                                         bool isCompound = false);
185   void                onAddEnforcedVertex();
186   void                onRemoveEnforcedVertex();
187   void                synchronizeCoords();
188   void                updateEnforcedVertexValues(QTableWidgetItem* );
189   void                onSelectEnforcedVertex();
190   void                clearEnforcedVertexWidgets();
191   void                checkVertexIsDefined();
192   void                clearEnfVertexSelection();
193   
194   void                addEnforcedMesh(std::string name, std::string entry, int elementType, std::string groupName = "");
195   void                onAddEnforcedMesh();
196   void                onRemoveEnforcedMesh();
197   //void                synchronizeEnforcedMesh();
198   void                checkEnfMeshIsDefined();
199   
200 signals:
201   void                vertexDefined(bool);
202   void                enfMeshDefined(bool);
203   
204 private:
205   bool                readParamsFromHypo( GHS3DHypothesisData& ) const;
206   bool                readParamsFromWidgets( GHS3DHypothesisData& ) const;
207   bool                storeParamsToHypo( const GHS3DHypothesisData& ) const;
208   GeomSelectionTools* getGeomSelectionTool();
209   GEOM::GEOM_Gen_var  getGeomEngine();
210
211 private:
212   QWidget*            myStdGroup;
213   QLineEdit*          myName;
214   QCheckBox*          myToMeshHolesCheck;
215   QCheckBox*          myToMakeGroupsOfDomains;
216   QComboBox*          myOptimizationLevelCombo;
217
218   QWidget*                  myAdvGroup;
219   GHS3DPluginGUI_AdvWidget* myAdvWidget;
220   
221   QWidget*            myEnfGroup;
222   QPixmap             iconVertex, iconCompound;
223   StdMeshersGUI_ObjectReferenceParamWdg *myEnfVertexWdg;
224   GEOM::GEOM_Object_var myEnfVertex;
225   QTableWidget*       myEnforcedTableWidget;
226   SMESHGUI_SpinBox*   myXCoord;
227   SMESHGUI_SpinBox*   myYCoord;
228   SMESHGUI_SpinBox*   myZCoord;
229   SMESHGUI_SpinBox*   mySizeValue;
230   QLineEdit*          myGroupName;
231 //   QGroupBox*          makeGroupsCheck;
232 //   QCheckBox*          myGlobalGroupName;  
233   QPushButton*        addVertexButton;
234   QPushButton*        removeVertexButton;
235   
236   QWidget*            myEnfMeshGroup;
237   StdMeshersGUI_ObjectReferenceParamWdg *myEnfMeshWdg;
238 //   SMESH::SMESH_IDSource_var myEnfMesh;
239   QComboBox*          myEnfMeshConstraint;
240   QStringList         myEnfMeshConstraintLabels;
241 //   SMESH::mesh_array_var myEnfMeshArray;
242   QTableWidget*       myEnforcedMeshTableWidget;
243   QLineEdit*          myMeshGroupName;
244   QPushButton*        addEnfMeshButton;
245   QPushButton*        removeEnfMeshButton;
246   
247   GeomSelectionTools*     GeomToolSelected;
248 //   SVTK_Selector*          mySelector;
249 //   LightApp_SelectionMgr*  mySelectionMgr; /* User shape selection */
250 };
251
252 class EnforcedVertexTableWidgetDelegate : public QItemDelegate
253 {
254     Q_OBJECT
255
256 public:
257   EnforcedVertexTableWidgetDelegate(QObject *parent = 0);
258
259   QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
260                       const QModelIndex &index) const;
261
262   void setEditorData(QWidget *editor, const QModelIndex &index) const;
263   void setModelData(QWidget *editor, QAbstractItemModel *model,
264                   const QModelIndex &index) const;
265
266   void updateEditorGeometry(QWidget *editor,
267       const QStyleOptionViewItem &option, const QModelIndex &index) const;
268
269   bool vertexExists(QAbstractItemModel *model, const QModelIndex &index, QString value) const;
270 };
271
272 class EnforcedMeshTableWidgetDelegate : public QItemDelegate
273 {
274     Q_OBJECT
275
276 public:
277   EnforcedMeshTableWidgetDelegate(QObject *parent = 0);
278
279   QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
280                       const QModelIndex &index) const;
281
282   void setEditorData(QWidget *editor, const QModelIndex &index) const;
283   void setModelData(QWidget *editor, QAbstractItemModel *model,
284                   const QModelIndex &index) const;
285
286   void updateEditorGeometry(QWidget *editor,
287       const QStyleOptionViewItem &option, const QModelIndex &index) const;
288 };
289
290 #endif