Salome HOME
Merge from BR_imps_2013 14/01/2014
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshOp.h
1 // Copyright (C) 2007-2013  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.
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
40 /*!
41  * \brief Operation for mech creation or editing
42  *
43  *  This operation is used for mech creation or editing. 
44 */
45 class SMESHGUI_EXPORT SMESHGUI_MeshOp : public SMESHGUI_SelectionOp
46
47   Q_OBJECT
48       
49 public:
50   enum HypType{ Algo = 0, MainHyp, AddHyp, NbHypTypes };
51   enum MeshType{ MT_ANY = 0, MT_TRIANGULAR, MT_QUADRILATERAL, MT_TETRAHEDRAL, MT_HEXAHEDRAL };
52
53   typedef std::pair<SMESH::SMESH_Hypothesis_var, QString> THypItem;
54   typedef QList< THypItem > THypList;
55
56   typedef int THypType;
57   typedef QMap< THypType, THypList > TType2HypList;
58
59   typedef int THypDim;
60   typedef QMap< THypDim, TType2HypList > TDim2Type2HypList;
61
62 public:
63   SMESHGUI_MeshOp( const bool, const bool = true );
64   virtual ~SMESHGUI_MeshOp();
65   
66   virtual LightApp_Dialog*       dlg() const;  
67
68 protected:
69   virtual void                   startOperation();
70   virtual void                   commitOperation();
71   virtual void                   selectionDone();
72   virtual SUIT_SelectionFilter*  createFilter( const int ) const;
73   virtual bool                   isValid( SUIT_Operation* ) const;
74
75 protected slots:
76   virtual bool                   onApply();
77   void                           onCreateHyp( const int, const int );
78   void                           onEditHyp( const int, const int );
79   void                           onHypoSet( const QString& );
80   void                           onGeomSelectionByMesh( bool );
81   void                           onPublishShapeByMeshDlg( SUIT_Operation* );
82   void                           onCloseShapeByMeshDlg( SUIT_Operation* );
83   void                           onAlgoSelected( const int, const int = -1 );
84   void                           processSet();
85   void                           onHypoCreated( int );
86   void                           onHypoEdited( int );
87   void                           onAlgoSetByMeshType( const int, const int );
88
89 private:
90   typedef QList<HypothesisData*> THypDataList; // typedef: list of hypothesis data
91
92   bool                           isValid( QString& ) const;
93   void                           availableHyps( const int, 
94                                                 const int,
95                                                 QStringList&,
96                                                 THypDataList&,
97                                                 HypothesisData* = 0 ) const;
98   static void                    existingHyps( const int, 
99                                                const int, 
100                                                _PTR(SObject),
101                                                QStringList&, 
102                                                THypList&,
103                                                HypothesisData* = 0 );
104   HypothesisData*                hypData( const int,
105                                           const int,
106                                           const int ); // access to myAvailableHypData
107
108   void                           createHypothesis( const int, const int,
109                                                    const QString& );
110
111   bool                           createMesh( QString&, QStringList& );
112   bool                           createSubMesh( QString&, QStringList& );
113   bool                           editMeshOrSubMesh( QString& );
114
115   int                            currentHyp( const int, const int ) const;
116   bool                           isAccessibleDim( const int ) const;
117   void                           setCurrentHyp( const int, const int, const int );
118   void                           setDefaultName() const;
119   SMESH::SMESH_Hypothesis_var    getAlgo( const int );
120   void                           readMesh();
121   QString                        name( _PTR(SObject) ) const;
122   int                            find( const SMESH::SMESH_Hypothesis_var&,
123                                        const THypList& ) const;
124   SMESH::SMESH_Hypothesis_var    getInitParamsHypothesis( const QString&,
125                                                           const QString& ) const;
126   bool                           isSubshapeOk() const;
127   char*                          isSubmeshIgnored() const;
128   _PTR(SObject)                  getSubmeshByGeom() const;
129   void                           selectObject( _PTR(SObject) ) const;
130   void                           createMeshTypeList( QStringList& );
131   void                           setAvailableMeshType( const QStringList& );
132 private:
133   SMESHGUI_MeshDlg*              myDlg;
134   SMESHGUI_ShapeByMeshOp*        myShapeByMeshOp;
135   bool                           myToCreate;
136   bool                           myIsMesh;
137   bool                           myIsOnGeometry; //!< TRUE if edited mesh accotiated with geometrical object
138
139   TDim2Type2HypList              myExistingHyps; //!< all hypothesis of SMESH module
140   TDim2Type2HypList              myObjHyps;      //!< hypothesis assigned to the current 
141                                                  //   edited mesh/sub-mesh
142   // hypdata corresponding to hypotheses present in myDlg
143   THypDataList                   myAvailableHypData[4][NbHypTypes];
144
145   bool                           myIgnoreAlgoSelection;
146   HypothesesSet* myHypoSet;
147   int myDim, myType, myMaxShapeDim;
148
149   QString                        myObjectToSelect;
150 };
151
152 #endif // SMESHGUI_MESHOP_H