Salome HOME
Merge changes from 'master' branch.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshOrderOp.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
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 // File   : SMESHGUI_MeshOrderOp.cxx
21 // Author : Pavel TELKOV, Open CASCADE S.A.S.
22 //
23 #include "SMESHGUI_MeshOrderOp.h"
24
25 #include "SMESHGUI.h"
26 #include "SMESHGUI_Utils.h"
27 #include "SMESHGUI_MeshUtils.h"
28
29 // SALOME GUI includes
30 #include <LightApp_SelectionMgr.h>
31 #include <SALOME_ListIO.hxx>
32 #include <SUIT_ResourceMgr.h>
33 #include <SUIT_OverrideCursor.h>
34 #include <SUIT_MessageBox.h>
35 #include <SUIT_Desktop.h>
36
37 // SALOME KERNEL includes
38 #include <SALOMEDS_SObject.hxx>
39 #include <SALOMEDSClient_SObject.hxx>
40
41 // STL includes
42 #include <set>
43
44 //================================================================================
45 /*!
46  * \brief Constructor
47 */
48 //================================================================================
49
50 SMESHGUI_MeshOrderOp::SMESHGUI_MeshOrderOp()
51   : SMESHGUI_Operation(), myDlg(0), myMgr(0)
52 {
53   myDlg = new SMESHGUI_MeshOrderDlg( desktop() );
54   
55   myHelpFileName = "constructing_meshes_page.html#mesh_order_anchor";
56 }
57
58 //================================================================================
59 /*!
60  * \brief Destructor
61 */
62 //================================================================================
63
64 SMESHGUI_MeshOrderOp::~SMESHGUI_MeshOrderOp()
65 {
66 }
67
68 //================================================================================
69 /*!
70  * \brief Return operation dialog
71  */
72 //================================================================================
73
74 LightApp_Dialog* SMESHGUI_MeshOrderOp::dlg() const
75 {
76   return myDlg;
77 }
78
79 //================================================================================
80 /*!
81  * \brief perform it's intention action: compute 2D mesh on 3D
82  */
83 //================================================================================
84
85 void SMESHGUI_MeshOrderOp::startOperation()
86 {
87   SMESHGUI_Operation::startOperation();
88   if (myMgr)
89     myDlg->show();
90 }
91
92 //================================================================================
93 /*!
94  * \brief Init dialog and mesh order box
95  */
96 //================================================================================
97
98 void SMESHGUI_MeshOrderOp::initDialog()
99 {
100   if (!myDlg )
101     return;
102   
103   SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_nil();
104   // check selection
105   LightApp_SelectionMgr *Sel = selectionMgr();
106   SALOME_ListIO selected; Sel->selectedObjects( selected );
107
108   if (selected.Extent() == 1)
109     aMesh = SMESH::GetMeshByIO(selected.First());
110   if (aMesh->_is_nil()) {
111     SUIT_MessageBox::warning(desktop(),
112                              tr("SMESH_WRN_WARNING"),
113                              tr("SMESH_WRN_NO_AVAILABLE_DATA"));
114     onCancel();
115     return;
116   }
117
118   myMgr = new SMESHGUI_MeshOrderMgr( myDlg->GetMeshOrderBox() );
119   myMgr->SetMesh( aMesh );
120   if ( !myMgr->GetMeshOrder() ) {
121     SUIT_MessageBox::information(desktop(),
122                              tr("SMESH_INFORMATION"),
123                              tr("SMESH_NO_CONCURENT_MESH"));
124     
125     onCancel();
126     return;
127   }
128 }
129
130 //================================================================================
131 /*!
132  * \brief Apply changes
133  */
134 //================================================================================
135
136 bool SMESHGUI_MeshOrderOp::onApply()
137 {
138   SUIT_OverrideCursor aWaitCursor;
139   bool res = myMgr ? myMgr->SetMeshOrder() : false;
140
141   if( res )
142     SMESHGUI::Modified();
143
144   delete myMgr;
145   myMgr = 0;
146
147   return res;
148 }
149
150 //================================================================================
151 /*!
152  * \brief Apply changes
153  */
154 //================================================================================
155
156 void SMESHGUI_MeshOrderOp::onCancel()
157 {
158   delete myMgr;
159   myMgr = 0;
160
161   abort();
162 }
163
164 //================================================================================
165 /*!
166  * \brief Constructor
167 */
168 //================================================================================
169
170 SMESHGUI_MeshOrderMgr::SMESHGUI_MeshOrderMgr( SMESHGUI_MeshOrderBox* theBox )
171 : myBox( theBox )
172 {
173   myMesh = SMESH::SMESH_Mesh::_nil();
174 }
175
176 //================================================================================
177 /*!
178  * \brief Destructor
179 */
180 //================================================================================
181
182 SMESHGUI_MeshOrderMgr::~SMESHGUI_MeshOrderMgr()
183 {
184 }
185
186 //================================================================================
187 /*!
188  * \brief Set root mesh object
189  */
190 //================================================================================
191
192 void SMESHGUI_MeshOrderMgr::SetMesh(SMESH::SMESH_Mesh_var& theMesh)
193 {
194   myMesh = SMESH::SMESH_Mesh::_duplicate(theMesh);
195   _PTR(SObject) aMeshSObj = SMESH::FindSObject(theMesh);
196   if ( myBox && aMeshSObj )
197     myBox->setTitle( aMeshSObj->GetName().c_str() );
198 }  
199
200 //================================================================================
201 /*!
202  * \brief Check for concurents between submesh objects
203  */
204 //================================================================================
205
206 bool SMESHGUI_MeshOrderMgr::GetMeshOrder()
207 {
208   ListListId   idListList;
209   return GetMeshOrder(idListList);
210 }
211
212 //================================================================================
213 /*!
214  * \brief Check for concurents between submesh objects
215  */
216 //================================================================================
217
218 bool SMESHGUI_MeshOrderMgr::GetMeshOrder(ListListId& theIdListList)
219 {
220   if (!myBox || myMesh->_is_nil())
221     return false;
222   myBox->Clear();
223   SMESH::submesh_array_array_var meshOrder = myMesh->GetMeshOrder();
224   if ( !meshOrder.operator->() || !meshOrder->length() )
225     return false;
226   ListListName nameListList;
227   for ( int i = 0, n = meshOrder->length(); i < n; i++ )
228   {
229     QList<int> idList;
230     QStringList nameList;
231     const SMESH::submesh_array& aSMArray = meshOrder[i];
232     for ( int j = 0, jn = aSMArray.length(); j < jn; j++ )
233     {
234       const SMESH::SMESH_subMesh_var subMesh = aSMArray[j];
235       
236       _PTR(SObject) aSubMeshSObj = SMESH::FindSObject(subMesh);
237       if ( !aSubMeshSObj )
238         continue;
239
240       idList.append(subMesh->GetId() );
241       nameList.append( QString(aSubMeshSObj->GetName().c_str()) );
242     }
243     theIdListList.append(idList);
244     nameListList.append(nameList);
245   }
246   myBox->SetMeshes(nameListList, theIdListList);
247   return !theIdListList.isEmpty();
248 }
249
250 //================================================================================
251 /*!
252  * \brief Returns status is order changed by user
253  */
254 //================================================================================
255
256 bool SMESHGUI_MeshOrderMgr::IsOrderChanged() const
257 {
258   return myBox && myBox->IsOrderChanged();
259 }
260
261 //================================================================================
262 /*!
263  * \brief Store submesh priority order
264  */
265 //================================================================================
266
267 bool SMESHGUI_MeshOrderMgr::SetMeshOrder()
268 {
269   return myBox ? SetMeshOrder(myBox->GetMeshIds()) : false;
270 }
271
272 //================================================================================
273 /*!
274  * \brief Store submesh priority order
275  */
276 //================================================================================
277
278 bool SMESHGUI_MeshOrderMgr::SetMeshOrder( const  ListListId& theListListIds )
279 {
280   if (theListListIds.isEmpty() || myMesh->_is_nil())
281     return false;
282
283   _PTR(Study) aStudy = SMESH::getStudy();
284   _PTR(SObject) aMeshSObj = SMESH::FindSObject(myMesh);
285   if ( !aStudy || !aMeshSObj )
286     return false;
287
288   std::map<int, SMESH::SMESH_subMesh_var> mapOfSubMesh;
289   for (int i = SMESH::Tag_FirstSubMesh; i <= SMESH::Tag_LastSubMesh; i++) {
290     _PTR(SObject) aSubmeshRoot;
291     if ( !aMeshSObj->FindSubObject( i, aSubmeshRoot ) )
292       continue;
293     _PTR(ChildIterator) smIter = aStudy->NewChildIterator( aSubmeshRoot );
294     for ( ; smIter->More(); smIter->Next() ) {
295       _PTR(SObject) aSmObj = smIter->Value();
296       SMESH::SMESH_subMesh_var sm =
297         SMESH::SObjectToInterface<SMESH::SMESH_subMesh>( aSmObj );
298       if ( !sm->_is_nil() )
299         mapOfSubMesh[ sm->GetId() ] = SMESH::SMESH_subMesh::_duplicate(sm);
300     }
301   }
302
303   // is it enought to set modifid attribute on root mesh objects only?
304   //  it is seems that modifaction flag will be set on child submeshes 
305   //  automatically  (see SMESH::ModifiedMesh for details)
306   SMESH::ModifiedMesh( aMeshSObj, false, false );
307
308   SMESH::submesh_array_array_var meshOrder = new SMESH::submesh_array_array();
309   meshOrder->length(theListListIds.count() );
310   ListListId::const_iterator it = theListListIds.constBegin();
311   for ( int i = 0; it != theListListIds.constEnd(); ++it ) {
312     const QList<int>& ids = *it;
313     SMESH::submesh_array_var subMeshList = new SMESH::submesh_array();
314     subMeshList->length( ids.count() );
315     QList<int>::const_iterator subIt = ids.constBegin();
316     for( int j = 0; subIt != ids.constEnd(); ++subIt )
317       if ( mapOfSubMesh.find( *subIt ) != mapOfSubMesh.end() )
318         subMeshList[ j++ ] = mapOfSubMesh[ *subIt ];
319
320     meshOrder[ i++ ] = subMeshList;
321   }
322   // update object browser
323   SMESHGUI::GetSMESHGUI()->updateObjBrowser( true, 0 );
324
325   return myMesh->SetMeshOrder(meshOrder);
326 }