Salome HOME
INT PAL 0052683: Parameter "Color group" in the "Create Group" dialog box is empty
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshOp.h
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_MeshOp.h
25 // Author : Sergey LITONIN, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_MESHOP_H
28 #define SMESHGUI_MESHOP_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include "SMESHGUI_SelectionOp.h"
34
35 class HypothesesSet;
36 class SMESHGUI_MeshDlg;
37 class SMESHGUI_ShapeByMeshOp;
38 class HypothesisData;
39 class SMESHGUI_GenericHypothesisCreator;
40
41 /*!
42  * \brief Operation for mech creation or editing
43  *
44  *  This operation is used for mech creation or editing. 
45 */
46 class SMESHGUI_EXPORT SMESHGUI_MeshOp : public SMESHGUI_SelectionOp
47
48   Q_OBJECT
49       
50 public:
51   enum HypType{ Algo = 0, MainHyp, AddHyp, NbHypTypes };
52   enum MeshType{ MT_ANY = 0, MT_TRIANGULAR, MT_QUADRILATERAL, MT_TETRAHEDRAL, MT_HEXAHEDRAL };
53
54   typedef std::pair<SMESH::SMESH_Hypothesis_var, QString> THypItem;
55   typedef QList< THypItem > THypList;
56
57   typedef int THypType;
58   typedef QMap< THypType, THypList > TType2HypList;
59
60   typedef int THypDim;
61   typedef QMap< THypDim, TType2HypList > TDim2Type2HypList;
62
63 public:
64   SMESHGUI_MeshOp( const bool, const bool = true );
65   virtual ~SMESHGUI_MeshOp();
66   
67   virtual LightApp_Dialog*       dlg() const;  
68
69 protected:
70   virtual void                   startOperation();
71   virtual void                   commitOperation();
72   virtual void                   selectionDone();
73   virtual SUIT_SelectionFilter*  createFilter( const int ) const;
74   virtual bool                   isValid( SUIT_Operation* ) const;
75
76 protected slots:
77   virtual bool                   onApply();
78   void                           onCreateHyp( const int, const int );
79   void                           onEditHyp( const int, const int );
80   void                           onHypoSet( const QString& );
81   void                           onGeomSelectionByMesh( bool );
82   void                           onPublishShapeByMeshDlg( SUIT_Operation* );
83   void                           onCloseShapeByMeshDlg( SUIT_Operation* );
84   void                           onAlgoSelected( const int, const int = -1 );
85   void                           processSet();
86   void                           onHypoCreated( int );
87   void                           onHypoEdited( int );
88   void                           onAlgoSetByMeshType( const int, const int );
89
90 private:
91   typedef QList<HypothesisData*> THypDataList; // typedef: list of hypothesis data
92
93   bool                           isValid( QString& ) const;
94   void                           availableHyps( const int, 
95                                                 const int,
96                                                 QStringList&,
97                                                 THypDataList&,
98                                                 HypothesisData* = 0 ) const;
99   void                           existingHyps( const int, 
100                                                const int, 
101                                                _PTR(SObject),
102                                                QStringList&, 
103                                                THypList&,
104                                                HypothesisData* = 0 ) const;
105   HypothesisData*                hypData( const int,
106                                           const int,
107                                           const int ); // access to myAvailableHypData
108
109   void                           createHypothesis( const int, const int,
110                                                    const QString& );
111
112   bool                           createMesh( QString&, QStringList& );
113   bool                           createSubMesh( QString&, QStringList& );
114   bool                           editMeshOrSubMesh( QString& );
115   bool                           checkSubMeshConcurrency( SMESH::SMESH_Mesh_ptr    mesh,
116                                                           SMESH::SMESH_subMesh_ptr submesh,
117                                                           bool                     askUser=false);
118
119   int                            currentHyp( const int, const int ) const;
120   bool                           isSelectedHyp( int, int, int ) const;
121   int                            nbDlgHypTypes( const int ) const;
122   bool                           isAccessibleDim( const int ) const;
123   void                           setCurrentHyp( const int, const int, const int );
124   void                           setDefaultName( const QString& prefix="" ) const;
125   SMESH::SMESH_Hypothesis_var    getAlgo( const int );
126   void                           readMesh();
127   QString                        name( _PTR(SObject) ) const;
128   int                            find( const SMESH::SMESH_Hypothesis_var&,
129                                        const THypList& ) const;
130   SMESH::SMESH_Hypothesis_var    getInitParamsHypothesis( const QString&,
131                                                           const QString& ) const;
132   void                           initHypCreator( SMESHGUI_GenericHypothesisCreator* aCreator );
133   bool                           isSubshapeOk() const;
134   char*                          isSubmeshIgnored() const;
135   _PTR(SObject)                  getSubmeshByGeom() const;
136   void                           selectObject( _PTR(SObject) ) const;
137   void                           createMeshTypeList( QStringList& );
138   void                           setAvailableMeshType( const QStringList& );
139   void                           setFilteredAlgoData( const int, const int );
140
141 private:
142
143   SMESHGUI_MeshDlg*              myDlg;
144   SMESHGUI_ShapeByMeshOp*        myShapeByMeshOp;
145   bool                           myToCreate;
146   bool                           myIsMesh;
147   bool                           myIsOnGeometry; //!< TRUE if edited mesh accotiated with geometrical object
148   bool                           myHasConcurrentSubBefore;
149
150   TDim2Type2HypList              myExistingHyps; //!< all hypothesis of SMESH module
151   TDim2Type2HypList              myObjHyps;      //!< hypothesis assigned to the current 
152                                                  //   edited mesh/sub-mesh
153   // hypdata corresponding to hypotheses present in myDlg
154   THypDataList                   myAvailableHypData[4][NbHypTypes];
155   THypDataList                   myFilteredAlgoData[4];
156   bool                           myIgnoreAlgoSelection;
157   HypothesesSet* myHypoSet;
158   int myDim, myType, myMaxShapeDim;
159
160   QString                        myObjectToSelect;
161 };
162
163 #endif // SMESHGUI_MESHOP_H