Salome HOME
PAL20378
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshOp.cxx
1 //  Copyright (C) 2007-2008  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 // SMESH SMESHGUI : GUI for SMESH component
23 // File   : SMESHGUI_MeshOp.cxx
24 // Author : Sergey LITONIN, Open CASCADE S.A.S.
25
26 // SMESH includes
27 #include "SMESHGUI_MeshOp.h"
28
29 #include "SMESHGUI.h"
30 #include "SMESHGUI_MeshDlg.h"
31 #include "SMESHGUI_ShapeByMeshDlg.h"
32 #include "SMESHGUI_HypothesesUtils.h"
33 #include "SMESHGUI_Hypotheses.h"
34 #include "SMESHGUI_Utils.h"
35 #include "SMESHGUI_GEOMGenUtils.h"
36
37 #include <SMESH_TypeFilter.hxx>
38 #include <SMESH_NumberFilter.hxx>
39
40 // SALOME GEOM includes
41 #include <GEOM_SelectionFilter.h>
42 #include <GEOMBase.h>
43 #include <GeometryGUI.h>
44
45 // SALOME GUI includes
46 #include <SalomeApp_Tools.h>
47 #include <SalomeApp_Application.h>
48 #include <LightApp_SelectionMgr.h>
49 #include <LightApp_UpdateFlags.h>
50 #include <SUIT_MessageBox.h>
51 #include <SUIT_OverrideCursor.h>
52 #include <SALOME_InteractiveObject.hxx>
53 #include <SALOME_ListIO.hxx>
54
55 // SALOME KERNEL includes
56 #include <SALOMEDS_SComponent.hxx>
57 #include <SALOMEDS_SObject.hxx>
58
59 // Qt includes
60 #include <QStringList>
61 #include <QLineEdit>
62
63 // OCCT includes
64 #include <TopoDS.hxx>
65 #include <TopoDS_Shape.hxx>
66 #include <TopoDS_Shell.hxx>
67 #include <TopExp_Explorer.hxx>
68 #include <BRep_Tool.hxx>
69
70 // IDL includes
71 #include <SALOMEconfig.h>
72 #include CORBA_CLIENT_HEADER(SMESH_Gen)
73
74 //================================================================================
75 /*!
76  * \brief Constructor
77   * \param theToCreate - if this parameter is true then operation is used for creation,
78   * for editing otherwise
79  *
80  * Initialize operation
81 */
82 //================================================================================
83 SMESHGUI_MeshOp::SMESHGUI_MeshOp( const bool theToCreate, const bool theIsMesh )
84 : SMESHGUI_SelectionOp(),
85   myToCreate( theToCreate ),
86   myIsMesh( theIsMesh ),
87   myDlg( 0 ),
88   myShapeByMeshOp( 0 )
89 {
90   if ( GeometryGUI::GetGeomGen()->_is_nil() )// check that GEOM_Gen exists
91     GeometryGUI::InitGeomGen();
92   myIsOnGeometry = true;
93 }
94
95 //================================================================================
96 /*!
97  * \brief Destructor
98 */
99 //================================================================================
100 SMESHGUI_MeshOp::~SMESHGUI_MeshOp()
101 {
102   if ( myDlg )
103     delete myDlg;
104 }
105
106 //================================================================================
107 /*!
108  * \brief Gets dialog of this operation
109   * \retval LightApp_Dialog* - pointer to dialog of this operation
110 */
111 //================================================================================
112 LightApp_Dialog* SMESHGUI_MeshOp::dlg() const
113 {
114   return myDlg;
115 }
116
117 //================================================================================
118 /*!
119  * \brief Creates or edits mesh
120   * \retval bool - TRUE if operation is performed successfully, FALSE otherwise
121  *
122  * Virtual slot redefined from the base class called when "Apply" button is clicked
123  * creates or edits mesh
124  */
125 //================================================================================
126 bool SMESHGUI_MeshOp::onApply()
127 {
128   if (isStudyLocked())
129     return false;
130
131   QString aMess;
132   if ( !isValid( aMess ) )
133   {
134     dlg()->show();
135     if ( aMess != "" )
136       SUIT_MessageBox::warning( myDlg, tr( "SMESH_WRN_WARNING" ), aMess );
137     return false;
138   }
139
140   bool aResult = false;
141   aMess = "";
142   try
143   {
144     if ( myToCreate && myIsMesh )
145       aResult = createMesh( aMess );
146     if ( myToCreate && !myIsMesh )
147       aResult = createSubMesh( aMess );
148     else if ( !myToCreate )
149       aResult = editMeshOrSubMesh( aMess );
150     if ( aResult )
151       update( UF_ObjBrowser | UF_Model );
152   }
153   catch ( const SALOME::SALOME_Exception& S_ex )
154   {
155     SalomeApp_Tools::QtCatchCorbaException( S_ex );
156     aResult = false;
157   }
158   catch ( ... )
159   {
160     aResult = false;
161   }
162
163   if ( aResult )
164   {
165     if ( myToCreate )
166       setDefaultName();
167   }
168   else
169   {
170     if ( aMess == "" )
171       aMess = tr( "SMESH_OPERATION_FAILED" );
172     SUIT_MessageBox::warning( myDlg, tr( "SMESH_ERROR" ), aMess );
173   }
174
175   return aResult;
176 }
177
178 //================================================================================
179 /*!
180  * \brief Creates dialog if necessary and shows it
181  *
182  * Virtual method redefined from base class called when operation is started creates
183  * dialog if necessary and shows it, activates selection
184  */
185 //================================================================================
186 void SMESHGUI_MeshOp::startOperation()
187 {
188   if (!myDlg)
189   {
190     myDlg = new SMESHGUI_MeshDlg( myToCreate, myIsMesh );
191     for ( int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++ )
192     {
193       connect( myDlg->tab( i ), SIGNAL( createHyp( const int, const int ) ),
194               this, SLOT( onCreateHyp( const int, const int ) ) );
195       connect( myDlg->tab( i ), SIGNAL( editHyp( const int, const int ) ),
196               this, SLOT( onEditHyp( const int, const int ) ) );
197       connect( myDlg->tab( i ), SIGNAL( selectAlgo( const int ) ),
198               this, SLOT( onAlgoSelected( const int ) ) );
199     }
200     connect( myDlg, SIGNAL( hypoSet( const QString& )), SLOT( onHypoSet( const QString& )));
201     connect( myDlg, SIGNAL( geomSelectionByMesh( bool )), SLOT( onGeomSelectionByMesh( bool )));
202
203     if ( myToCreate )
204       if ( myIsMesh ) myHelpFileName = "constructing_meshes_page.html";
205       else myHelpFileName = "constructing_submeshes_page.html";
206     else myHelpFileName = "editing_meshes_page.html";
207   }
208   SMESHGUI_SelectionOp::startOperation();
209
210   // iterate through dimensions and get available algoritms, set them to the dialog
211   _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
212   for ( int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++ )
213   {
214     SMESHGUI_MeshTab* aTab = myDlg->tab( i );
215     QStringList hypList;
216     // clear available hypotheses
217     aTab->setAvailableHyps( MainHyp, hypList );
218     aTab->setAvailableHyps( AddHyp, hypList );
219     aTab->setExistingHyps( MainHyp, hypList );
220     aTab->setExistingHyps( AddHyp, hypList );
221     myExistingHyps[ i ][ MainHyp ].clear();
222     myExistingHyps[ i ][ AddHyp ].clear();
223     // set algos
224     availableHyps( i, Algo, hypList, myAvailableHypData[i][Algo] );
225     aTab->setAvailableHyps( Algo, hypList );
226   }
227   if ( myToCreate )
228   {
229     setDefaultName();
230     myDlg->activateObject( myIsMesh ? SMESHGUI_MeshDlg::Geom : SMESHGUI_MeshDlg::Mesh );
231   }
232   else
233     myDlg->activateObject( SMESHGUI_MeshDlg::Obj );
234
235   myDlg->setHypoSets( SMESH::GetHypothesesSets() );
236
237   myDlg->setCurrentTab( SMESH::DIM_3D );
238   myDlg->show();
239
240   selectionDone();
241
242   myIgnoreAlgoSelection = false;
243 }
244
245 //================================================================================
246 /*!
247  * \brief Creates selection filter
248   * \param theId - identifier of current selection widget
249   * \retval SUIT_SelectionFilter* - pointer to the created filter or null
250  *
251  * Creates selection filter in accordance with identifier of current selection widget
252  */
253 //================================================================================
254 SUIT_SelectionFilter* SMESHGUI_MeshOp::createFilter( const int theId ) const
255 {
256   if ( theId == SMESHGUI_MeshDlg::Geom )
257   {
258 //     TColStd_MapOfInteger allTypesMap;
259 //     for ( int i = 0; i < 10; i++ )
260 //       allTypesMap.Add( i );
261 //     return new SMESH_NumberFilter( "GEOM", TopAbs_SHAPE, 0, allTypesMap );
262     return new GEOM_SelectionFilter( (SalomeApp_Study*)study(), true );
263   }
264   else if ( theId == SMESHGUI_MeshDlg::Obj && !myToCreate )
265     return new SMESH_TypeFilter( MESHorSUBMESH );
266   else if ( theId == SMESHGUI_MeshDlg::Mesh )
267     return new SMESH_TypeFilter( MESH );
268   else
269     return 0;
270 }
271
272 //================================================================================
273 /*!
274  * \brief check if selected shape is a subshape of the shape to mesh
275   * \retval bool - check result
276  */
277 //================================================================================
278
279 bool SMESHGUI_MeshOp::isSubshapeOk() const
280 {
281   if ( !myToCreate || myIsMesh ) // not submesh creation
282     return false;
283
284   // mesh
285   QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
286   _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
287   if (!pMesh) return false;
288
289   SMESH::SMESH_Mesh_var mesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>( pMesh );
290   if (mesh->_is_nil()) return false;
291
292   // main shape of the mesh
293   GEOM::GEOM_Object_var mainGeom = mesh->GetShapeToMesh();
294   if (mainGeom->_is_nil()) return false;
295
296   // geometry
297   QStringList aGEOMs;
298   myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs);
299
300   if (aGEOMs.count() > 0) {
301     GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
302     _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
303     if (geomGen->_is_nil() || !aStudy) return false;
304
305     GEOM::GEOM_IGroupOperations_var op =
306         geomGen->GetIGroupOperations(aStudy->StudyId());
307     if (op->_is_nil()) return false;
308
309     // check all selected shapes
310     QStringList::const_iterator aSubShapesIter = aGEOMs.begin();
311     for ( ; aSubShapesIter != aGEOMs.end(); aSubShapesIter++) {
312       QString aSubGeomEntry = (*aSubShapesIter);
313       _PTR(SObject) pSubGeom = studyDS()->FindObjectID(aSubGeomEntry.toLatin1().data());
314       if (!pSubGeom) return false;
315
316       GEOM::GEOM_Object_var aSubGeomVar =
317         GEOM::GEOM_Object::_narrow(_CAST(SObject,pSubGeom)->GetObject());
318       if (aSubGeomVar->_is_nil()) return false;
319
320       // skl for NPAL14695 - implementation of searching of mainObj
321       GEOM::GEOM_Object_var mainObj = op->GetMainShape(aSubGeomVar);
322       //if (mainObj->_is_nil() ||
323       //    string(mainObj->GetEntry()) != string(mainGeom->GetEntry())) return false;
324       while(1) {
325         if (mainObj->_is_nil())
326           return false;
327         if (std::string(mainObj->GetEntry()) == std::string(mainGeom->GetEntry()))
328           return true;
329         mainObj = op->GetMainShape(mainObj);
330       }
331     }
332     //return true;
333   }
334
335   return false;
336 }
337
338 //================================================================================
339 /*!
340  * \brief Return name of the algorithm that does not support submeshes and makes
341  * submesh creation useless 
342  *  \retval char* - string is to be deleted!!!
343  */
344 //================================================================================
345
346 char* SMESHGUI_MeshOp::isSubmeshIgnored() const
347 {
348   if ( myToCreate && !myIsMesh ) {
349
350     QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
351     QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
352     _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
353     if ( pMesh ) {
354
355       QStringList algoNames;
356       THypList    algoList;
357       existingHyps(3, Algo, pMesh, algoNames, algoList);
358       if (!algoList.empty()) {
359         HypothesisData* algo = SMESH::GetHypothesisData( algoList[0].first->GetName() );
360         if ( algo &&
361              algo->InputTypes.empty() && // builds all dimensions it-self
362              !algo->IsSupportSubmeshes )
363           return CORBA::string_dup( algoNames[0].toLatin1().data() );
364       }
365
366 //       GEOM::GEOM_Object_var geom;
367 //       if (_PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() ))
368 //         geom = SMESH::SObjectToInterface<GEOM::GEOM_Object>( pGeom );
369
370 //       if ( !geom->_is_nil() && geom->GetShapeType() >= GEOM::FACE ) { // WIRE, EDGE as well
371         existingHyps(2, Algo, pMesh, algoNames, algoList);
372         if (!algoList.empty()) {
373           HypothesisData* algo = SMESH::GetHypothesisData( algoList[0].first->GetName() );
374           if ( algo &&
375                algo->InputTypes.empty() && // builds all dimensions it-self
376                !algo->IsSupportSubmeshes )
377             return CORBA::string_dup( algoNames[0].toLatin1().data() );
378         }
379 //       }
380     }
381   }
382   return 0;
383 }
384
385 //================================================================================
386 /*!
387  * \brief find an existing submesh by the selected shape
388  * \retval _PTR(SObject) - the found submesh SObject
389  */
390 //================================================================================
391
392 _PTR(SObject) SMESHGUI_MeshOp::getSubmeshByGeom() const
393 {
394   QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
395   QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
396   _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
397   _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
398   if ( pMesh && pGeom ) {
399     GEOM::GEOM_Object_var geom = SMESH::SObjectToInterface<GEOM::GEOM_Object>( pGeom );
400     if ( !geom->_is_nil() ) {
401       int tag = -1;
402       switch ( geom->GetShapeType() ) {
403       case GEOM::VERTEX:   tag = SMESH::Tag_SubMeshOnVertex;   break;
404       case GEOM::EDGE:     tag = SMESH::Tag_SubMeshOnEdge;     break;
405       case GEOM::WIRE:     tag = SMESH::Tag_SubMeshOnWire;     break;
406       case GEOM::FACE:     tag = SMESH::Tag_SubMeshOnFace;     break;
407       case GEOM::SHELL:    tag = SMESH::Tag_SubMeshOnShell;    break;
408       case GEOM::SOLID:    tag = SMESH::Tag_SubMeshOnSolid;    break;
409       case GEOM::COMPOUND: tag = SMESH::Tag_SubMeshOnCompound; break;
410       default:;
411       }
412       _PTR(GenericAttribute) anAttr;
413       _PTR(SObject) aSubmeshRoot;
414       _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
415       if ( pMesh->FindSubObject( tag, aSubmeshRoot ) )
416       {
417         _PTR(ChildIterator) smIter = aStudy->NewChildIterator( aSubmeshRoot );
418         for ( ; smIter->More(); smIter->Next() )
419         {
420           _PTR(SObject) aSmObj = smIter->Value();
421           if ( ! aSmObj->FindAttribute( anAttr, "AttributeIOR" ))
422             continue;
423           _PTR(ChildIterator) anIter1 = aStudy->NewChildIterator(aSmObj);
424           for ( ; anIter1->More(); anIter1->Next()) {
425             _PTR(SObject) pGeom2 = anIter1->Value();
426             if ( pGeom2->ReferencedObject( pGeom2 ) &&
427                  pGeom2->GetID() == pGeom->GetID() )
428               return aSmObj;
429           }
430         }
431       }
432     }
433   }
434   return _PTR(SObject)();
435 }
436
437 //================================================================================
438 /*!
439  * \brief Updates dialog's look and feel
440  *
441  * Virtual method redefined from the base class updates dialog's look and feel
442  */
443 //================================================================================
444 void SMESHGUI_MeshOp::selectionDone()
445 {
446   if (!dlg()->isVisible() || !myDlg->isEnabled())
447     return;
448
449   SMESHGUI_SelectionOp::selectionDone();
450
451   try
452   {
453     myIsOnGeometry = true;
454
455     //Check geometry for mesh
456     QString anObjEntry = myDlg->selectedObject(SMESHGUI_MeshDlg::Obj);
457     _PTR(SObject) pObj = studyDS()->FindObjectID(anObjEntry.toLatin1().data());
458     if (pObj)
459     {
460       SMESH::SMESH_Mesh_var aMeshVar =
461         SMESH::SMESH_Mesh::_narrow(_CAST(SObject,pObj)->GetObject());
462       if (!aMeshVar->_is_nil()) {
463         if (!myToCreate && !aMeshVar->HasShapeToMesh())
464           myIsOnGeometry = false;
465       }
466     }
467
468     if (myIsOnGeometry)
469     {
470       // Enable tabs according to shape dimension
471
472       int shapeDim = 3;
473
474       QStringList aGEOMs;
475       myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs);
476       GEOM::ListOfGO_var aSeq = new GEOM::ListOfGO;
477
478       if (aGEOMs.count() > 0) {
479         // one or more GEOM shape selected
480         aSeq->length(aGEOMs.count());
481         QStringList::const_iterator aSubShapesIter = aGEOMs.begin();
482         int iSubSh = 0;
483         for ( ; aSubShapesIter != aGEOMs.end(); aSubShapesIter++, iSubSh++) {
484           QString aSubGeomEntry = (*aSubShapesIter);
485           _PTR(SObject) pSubGeom = studyDS()->FindObjectID(aSubGeomEntry.toLatin1().data());
486           GEOM::GEOM_Object_var aSubGeomVar =
487             GEOM::GEOM_Object::_narrow(_CAST(SObject,pSubGeom)->GetObject());
488           aSeq[iSubSh] = aSubGeomVar;
489         }
490       } else {
491         // get geometry by selected sub-mesh
492         QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
493         _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
494         GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
495         if (!aGeomVar->_is_nil()) {
496           aSeq->length(1);
497           aSeq[0] = aGeomVar;
498         }
499       }
500
501       if (aSeq->length() > 0) {
502         shapeDim = 0;
503         for (int iss = 0; iss < aSeq->length() && shapeDim < 3; iss++) {
504           GEOM::GEOM_Object_var aGeomVar = aSeq[iss];
505           switch ( aGeomVar->GetShapeType() ) {
506           case GEOM::SOLID:  shapeDim = 3; break;
507           case GEOM::SHELL:
508             {
509               //shapeDim = 3; // Bug 0016155: EDF PAL 447: If the shape is a Shell, disable 3D tab
510               shapeDim = (shapeDim < 2) ? 2 : shapeDim;
511               TopoDS_Shape aShape;
512               if (GEOMBase::GetShape(aGeomVar, aShape)) {
513                 if (/*aShape.Closed()*/BRep_Tool::IsClosed(aShape))
514                   shapeDim = 3;
515               }
516             }
517             break;
518           case GEOM::FACE:   shapeDim = (shapeDim < 2) ? 2 : shapeDim; break;
519           case GEOM::WIRE:
520           case GEOM::EDGE:   shapeDim = (shapeDim < 1) ? 1 : shapeDim; break;
521           case GEOM::VERTEX: break;
522           default:
523             {
524               TopoDS_Shape aShape;
525               if (GEOMBase::GetShape(aGeomVar, aShape)) {
526                 TopExp_Explorer exp (aShape, TopAbs_SHELL);
527                 if (exp.More()) {
528                   //shapeDim = 3; // Bug 0016155: EDF PAL 447: If the shape is a Shell, disable 3D tab
529                   shapeDim = (shapeDim < 2) ? 2 : shapeDim;
530                   for (; exp.More() && shapeDim == 2; exp.Next()) {
531                     if (/*exp.Current().Closed()*/BRep_Tool::IsClosed(exp.Current()))
532                       shapeDim = 3;
533                   }
534                 }
535                 else if ( exp.Init( aShape, TopAbs_FACE ), exp.More() )
536                   shapeDim = (shapeDim < 2) ? 2 : shapeDim;
537                 else if ( exp.Init( aShape, TopAbs_EDGE ), exp.More() )
538                   shapeDim = (shapeDim < 1) ? 1 : shapeDim;
539                 else
540                   ;//shapeDim = 0;
541               }
542             }
543           }
544         }
545       }
546       for (int i = SMESH::DIM_3D; i > shapeDim; i--) {
547         // reset algos before disabling tabs (0020138)
548         onAlgoSelected(-1, i);
549       }
550       myDlg->setMaxHypoDim( shapeDim );
551
552
553       if (!myToCreate) // edition: read hypotheses
554       {
555         if (pObj != 0)
556         {
557           SMESH::SMESH_subMesh_var aVar =
558             SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
559           myDlg->setObjectShown( SMESHGUI_MeshDlg::Mesh, !aVar->_is_nil() );
560           myDlg->setObjectShown( SMESHGUI_MeshDlg::Geom, true );
561           myDlg->objectWg( SMESHGUI_MeshDlg::Mesh, SMESHGUI_MeshDlg::Btn )->hide();
562           myDlg->objectWg( SMESHGUI_MeshDlg::Geom, SMESHGUI_MeshDlg::Btn )->hide();
563           myDlg->updateGeometry();
564           myDlg->adjustSize();
565           readMesh();
566         }
567         else
568           myDlg->reset();
569       }
570       else if ( !myIsMesh ) // submesh creation
571       {
572         // if a submesh on the selected shape already exist, pass to submesh edition mode
573         if ( _PTR(SObject) pSubmesh = getSubmeshByGeom() ) {
574           SMESH::SMESH_subMesh_var sm =
575             SMESH::SObjectToInterface<SMESH::SMESH_subMesh>( pSubmesh );
576           bool editSubmesh = ( !sm->_is_nil() &&
577                                SUIT_MessageBox::question( myDlg, tr( "SMESH_WARNING" ),
578                                                           tr( "EDIT_SUBMESH_QUESTION"),
579                                                           SUIT_MessageBox::Yes | 
580                                                           SUIT_MessageBox::No,
581                                                           SUIT_MessageBox::No )
582                                == SUIT_MessageBox::Yes );
583           if ( editSubmesh )
584           {
585             selectionMgr()->clearFilters();
586             selectObject( pSubmesh );
587             SMESHGUI::GetSMESHGUI()->switchToOperation(704);
588             return;
589           }
590           else
591           {
592             myDlg->selectObject( "", SMESHGUI_MeshDlg::Geom, "" );
593             selectObject( _PTR(SObject)() );
594             selectionDone();
595             return;
596           }
597         }
598         // discard selected mesh if submesh creation not allowed because of
599         // a global algorithm that does not support submeshes
600         if ( char* algoName = isSubmeshIgnored() ) {
601           SUIT_MessageBox::warning( myDlg, tr( "SMESH_ERROR" ),
602                                     tr("SUBMESH_NOT_ALLOWED").arg(algoName));
603           CORBA::string_free( algoName );
604           myDlg->selectObject( "", SMESHGUI_MeshDlg::Mesh, "" );
605           selectObject( _PTR(SObject)() );
606           selectionDone();
607           return;
608         }
609
610         // enable/disable popup for choice of geom selection way
611         bool enable = false;
612         QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
613         if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() )) {
614           SMESH::SMESH_Mesh_var mesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>( pMesh );
615           if ( !mesh->_is_nil() )
616             enable = ( shapeDim > 1 ) && ( mesh->NbEdges() > 0 );
617         }
618         myDlg->setGeomPopupEnabled( enable );
619       }
620     }
621     else {
622       myDlg->enableTab( SMESH::DIM_3D );
623       QStringList hypList;
624       availableHyps( SMESH::DIM_3D, Algo, hypList,
625                      myAvailableHypData[SMESH::DIM_3D][Algo]);
626
627       SMESHGUI_MeshTab* aTab = myDlg->tab( SMESH::DIM_3D );
628       aTab->setAvailableHyps( Algo, hypList );
629       for (int i = SMESH::DIM_0D;i < SMESH::DIM_3D; ++i) {
630         myDlg->disableTab(i);
631       }
632       //Hide labels and fields (Mesh ang Geometry)
633       myDlg->setObjectShown( SMESHGUI_MeshDlg::Mesh, false );
634       myDlg->setObjectShown( SMESHGUI_MeshDlg::Geom, false );
635       myDlg->adjustSize();
636       readMesh();
637     }
638   }
639   catch ( const SALOME::SALOME_Exception& S_ex )
640   {
641     SalomeApp_Tools::QtCatchCorbaException( S_ex );
642   }
643   catch ( ... )
644   {
645   }
646 }
647
648 //================================================================================
649 /*!
650  * \brief Verifies validity of input data
651   * \param theMess - Output parameter intended for returning error message
652   * \retval bool  - TRUE if input data is valid, false otherwise
653  *
654  * Verifies validity of input data. This method is called when "Apply" or "OK" button
655  * is pressed before mesh creation or editing.
656  */
657 //================================================================================
658 bool SMESHGUI_MeshOp::isValid( QString& theMess ) const
659 {
660   // Selected object to be  edited
661   if ( !myToCreate && myDlg->selectedObject( SMESHGUI_MeshDlg::Obj ) == "" )
662   {
663     theMess = tr( "THERE_IS_NO_OBJECT_FOR_EDITING" );
664     return false;
665   }
666
667   // Name
668   QString aMeshName = myDlg->objectText( SMESHGUI_MeshDlg::Obj ).trimmed();
669   if ( aMeshName.isEmpty() )
670   {
671     theMess = myIsMesh ? tr( "NAME_OF_MESH_IS_EMPTY" ) : tr( "NAME_OF_SUBMESH_IS_EMPTY" );
672     return false;
673   }
674
675 /*  // Imported mesh, if create sub-mesh or edit mesh
676   if ( !myToCreate || ( myToCreate && !myIsMesh ))
677   {
678     QString aMeshEntry = myDlg->selectedObject
679       ( myToCreate ? SMESHGUI_MeshDlg::Mesh : SMESHGUI_MeshDlg::Obj );
680     if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() )) {
681       SMESH::SMESH_Mesh_var mesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>( pMesh );
682       if ( !mesh->_is_nil() && CORBA::is_nil( mesh->GetShapeToMesh() )) {
683         theMess = tr( "IMPORTED_MESH" );
684         return false;
685       }
686     }
687   }*/
688
689   // Geom
690   if ( myToCreate )
691   {
692     QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
693     if ( aGeomEntry == "" )
694     {
695       theMess = tr( "GEOMETRY_OBJECT_IS_NOT_DEFINED" );
696       return false;
697     }
698     _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
699     if ( !pGeom || GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() )->_is_nil() )
700     {
701       theMess = tr( "GEOMETRY_OBJECT_IS_NULL" );
702       return false;
703     }
704
705     // Mesh
706     if ( !myIsMesh ) // i.e sub-mesh creation,
707     {
708       QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
709       if ( aMeshEntry == "" )
710       {
711         theMess = tr( "MESH_IS_NOT_DEFINED" );
712         return false;
713       }
714       _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
715       if ( !pMesh || SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() )->_is_nil() )
716       {
717         theMess = tr( "MESH_IS_NULL" );
718         return false;
719       }
720       if ( !isSubshapeOk() )
721       {
722         theMess = tr( "INVALID_SUBSHAPE" );
723         return false;
724       }
725     }
726   }
727
728   return true;
729 }
730
731 //================================================================================
732 /*!
733  * \brief check compatibility of the algorithm and another algorithm or hypothesis
734   * \param theAlgoData - algorithm data
735   * \param theHypData - hypothesis data
736   * \param theHypType - hypothesis type
737   * \param theHypTypeName - hypothesis type name, must be provided if 2-nd arg is not algo
738   * \retval bool - check result
739  */
740 //================================================================================
741
742 static bool isCompatible(const HypothesisData* theAlgoData,
743                          const HypothesisData* theHypData,
744                          const int             theHypType)
745 {
746   if ( !theAlgoData )
747     return true;
748
749   if ( theHypType == SMESHGUI_MeshOp::Algo )
750     return SMESH::IsCompatibleAlgorithm( theAlgoData, theHypData );
751
752   bool isOptional;
753   return ( SMESH::IsAvailableHypothesis( theAlgoData, theHypData->TypeName, isOptional ));
754 }
755
756 //================================================================================
757 /*!
758  * \brief Gets available hypotheses or algorithms
759   * \param theDim - specifies dimension of returned hypotheses/algorifms
760   * \param theHypType - specifies whether algorims or hypotheses or additional ones
761   * are retrieved (possible values are in HypType enumeration)
762   * \param theHyps - Output list of hypotheses' names
763   * \param theAlgoData - to select hypos able to be used by this algo (optional)
764  *
765  * Gets available hypotheses or algorithm in accordance with input parameters
766  */
767 //================================================================================
768 void SMESHGUI_MeshOp::availableHyps( const int       theDim,
769                                      const int       theHypType,
770                                      QStringList&    theHyps,
771                                      THypDataList&   theDataList,
772                                      HypothesisData* theAlgoData ) const
773 {
774   theDataList.clear();
775   theHyps.clear();
776   bool isAlgo = ( theHypType == Algo );
777   bool isAux  = ( theHypType == AddHyp );
778   QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses( isAlgo, theDim, isAux, myIsOnGeometry );
779
780   QStringList::const_iterator anIter;
781   for ( anIter = aHypTypeNameList.begin(); anIter != aHypTypeNameList.end(); ++anIter )
782   {
783     HypothesisData* aData = SMESH::GetHypothesisData( *anIter );
784     if ( isCompatible ( theAlgoData, aData, theHypType )) {
785       theDataList.append( aData );
786       theHyps.append( aData->Label );
787     }
788   }
789 }
790
791 //================================================================================
792 /*!
793  * \brief Gets existing hypotheses or algorithms
794   * \param theDim - specifies dimension of returned hypotheses/algorifms
795   * \param theHypType - specifies whether algorims or hypotheses or additional ones
796   * are retrieved (possible values are in HypType enumeration)
797   * \param theFather - start object for finding ( may be component, mesh, or sub-mesh )
798   * \param theHyps - output list of names.
799   * \param theHypVars - output list of variables.
800   * \param theAlgoData - to select hypos able to be used by this algo (optional)
801  *
802  * Gets existing (i.e. already created) hypotheses or algorithm in accordance with
803  * input parameters
804  */
805 //================================================================================
806 void SMESHGUI_MeshOp::existingHyps( const int theDim,
807                                     const int theHypType,
808                                     _PTR(SObject) theFather,
809                                     QStringList& theHyps,
810                                     THypList& theHypList,
811                                     HypothesisData* theAlgoData)
812 {
813   // Clear hypoheses list
814   theHyps.clear();
815   theHypList.clear();
816
817   if ( !theFather )
818     return;
819
820   const bool isAux  = ( theHypType == AddHyp );
821
822   _PTR(SObject)          aHypRoot;
823   _PTR(GenericAttribute) anAttr;
824   _PTR(AttributeName)    aName;
825   _PTR(AttributeIOR)     anIOR;
826
827   bool isMesh = !_CAST( SComponent, theFather );
828   int aPart = -1;
829   if ( isMesh )
830     aPart = theHypType == Algo ? SMESH::Tag_RefOnAppliedAlgorithms : SMESH::Tag_RefOnAppliedHypothesis;
831   else
832     aPart = theHypType == Algo ? SMESH::Tag_AlgorithmsRoot : SMESH::Tag_HypothesisRoot;
833
834   if ( theFather->FindSubObject( aPart, aHypRoot ) )
835   {
836     _PTR(ChildIterator) anIter =
837       SMESH::GetActiveStudyDocument()->NewChildIterator( aHypRoot );
838     for ( ; anIter->More(); anIter->Next() )
839     {
840       _PTR(SObject) anObj = anIter->Value();
841       if ( isMesh ) // i.e. mesh or submesh
842       {
843         _PTR(SObject) aRefObj;
844         if ( anObj->ReferencedObject( aRefObj ) )
845           anObj = aRefObj;
846         else
847           continue;
848       }
849       if ( anObj->FindAttribute( anAttr, "AttributeName" ) )
850       {
851         aName = anAttr;
852         CORBA::Object_var aVar = _CAST(SObject,anObj)->GetObject();
853         if ( !CORBA::is_nil( aVar ) )
854         {
855           SMESH::SMESH_Hypothesis_var aHypVar = SMESH::SMESH_Hypothesis::_narrow( aVar );
856           if ( !aHypVar->_is_nil() )
857           {
858             HypothesisData* aData = SMESH::GetHypothesisData( aHypVar->GetName() );
859             if ( ( theDim == -1 || aData->Dim.contains( theDim ) ) &&
860                  ( isCompatible ( theAlgoData, aData, theHypType )) &&
861                  ( isAux == aData->IsAux ))
862             {
863               std::string aHypName = aName->Value();
864               theHyps.append( aHypName.c_str() );
865               theHypList.append( THypItem( aHypVar, aHypName.c_str() ) );
866             }
867           }
868         }
869       }
870     }
871   }
872 }
873
874 //================================================================================
875 /*!
876  * \brief If create or edit a submesh, return a hypothesis holding parameters used
877  *        to mesh a subshape
878   * \param aHypType - The hypothesis type name
879   * \param aServerLib - Server library name
880   * \param hypData - The structure holding the hypothesis type etc.
881   * \retval SMESH::SMESH_Hypothesis_var - the hypothesis holding parameter values
882  */
883 //================================================================================
884
885 SMESH::SMESH_Hypothesis_var
886 SMESHGUI_MeshOp::getInitParamsHypothesis( const QString& aHypType,
887                                           const QString& aServerLib ) const
888 {
889   if ( aHypType.isEmpty() || aServerLib.isEmpty() )
890     return SMESH::SMESH_Hypothesis::_nil();
891
892   const int nbColonsInMeshEntry = 3;
893   bool isSubMesh = myToCreate ?
894     !myIsMesh :
895     myDlg->selectedObject( SMESHGUI_MeshDlg::Obj ).count(':') > nbColonsInMeshEntry;
896
897   // get mesh and geom object
898   SMESH::SMESH_Mesh_var aMeshVar = SMESH::SMESH_Mesh::_nil();
899   GEOM::GEOM_Object_var aGeomVar = GEOM::GEOM_Object::_nil();
900
901   QString anEntry;
902   if ( isSubMesh )
903   {
904     anEntry = myDlg->selectedObject
905       ( myToCreate ? SMESHGUI_MeshDlg::Mesh : SMESHGUI_MeshDlg::Obj );
906     if ( _PTR(SObject) pObj = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
907     {
908       CORBA::Object_ptr Obj = _CAST( SObject,pObj )->GetObject();
909       if ( myToCreate ) // mesh and geom may be selected
910       {
911         aMeshVar = SMESH::SMESH_Mesh::_narrow( Obj );
912         anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
913         if ( _PTR(SObject) pGeom = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
914           aGeomVar= GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
915       }
916       else // edition: sub-mesh may be selected
917       {
918         SMESH::SMESH_subMesh_var sm = SMESH::SMESH_subMesh::_narrow( Obj );
919         if ( !sm->_is_nil() ) {
920           aMeshVar = sm->GetFather();
921           aGeomVar = sm->GetSubShape();
922         }
923       }
924     }
925   }
926   else // mesh
927   {
928     if ( !myToCreate ) // mesh to edit can be selected
929     {
930       anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
931       if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
932       {
933         aMeshVar = SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
934         if ( !aMeshVar->_is_nil() )
935           aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pMesh );
936       }
937     }
938     if ( aGeomVar->_is_nil() ) {
939       anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
940       if ( _PTR(SObject) pGeom = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
941       {
942         aGeomVar= GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
943       }
944     }
945   }
946
947   return SMESHGUI::GetSMESHGen()->GetHypothesisParameterValues( aHypType.toLatin1().data(),
948                                                                 aServerLib.toLatin1().data(),
949                                                                 aMeshVar,
950                                                                 aGeomVar,
951                                                                 /*byMesh = */isSubMesh);
952
953 }
954
955 //================================================================================
956 /*!
957  * \Brief Returns tab dimention
958   * \param tab - the tab in the dlg
959   * \param dlg - my dialogue
960   * \retval int - dimention
961  */
962 //================================================================================
963
964 static int getTabDim (const QObject* tab, SMESHGUI_MeshDlg* dlg )
965 {
966   int aDim = -1;
967   for (int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++)
968     if (tab == dlg->tab(i))
969       aDim = i;
970   return aDim;
971 }
972
973 //================================================================================
974 /*!
975  * \brief Create hypothesis
976   * \param theHypType - hypothesis category (main or additional)
977   * \param theIndex - index of type of hypothesis to be cerated
978  *
979  * Specifies dimension of hypothesis to be created (using sender() method),
980  * specifies its type and calls method for hypothesis creation
981  */
982 //================================================================================
983 void SMESHGUI_MeshOp::onCreateHyp( const int theHypType, const int theIndex )
984 {
985   // Specifies dimension of hypothesis to be created
986   int aDim = getTabDim( sender(), myDlg );
987   if (aDim == -1)
988     return;
989
990   // Specifies type of hypothesis to be created
991   THypDataList& dataList = myAvailableHypData[ aDim ][ theHypType ];
992   if (theIndex < 0 || theIndex >= dataList.count())
993     return;
994   QString aHypTypeName = dataList[ theIndex ]->TypeName;
995
996   // Create hypothesis
997   createHypothesis(aDim, theHypType, aHypTypeName);
998 }
999
1000 namespace
1001 {
1002   QString GetUniqueName (const QStringList& theHypNames,
1003                          const QString& theName,
1004                          size_t theIteration = 1)
1005   {
1006     QString aName = theName + "_" + QString::number( theIteration );
1007     if ( theHypNames.contains( aName ) )
1008       return GetUniqueName( theHypNames, theName, ++theIteration );
1009     return aName;
1010   }
1011 }
1012
1013 //================================================================================
1014 /*!
1015  *  Create hypothesis and update dialog.
1016  *  \param theDim - dimension of hypothesis to be created
1017  *  \param theType - hypothesis category (algorithm, hypothesis, additional hypothesis)
1018  *  \param theTypeName - specifies hypothesis to be created
1019  */
1020 //================================================================================
1021
1022 void SMESHGUI_MeshOp::createHypothesis(const int theDim,
1023                                         const int theType,
1024                                         const QString& theTypeName)
1025 {
1026   HypothesisData* aData = SMESH::GetHypothesisData(theTypeName);
1027   if (!aData)
1028     return;
1029
1030   myDim = theDim;
1031   myType = theType;
1032   QStringList aHypNames;
1033   TDim2Type2HypList::const_iterator aDimIter = myExistingHyps.begin();
1034   for ( ; aDimIter != myExistingHyps.end(); aDimIter++) {
1035     const TType2HypList& aType2HypList = aDimIter.value();
1036     TType2HypList::const_iterator aTypeIter = aType2HypList.begin();
1037     for ( ; aTypeIter != aType2HypList.end(); aTypeIter++) {
1038       const THypList& aHypList = aTypeIter.value();
1039       THypList::const_iterator anIter = aHypList.begin();
1040       for ( ; anIter != aHypList.end(); anIter++) {
1041         const THypItem& aHypItem = *anIter;
1042         const QString& aHypName = aHypItem.second;
1043         aHypNames.append(aHypName);
1044       }
1045     }
1046   }
1047   QString aHypName = GetUniqueName( aHypNames, aData->Label);
1048
1049   // existing hypos
1050   bool dialog = false;
1051
1052   QString aClientLibName = aData->ClientLibName;
1053   if (aClientLibName == "") {
1054     // Call hypothesis creation server method (without GUI)
1055     SMESH::CreateHypothesis(theTypeName, aHypName, false);
1056   } else {
1057     // Get hypotheses creator client (GUI)
1058     // BUG 0020378
1059     //SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(theTypeName);
1060     SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(theTypeName);
1061
1062     // Create hypothesis
1063     if (aCreator) {
1064       // Get parameters appropriate to initialize a new hypothesis
1065       SMESH::SMESH_Hypothesis_var initParamHyp =
1066         getInitParamsHypothesis(theTypeName, aData->ServerLibName);
1067
1068       removeCustomFilters(); // Issue 0020170
1069
1070       // Get Entry of the Geom object
1071       QString anObjEntry = "";
1072       anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1073       if ( anObjEntry == "" ) {
1074         anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1075         if ( anObjEntry != "" ) {
1076           _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
1077           GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
1078           anObjEntry = ( aGeomVar->_is_nil() ) ? "" : anObjEntry = aGeomVar->GetStudyEntry();
1079         }
1080       }
1081
1082       aCreator->setShapeEntry( anObjEntry );
1083       myDlg->setEnabled( false );
1084       aCreator->create(initParamHyp, aHypName, myDlg, this, SLOT( onHypoCreated( int ) ) );
1085       dialog = true;
1086     }
1087     else
1088       SMESH::CreateHypothesis(theTypeName, aHypName, false);
1089   }
1090
1091   if( !dialog )
1092     onHypoCreated(2);
1093 }
1094
1095 //================================================================================
1096 /*!
1097  *  Necessary steps after hypothesis creation
1098  *  \param result - creation result:
1099  *   0 = rejected
1100  *   1 = accepted
1101  *   2 = additional value meaning that slot is called not from dialog box
1102  */
1103 //================================================================================
1104 void SMESHGUI_MeshOp::onHypoCreated( int result )
1105 {
1106   if( result != 2 )
1107   {
1108     int obj = myDlg->getActiveObject();
1109     onActivateObject( obj ); // Issue 0020170. Restore filters
1110     myDlg->setEnabled( true );
1111   }
1112
1113   _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
1114
1115   int nbHyp = myExistingHyps[myDim][myType].count();
1116   HypothesisData* algoData = hypData( myDim, Algo, currentHyp( myDim, Algo ));
1117   QStringList aNewHyps;
1118   existingHyps(myDim, myType, aFather, aNewHyps, myExistingHyps[myDim][myType], algoData);
1119   if (aNewHyps.count() > nbHyp)
1120   {
1121     for (int i = nbHyp; i < aNewHyps.count(); i++)
1122       myDlg->tab(myDim)->addHyp(myType, aNewHyps[i]);
1123   }
1124
1125   if( result!=2 && myHypoSet )
1126     processSet();
1127 }
1128
1129 //================================================================================
1130 /*!
1131  * \brief Calls plugin methods for hypothesis editing
1132   * \param theHypType - specifies whether main hypothesis or additional one
1133   * is edited
1134   * \param theIndex - index of existing hypothesis
1135  *
1136  * Calls plugin methods for hypothesis editing
1137  */
1138 //================================================================================
1139 void SMESHGUI_MeshOp::onEditHyp( const int theHypType, const int theIndex )
1140 {
1141   // Speicfies dimension of hypothesis to be created
1142   int aDim = getTabDim( sender(), myDlg );
1143   if (aDim == -1)
1144     return;
1145
1146   const THypList& aList = myExistingHyps[ aDim ][ theHypType ];
1147   if ( theIndex < 0 || theIndex >= aList.count() )
1148     return;
1149   const THypItem& aHypItem = aList[ theIndex ];
1150   SMESH::SMESH_Hypothesis_var aHyp = aHypItem.first;
1151   if ( aHyp->_is_nil() )
1152     return;
1153
1154   // BUG 0020378
1155   //SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(aHyp->GetName());
1156   SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(aHyp->GetName());
1157   if ( aCreator )
1158   {
1159     // Get initial parameters
1160     SMESH::SMESH_Hypothesis_var initParamHyp =
1161       getInitParamsHypothesis( aHyp->GetName(), aHyp->GetLibName());
1162     aCreator->setInitParamsHypothesis( initParamHyp );
1163
1164     // Get Entry of the Geom object
1165     QString anObjEntry = "";
1166     anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1167     if ( anObjEntry == "" ) {
1168       anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1169       if ( anObjEntry != "" ) {
1170         _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
1171         GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
1172         anObjEntry = aGeomVar->GetStudyEntry();
1173       }
1174     }
1175
1176     aCreator->setShapeEntry( anObjEntry );
1177     removeCustomFilters(); // Issue 0020170
1178     myDlg->setEnabled( false );
1179     aCreator->edit( aHyp.in(), aHypItem.second, dlg(), this, SLOT( onHypoEdited( int ) ) );
1180   }
1181 }
1182
1183 //================================================================================
1184 /*!
1185  *  Necessary steps after hypothesis edition
1186  *  \param result - creation result:
1187  *   0 = rejected
1188  *   1 = accepted
1189  */
1190 //================================================================================
1191 void SMESHGUI_MeshOp::onHypoEdited( int result )
1192 {
1193   int obj = myDlg->getActiveObject();
1194   onActivateObject( obj ); // Issue 0020170. Restore filters
1195   myDlg->setEnabled( true );
1196 }
1197
1198 //================================================================================
1199 /*!
1200  * \brief access to hypothesis data
1201   * \param theDim - hyp dimension
1202   * \param theHypType - hyp type (Algo,MainHyp or AddHyp)
1203   * \param theIndex - index in the list
1204   * \retval HypothesisData* - result data, may be 0
1205  */
1206 //================================================================================
1207
1208 HypothesisData* SMESHGUI_MeshOp::hypData( const int theDim,
1209                                           const int theHypType,
1210                                           const int theIndex)
1211 {
1212   if ( theDim     > -1 && theDim    <= SMESH::DIM_3D &&
1213        theHypType > -1 && theHypType < NbHypTypes &&
1214        theIndex   > -1 && theIndex   < myAvailableHypData[ theDim ][ theHypType ].count() )
1215     return myAvailableHypData[ theDim ][ theHypType ][ theIndex ];
1216   return 0;
1217 }
1218
1219 //================================================================================
1220 /*!
1221  * \brief Set available algos and hypos according to the selected algorithm
1222   * \param theIndex - algorithm index
1223  */
1224 //================================================================================
1225
1226 void SMESHGUI_MeshOp::onAlgoSelected( const int theIndex,
1227                                       const int theDim )
1228 {
1229   if ( myIgnoreAlgoSelection )
1230     return;
1231
1232   int aDim = theDim < 0 ? getTabDim( sender(), myDlg ): theDim;
1233   if (aDim == -1)
1234     return;
1235
1236   // find highest available dimension, all algos of this dimension are available for choice
1237   int aTopDim = -1;
1238   for (int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++)
1239     if (isAccessibleDim( i ))
1240       aTopDim = i;
1241   if (aTopDim == -1)
1242     return;
1243
1244   const bool isSubmesh = ( myToCreate ? !myIsMesh : myDlg->isObjectShown( SMESHGUI_MeshDlg::Mesh ));
1245
1246   HypothesisData* algoData = hypData( aDim, Algo, theIndex );
1247   HypothesisData* algoByDim[4];
1248   algoByDim[ aDim ] = algoData;
1249
1250   QStringList anAvailable;
1251   if ( !algoData ) { // all algos becomes available
1252     availableHyps( aDim, Algo, anAvailable, myAvailableHypData[ aDim ][ Algo ]);
1253     myDlg->tab( aDim )->setAvailableHyps( Algo, anAvailable );
1254   }
1255
1256   // check that algorithms of other dimentions are compatible with
1257   // the selected one
1258
1259    // 2 loops: backward and forward from algo dimension
1260   for ( int forward = false; forward <= true; ++forward )
1261   {
1262     int dim = aDim + 1, lastDim = SMESH::DIM_3D, dir = 1;
1263     if ( !forward ) {
1264       dim = aDim - 1; lastDim = SMESH::DIM_0D; dir = -1;
1265     }
1266     HypothesisData* prevAlgo = algoData;
1267     bool noCompatible = false;
1268     for ( ; dim * dir <= lastDim * dir; dim += dir)
1269     {
1270       if ( !isAccessibleDim( dim ))
1271         continue;
1272       if ( noCompatible ) { // the selected algo has no compatible ones
1273         anAvailable.clear();
1274         myDlg->tab( dim )->setAvailableHyps( Algo, anAvailable );
1275         myAvailableHypData[dim][Algo].clear();
1276         algoByDim[ dim ] = 0;
1277         continue;
1278       }
1279       // get currently selected algo
1280       int algoIndex = currentHyp( dim, Algo );
1281       HypothesisData* curAlgo = hypData( dim, Algo, algoIndex );
1282       if ( curAlgo ) { // some algo selected
1283         if ( !isCompatible( prevAlgo, curAlgo, Algo ))
1284           curAlgo = 0;
1285       }
1286       // set new available algoritms
1287       availableHyps( dim, Algo, anAvailable, myAvailableHypData[dim][Algo], prevAlgo );
1288       HypothesisData* soleCompatible = 0;
1289       if ( anAvailable.count() == 1 )
1290         soleCompatible = myAvailableHypData[dim][Algo][0];
1291       if ( dim == aTopDim && prevAlgo ) // all available algoritms should be selectable any way
1292         availableHyps( dim, Algo, anAvailable, myAvailableHypData[dim][Algo], 0 );
1293       myDlg->tab( dim )->setAvailableHyps( Algo, anAvailable );
1294       noCompatible = anAvailable.isEmpty();
1295
1296       // restore previously selected algo
1297       algoIndex = myAvailableHypData[dim][Algo].indexOf( curAlgo );
1298       if ( !isSubmesh && algoIndex < 0 && soleCompatible && !forward && dim != SMESH::DIM_0D)
1299         // select the sole compatible algo
1300         algoIndex = myAvailableHypData[dim][Algo].indexOf( soleCompatible );
1301       setCurrentHyp( dim, Algo, algoIndex );
1302
1303       // remember current algo
1304       prevAlgo = algoByDim[ dim ] = hypData( dim, Algo, algoIndex );
1305     }
1306   }
1307
1308   // set hypotheses corresponding to the found algoritms
1309
1310   _PTR(SObject) pObj = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
1311
1312   for ( int dim = SMESH::DIM_0D; dim <= SMESH::DIM_3D; dim++ )
1313   {
1314     if ( !isAccessibleDim( dim ))
1315       continue;
1316     for ( int type = MainHyp; type < NbHypTypes; type++ )
1317     {
1318       myAvailableHypData[ dim ][ type ].clear();
1319       QStringList anAvailable, anExisting;
1320
1321       HypothesisData* curAlgo = algoByDim[ dim ];
1322       int hypIndex = currentHyp( dim, type );
1323
1324       SMESH::SMESH_Hypothesis_var curHyp;
1325       if ( hypIndex >= 0 && hypIndex < myExistingHyps[ dim ][ type ].count() )
1326         curHyp = myExistingHyps[ dim ][ type ][ hypIndex ].first;
1327
1328       if ( !myToCreate && !curAlgo && !curHyp->_is_nil() ) { // edition, algo not selected
1329         // try to find algo by selected hypothesis in order to keep it selected
1330         bool algoDeselectedByUser = ( theDim < 0 && aDim == dim );
1331         CORBA::String_var curHypType = curHyp->GetName();
1332         if ( !algoDeselectedByUser &&
1333              myObjHyps[ dim ][ type ].count() > 0 &&
1334              curHypType == myObjHyps[ dim ][ type ].first().first->GetName())
1335         {
1336           HypothesisData* hypData = SMESH::GetHypothesisData( curHyp->GetName() );
1337           for (int i = 0; i < myAvailableHypData[ dim ][ Algo ].count(); ++i) {
1338             curAlgo = myAvailableHypData[ dim ][ Algo ][ i ];
1339             if (curAlgo && hypData && isCompatible(curAlgo, hypData, type))
1340               break;
1341             else
1342               curAlgo = 0;
1343           }
1344         }
1345       }
1346       // get hyps compatible with curAlgo
1347       if ( curAlgo )
1348       {
1349         // check if a selected hyp is compatible with the curAlgo
1350         if ( !curHyp->_is_nil() ) {
1351           HypothesisData* hypData = SMESH::GetHypothesisData( curHyp->GetName() );
1352           if ( !isCompatible( curAlgo, hypData, type ))
1353             curHyp = SMESH::SMESH_Hypothesis::_nil();
1354         }
1355         existingHyps( dim, type, pObj, anExisting, myExistingHyps[ dim ][ type ], curAlgo);
1356         availableHyps( dim, type, anAvailable, myAvailableHypData[ dim ][ type ], curAlgo);
1357       }
1358       // set list of hypotheses
1359       myDlg->tab( dim )->setAvailableHyps( type, anAvailable );
1360       myDlg->tab( dim )->setExistingHyps( type, anExisting );
1361
1362       // set current existing hypothesis
1363       if ( !curHyp->_is_nil() && !anExisting.isEmpty() )
1364         hypIndex = this->find( curHyp, myExistingHyps[ dim ][ type ]);
1365       else
1366         hypIndex = -1;
1367       if ( !isSubmesh && hypIndex < 0 && anExisting.count() == 1 ) {
1368         // none is yet selected => select the sole existing if it is not optional
1369         CORBA::String_var hypTypeName = myExistingHyps[ dim ][ type ].first().first->GetName();
1370         bool isOptional = true;
1371         if ( algoByDim[ dim ] &&
1372              SMESH::IsAvailableHypothesis( algoByDim[ dim ], hypTypeName.in(), isOptional ) &&
1373              !isOptional )
1374           hypIndex = 0;
1375       }
1376       setCurrentHyp( dim, type, hypIndex );
1377     }
1378   }
1379 }
1380
1381 //================================================================================
1382 /*!
1383  * \brief Creates and selects hypothesis of hypotheses set
1384  * \param theSetName - The name of hypotheses set
1385  */
1386 //================================================================================
1387 void SMESHGUI_MeshOp::onHypoSet( const QString& theSetName )
1388 {
1389   myHypoSet = SMESH::GetHypothesesSet(theSetName);
1390   if (!myHypoSet)
1391     return;
1392
1393   // clear all hyps
1394   for (int dim = SMESH::DIM_0D; dim <= SMESH::DIM_3D; dim++) {
1395     setCurrentHyp(dim, Algo, -1);
1396     setCurrentHyp(dim, AddHyp, -1);
1397     setCurrentHyp(dim, MainHyp, -1);
1398   }
1399
1400   myHypoSet->init(true); //algorithms
1401   processSet();
1402   myHypoSet->init(false); //hypotheses
1403   processSet();
1404   myHypoSet = 0;
1405 }
1406
1407 //================================================================================
1408 /*!
1409  * \brief One step of hypothesis/algorithm list creation
1410  *
1411  * Creates a hypothesis or an algorithm for current item of internal list of names myHypoSet
1412  */
1413 //================================================================================
1414 void SMESHGUI_MeshOp::processSet()
1415 {
1416   myHypoSet->next();
1417   if( !myHypoSet->more() )
1418     return;
1419
1420   bool isAlgo = myHypoSet->isAlgo();
1421   QString aHypoTypeName = myHypoSet->current();
1422   HypothesisData* aHypData = SMESH::GetHypothesisData(aHypoTypeName);
1423   if (!aHypData)
1424   {
1425     processSet();
1426     return;
1427   }
1428
1429   int aDim = aHypData->Dim[0];
1430   // create or/and set
1431   if (isAlgo)
1432   {
1433     int index = myAvailableHypData[aDim][Algo].indexOf( aHypData );
1434     if ( index < 0 )
1435     {
1436       QStringList anAvailable;
1437       availableHyps( aDim, Algo, anAvailable, myAvailableHypData[aDim][Algo] );
1438       myDlg->tab( aDim )->setAvailableHyps( Algo, anAvailable );
1439       index = myAvailableHypData[aDim][Algo].indexOf( aHypData );
1440     }
1441     setCurrentHyp( aDim, Algo, index );
1442     onAlgoSelected( index, aDim );
1443     processSet();
1444   }
1445   else
1446   {
1447     bool mainHyp = true;
1448     QStringList anAvailable;
1449     availableHyps( aDim, MainHyp, anAvailable, myAvailableHypData[aDim][MainHyp] );
1450     myDlg->tab( aDim )->setAvailableHyps( MainHyp, anAvailable );
1451     int index = myAvailableHypData[aDim][MainHyp].indexOf( aHypData );
1452     if ( index < 0 )
1453     {
1454       mainHyp = false;
1455       index = myAvailableHypData[aDim][AddHyp].indexOf( aHypData );
1456     }
1457     if (index >= 0)
1458       createHypothesis(aDim, mainHyp ? MainHyp : AddHyp, aHypoTypeName);
1459     else
1460       processSet();
1461   }
1462 }
1463
1464 //================================================================================
1465 /*!
1466  * \brief Creates mesh
1467   * \param theMess - Output parameter intended for returning error message
1468   * \retval bool  - TRUE if mesh is created, FALSE otherwise
1469  *
1470  * Creates mesh
1471  */
1472 //================================================================================
1473 bool SMESHGUI_MeshOp::createMesh( QString& theMess )
1474 {
1475   theMess = "";
1476
1477   //QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1478   //QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1479
1480   QStringList aList;
1481   myDlg->selectedObject( SMESHGUI_MeshDlg::Geom, aList );
1482   QStringList::Iterator it = aList.begin();
1483   for ( ; it!=aList.end(); it++)
1484   {
1485     QString aGeomEntry = *it;
1486     _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
1487     GEOM::GEOM_Object_var aGeomVar =
1488       GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1489
1490     SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1491     if ( aSMESHGen->_is_nil() )
1492       return false;
1493
1494     SUIT_OverrideCursor aWaitCursor;
1495
1496     // create mesh
1497     SMESH::SMESH_Mesh_var aMeshVar = aSMESHGen->CreateMesh( aGeomVar );
1498     if ( aMeshVar->_is_nil() )
1499       return false;
1500     _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar.in() );
1501     if ( aMeshSO )
1502       SMESH::SetName( aMeshSO, myDlg->objectText( SMESHGUI_MeshDlg::Obj ) );
1503
1504     for ( int aDim = SMESH::DIM_0D; aDim <= SMESH::DIM_3D; aDim++ ) {
1505       if ( !isAccessibleDim( aDim )) continue;
1506
1507       // assign hypotheses
1508       for ( int aHypType = MainHyp; aHypType <= AddHyp; aHypType++ ) {
1509         int aHypIndex = currentHyp( aDim, aHypType );
1510         if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() ) {
1511           SMESH::SMESH_Hypothesis_var aHypVar = myExistingHyps[ aDim ][ aHypType ][ aHypIndex ].first;
1512           if ( !aHypVar->_is_nil() )
1513             SMESH::AddHypothesisOnMesh( aMeshVar, aHypVar );
1514         }
1515       }
1516       // find or create algorithm
1517       SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
1518       if ( !anAlgoVar->_is_nil() )
1519         SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
1520     }
1521
1522   }
1523   return true;
1524 }
1525
1526 //================================================================================
1527 /*!
1528  * \brief Creates sub-mesh
1529   * \param theMess - Output parameter intended for returning error message
1530   * \retval bool  - TRUE if sub-mesh is created, FALSE otherwise
1531  *
1532  * Creates sub-mesh
1533  */
1534 //================================================================================
1535 bool SMESHGUI_MeshOp::createSubMesh( QString& theMess )
1536 {
1537   theMess = "";
1538
1539   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1540   if ( aSMESHGen->_is_nil() )
1541     return false;
1542
1543   // get mesh object
1544   QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
1545   _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
1546   SMESH::SMESH_Mesh_var aMeshVar =
1547     SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
1548   if (aMeshVar->_is_nil())
1549     return false;
1550
1551   // GEOM shape of the main mesh
1552   GEOM::GEOM_Object_var mainGeom = aMeshVar->GetShapeToMesh();
1553
1554   // Name for the new sub-mesh
1555   QString aName = myDlg->objectText(SMESHGUI_MeshDlg::Obj);
1556
1557   // get geom object
1558   GEOM::GEOM_Object_var aGeomVar;
1559   QStringList aGEOMs;
1560   myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs);
1561   if (aGEOMs.count() == 1)
1562   {
1563     //QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1564     QString aGeomEntry = aGEOMs.first();
1565     _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
1566     aGeomVar = GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1567   }
1568   else if (aGEOMs.count() > 1)
1569   {
1570     // create a GEOM group
1571     GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
1572     _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
1573     if (!geomGen->_is_nil() && aStudy) {
1574       GEOM::GEOM_IGroupOperations_var op =
1575         geomGen->GetIGroupOperations(aStudy->StudyId());
1576       if (!op->_is_nil()) {
1577         // check and add all selected GEOM objects: they must be
1578         // a sub-shapes of the main GEOM and must be of one type
1579         int iSubSh = 0;
1580         TopAbs_ShapeEnum aGroupType = TopAbs_SHAPE;
1581         GEOM::ListOfGO_var aSeq = new GEOM::ListOfGO;
1582         aSeq->length(aGEOMs.count());
1583         QStringList::const_iterator aSubShapesIter = aGEOMs.begin();
1584         for ( ; aSubShapesIter != aGEOMs.end(); aSubShapesIter++, iSubSh++) {
1585           QString aSubGeomEntry = (*aSubShapesIter);
1586           _PTR(SObject) pSubGeom = studyDS()->FindObjectID(aSubGeomEntry.toLatin1().data());
1587           GEOM::GEOM_Object_var aSubGeomVar =
1588             GEOM::GEOM_Object::_narrow(_CAST(SObject,pSubGeom)->GetObject());
1589           TopAbs_ShapeEnum aSubShapeType = (TopAbs_ShapeEnum)aSubGeomVar->GetShapeType();
1590           if (iSubSh == 0) {
1591             aGroupType = aSubShapeType;
1592           } else {
1593             if (aSubShapeType != aGroupType)
1594               aGroupType = TopAbs_SHAPE;
1595           }
1596           aSeq[iSubSh] = aSubGeomVar;
1597         }
1598         // create a group
1599         GEOM::GEOM_Object_var aGroupVar = op->CreateGroup(mainGeom, aGroupType);
1600         op->UnionList(aGroupVar, aSeq);
1601
1602         if (op->IsDone()) {
1603           aGeomVar = aGroupVar;
1604
1605           // publish the GEOM group in study
1606           QString aNewGeomGroupName ("Auto_group_for_");
1607           aNewGeomGroupName += aName;
1608           SALOMEDS::SObject_var aNewGroupSO =
1609             geomGen->AddInStudy(aSMESHGen->GetCurrentStudy(), aGeomVar, 
1610                                 aNewGeomGroupName.toLatin1().data(), mainGeom);
1611         }
1612       }
1613     }
1614   }
1615   else {
1616   }
1617   if (aGeomVar->_is_nil())
1618     return false;
1619
1620   SUIT_OverrideCursor aWaitCursor;
1621
1622   // create sub-mesh
1623   SMESH::SMESH_subMesh_var aSubMeshVar = aMeshVar->GetSubMesh( aGeomVar, aName.toLatin1().data() );
1624   _PTR(SObject) aSubMeshSO = SMESH::FindSObject( aSubMeshVar.in() );
1625   if ( aSubMeshSO )
1626     SMESH::SetName( aSubMeshSO, aName.toLatin1().data() );
1627
1628   for ( int aDim = SMESH::DIM_0D; aDim <= SMESH::DIM_3D; aDim++ )
1629   {
1630     if ( !isAccessibleDim( aDim )) continue;
1631
1632     // find or create algorithm
1633     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
1634     if ( !anAlgoVar->_is_nil() )
1635       SMESH::AddHypothesisOnSubMesh( aSubMeshVar, anAlgoVar );
1636     // assign hypotheses
1637     for ( int aHypType = MainHyp; aHypType <= AddHyp; aHypType++ )
1638     {
1639       int aHypIndex = currentHyp( aDim, aHypType );
1640       if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() )
1641       {
1642         SMESH::SMESH_Hypothesis_var aHypVar =
1643           myExistingHyps[ aDim ][ aHypType ][ aHypIndex ].first;
1644         if ( !aHypVar->_is_nil() )
1645           SMESH::AddHypothesisOnSubMesh( aSubMeshVar, aHypVar );
1646       }
1647     }
1648   }
1649
1650   // deselect geometry: next submesh should be created on other subshape
1651   myDlg->clearSelection( SMESHGUI_MeshDlg::Geom );
1652   selectObject( _PTR(SObject)() );
1653   selectionDone();
1654
1655   return true;
1656 }
1657
1658 //================================================================================
1659 /*!
1660  * \brief Gets current hypothesis or algorithms
1661   * \param theDim - dimension of hypothesis or algorithm
1662   * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
1663   * \retval int - current hypothesis or algorithms
1664  *
1665  * Gets current hypothesis or algorithms
1666  */
1667 //================================================================================
1668 int SMESHGUI_MeshOp::currentHyp( const int theDim, const int theHypType ) const
1669 {
1670   return myDlg->tab( theDim )->currentHyp( theHypType ) - 1;
1671 }
1672
1673 //================================================================================
1674 /*!
1675  * \brief Returns true if hypotheses of given dim can be assigned
1676   * \param theDim - hypotheses dimension
1677   * \retval bool - result
1678  */
1679 //================================================================================
1680 bool SMESHGUI_MeshOp::isAccessibleDim( const int theDim ) const
1681 {
1682   return myDlg->isTabEnabled( theDim );
1683 }
1684
1685 //================================================================================
1686 /*!
1687  * \brief Sets current hypothesis or algorithms
1688   * \param theDim - dimension of hypothesis or algorithm
1689   * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
1690   * \param theIndex - Index of hypothesis
1691  *
1692  * Gets current hypothesis or algorithms
1693  */
1694 //================================================================================
1695 void SMESHGUI_MeshOp::setCurrentHyp( const int theDim,
1696                                      const int theHypType,
1697                                      const int theIndex )
1698 {
1699   myIgnoreAlgoSelection = true;
1700   myDlg->tab( theDim )->setCurrentHyp( theHypType, theIndex + 1 );
1701   myIgnoreAlgoSelection = false;
1702 }
1703
1704 //================================================================================
1705 /*!
1706  * \brief Generates default and sets mesh/submesh name
1707  *
1708  * Generates and sets default mesh/submesh name(Mesh_1, Mesh_2, etc.)
1709  */
1710 //================================================================================
1711 void SMESHGUI_MeshOp::setDefaultName() const
1712 {
1713   QString aResName;
1714
1715   _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
1716   int i = 1;
1717   QString aPrefix = tr( myIsMesh ? "SMESH_OBJECT_MESH" : "SMESH_SUBMESH" ) + "_";
1718   _PTR(SObject) anObj;
1719   do
1720   {
1721     aResName = aPrefix + QString::number( i++ );
1722     anObj = aStudy->FindObject( aResName.toLatin1().data() );
1723   }
1724   while ( anObj );
1725
1726   QLineEdit* aControl = ( QLineEdit* )myDlg->objectWg(
1727     SMESHGUI_MeshDlg::Obj, SMESHGUI_MeshDlg::Control );
1728   aControl->setText( aResName );
1729 }
1730
1731 //================================================================================
1732 /*!
1733  * \brief Gets algorithm or creates it if necessary
1734   * \param theDim - specifies dimension of returned hypotheses/algorifms
1735   * \retval SMESH::SMESH_Hypothesis_var - algorithm
1736  *
1737  * Gets algorithm or creates it if necessary
1738  */
1739 //================================================================================
1740 SMESH::SMESH_Hypothesis_var SMESHGUI_MeshOp::getAlgo( const int theDim )
1741 {
1742   SMESH::SMESH_Hypothesis_var anAlgoVar;
1743
1744   // get type of the selected algo
1745   int aHypIndex = currentHyp( theDim, Algo );
1746   THypDataList& dataList = myAvailableHypData[ theDim ][ Algo ];
1747   if ( aHypIndex < 0 || aHypIndex >= dataList.count())
1748     return anAlgoVar;
1749   QString aHypName = dataList[ aHypIndex ]->TypeName;
1750
1751   // get existing algoritms
1752   _PTR(SObject) pObj = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
1753   QStringList tmp;
1754   existingHyps( theDim, Algo, pObj, tmp, myExistingHyps[ theDim ][ Algo ]);
1755
1756   // look for an existing algo of such a type
1757   THypList& aHypVarList = myExistingHyps[ theDim ][ Algo ];
1758   THypList::iterator anIter = aHypVarList.begin();
1759   for ( ; anIter != aHypVarList.end(); anIter++)
1760   {
1761     SMESH::SMESH_Hypothesis_var aHypVar = (*anIter).first;
1762     CORBA::String_var aName = aHypVar->GetName();
1763     if ( !aHypVar->_is_nil() && aHypName == aName )
1764     {
1765       anAlgoVar = aHypVar;
1766       break;
1767     }
1768   }
1769
1770   if (anAlgoVar->_is_nil())
1771   {
1772     HypothesisData* aHypData = SMESH::GetHypothesisData( aHypName );
1773     if (aHypData)
1774     {
1775       QString aClientLibName = aHypData->ClientLibName;
1776       if (aClientLibName == "")
1777       {
1778         // Call hypothesis creation server method (without GUI)
1779         SMESH::CreateHypothesis(aHypName, aHypData->Label, true);
1780       }
1781       else
1782       {
1783         // Get hypotheses creator client (GUI)
1784         // BUG 0020378
1785         //SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(aHypName);
1786         SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(aHypName);
1787
1788         // Create algorithm
1789         if (aCreator)
1790           aCreator->create(true, aHypName, myDlg, 0, QString::null );
1791         else
1792           SMESH::CreateHypothesis(aHypName, aHypData->Label, true);
1793       }
1794       QStringList tmpList;
1795       _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
1796       existingHyps( theDim, Algo, aFather, tmpList, myExistingHyps[ theDim ][ Algo ] );
1797     }
1798
1799     THypList& aNewHypVarList = myExistingHyps[ theDim ][ Algo ];
1800     for ( anIter = aNewHypVarList.begin(); anIter != aNewHypVarList.end(); ++anIter )
1801     {
1802       SMESH::SMESH_Hypothesis_var aHypVar = (*anIter).first;
1803       CORBA::String_var aName = aHypVar->GetName();
1804       if ( !aHypVar->_is_nil() && aHypName == aName )
1805       {
1806         anAlgoVar = aHypVar;
1807         break;
1808       }
1809     }
1810   }
1811
1812   return anAlgoVar._retn();
1813 }
1814
1815 //================================================================================
1816 /*!
1817  * \brief Reads parameters of edited mesh and assigns them to the dialog
1818  *
1819  * Reads parameters of edited mesh and assigns them to the dialog (called when
1820  * mesh is edited only)
1821  */
1822 //================================================================================
1823 void SMESHGUI_MeshOp::readMesh()
1824 {
1825   QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1826   _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
1827   if ( !pObj )
1828     return;
1829
1830   if (myIsOnGeometry) {
1831     // Get name of mesh if current object is sub-mesh
1832     SMESH::SMESH_subMesh_var aSubMeshVar =
1833       SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
1834     if ( !aSubMeshVar->_is_nil() )
1835     {
1836       SMESH::SMESH_Mesh_var aMeshVar =  aSubMeshVar->GetFather();
1837       if ( !aMeshVar->_is_nil() )
1838       {
1839         _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar );
1840         QString aMeshName = name( aMeshSO );
1841         myDlg->setObjectText( SMESHGUI_MeshDlg::Mesh, aMeshName );
1842       }
1843     }
1844
1845     // Get name of geometry object
1846     GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
1847     if ( !aGeomVar->_is_nil() )
1848     {
1849       _PTR(SObject) aGeomSO = studyDS()->FindObjectID( aGeomVar->GetStudyEntry() );
1850       QString aShapeName = name( aGeomSO );
1851       myDlg->setObjectText( SMESHGUI_MeshDlg::Geom, aShapeName );
1852     }
1853   }
1854
1855   // Get hypotheses and algorithms assigned to the mesh/sub-mesh
1856   QStringList anExisting;
1857   const int aDim = ( myIsOnGeometry ) ? SMESH::DIM_0D : SMESH::DIM_3D;
1858   for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
1859   {
1860     // get algorithm
1861     existingHyps( dim, Algo, pObj, anExisting, myObjHyps[ dim ][ Algo ] );
1862     // find algo index among available ones
1863     int aHypIndex = -1;
1864     if ( myObjHyps[ dim ][ Algo ].count() > 0 )
1865     {
1866       SMESH::SMESH_Hypothesis_var aVar = myObjHyps[ dim ][ Algo ].first().first;
1867       HypothesisData* algoData = SMESH::GetHypothesisData( aVar->GetName() );
1868       aHypIndex = myAvailableHypData[ dim ][ Algo ].indexOf ( algoData );
1869 //       if ( aHypIndex < 0 && algoData ) {
1870 //         // assigned algo is incompatible with other algorithms
1871 //         myAvailableHypData[ dim ][ Algo ].push_back( algoData );
1872 //         aHypIndex = myAvailableHypData[ dim ][ hypType ].count() - 1;
1873 //       }
1874     }
1875     setCurrentHyp( dim, Algo, aHypIndex );
1876     // set existing and available hypothesis according to the selected algo
1877     onAlgoSelected( aHypIndex, dim );
1878   }
1879
1880   // get hypotheses
1881   bool hypWithoutAlgo = false;
1882   for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
1883   {
1884     for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
1885     {
1886       // get hypotheses
1887       existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
1888       // find index of requered hypothesis among existing ones for this dimension and type
1889       int aHypIndex = -1;
1890       if ( myObjHyps[ dim ][ hypType ].count() > 0 ) {
1891         aHypIndex = find( myObjHyps[ dim ][ hypType ].first().first,
1892                           myExistingHyps[ dim ][ hypType ] );
1893         if ( aHypIndex < 0 ) {
1894           // assigned hypothesis is incompatible with the algorithm
1895           if ( currentHyp( dim, Algo ) < 0 )
1896           { // none algo selected; it is edition for sure, of submesh maybe
1897             hypWithoutAlgo = true;
1898             myExistingHyps[ dim ][ hypType ].push_back( myObjHyps[ dim ][ hypType ].first() );
1899             aHypIndex = myExistingHyps[ dim ][ hypType ].count() - 1;
1900             myDlg->tab( dim )->setExistingHyps( hypType, anExisting );
1901           }
1902         }
1903       }
1904       setCurrentHyp( dim, hypType, aHypIndex );
1905     }
1906   }
1907   // make available other hyps of same type as one without algo
1908   if ( hypWithoutAlgo )
1909     onAlgoSelected( currentHyp( 0, Algo ), 0 );
1910 }
1911
1912 //================================================================================
1913 /*!
1914  * \brief Gets name of object
1915   * \param theSO - SObject
1916   * \retval QString - name of object
1917  *
1918  * Gets name of object
1919  */
1920 //================================================================================
1921 QString SMESHGUI_MeshOp::name( _PTR(SObject) theSO ) const
1922 {
1923   QString aResName;
1924   if ( theSO )
1925   {
1926     _PTR(GenericAttribute) anAttr;
1927     _PTR(AttributeName)    aNameAttr;
1928     if ( theSO->FindAttribute( anAttr, "AttributeName" ) )
1929     {
1930       aNameAttr = anAttr;
1931       aResName = aNameAttr->Value().c_str();
1932     }
1933   }
1934   return aResName;
1935 }
1936
1937 //================================================================================
1938 /*!
1939  * \brief Finds hypothesis in input list
1940   * \param theHyp - hypothesis to be found
1941   * \param theHypList - input list of hypotheses
1942   * \retval int - index of hypothesis or -1 if it is not found
1943  *
1944  * Finds position of hypothesis in input list
1945  */
1946 //================================================================================
1947 int SMESHGUI_MeshOp::find( const SMESH::SMESH_Hypothesis_var& theHyp,
1948                            const THypList& theHypList ) const
1949 {
1950   int aRes = -1;
1951   if ( !theHyp->_is_nil() )
1952   {
1953     int i = 0;
1954     THypList::const_iterator anIter = theHypList.begin();
1955     for ( ; anIter != theHypList.end(); ++ anIter)
1956     {
1957       if ( theHyp->_is_equivalent( (*anIter).first ) )
1958       {
1959         aRes = i;
1960         break;
1961       }
1962       i++;
1963     }
1964   }
1965   return aRes;
1966 }
1967
1968 //================================================================================
1969 /*!
1970  * \brief Edits mesh or sub-mesh
1971   * \param theMess - Output parameter intended for returning error message
1972   * \retval bool  - TRUE if mesh is edited succesfully, FALSE otherwise
1973  *
1974  * Assigns new name hypotheses and algoriths to the mesh or sub-mesh
1975  */
1976 //================================================================================
1977 bool SMESHGUI_MeshOp::editMeshOrSubMesh( QString& theMess )
1978 {
1979   theMess = "";
1980
1981   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1982   if ( aSMESHGen->_is_nil() )
1983     return false;
1984
1985   QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1986   _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
1987   if ( !pObj )
1988     return false;
1989
1990   SUIT_OverrideCursor aWaitCursor;
1991
1992   // Set new name
1993   QString aName = myDlg->objectText( SMESHGUI_MeshDlg::Obj );
1994   SMESH::SetName( pObj, aName );
1995   int aDim = ( myIsOnGeometry ) ? SMESH::DIM_0D : SMESH::DIM_3D;
1996
1997   // First, remove old algos in order to avoid messages on algorithm hiding
1998   for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
1999   {
2000     if ( isAccessibleDim( dim ) && myObjHyps[ dim ][ Algo ].count() > 0 )
2001     {
2002       SMESH::SMESH_Hypothesis_var anOldAlgo = myObjHyps[ dim ][ Algo ].first().first;
2003       SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( dim );
2004       if ( anAlgoVar->_is_nil() || // no new algo selected or
2005            strcmp(anOldAlgo->GetName(), anAlgoVar->GetName()) ) // algo change
2006       {
2007         // remove old algorithm
2008         SMESH::RemoveHypothesisOrAlgorithmOnMesh ( pObj, myObjHyps[ dim ][ Algo ].first().first );
2009         myObjHyps[ dim ][ Algo ].clear();
2010       }
2011     }
2012   }
2013
2014   // Assign new algorithms and hypotheses
2015   for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
2016   {
2017     if ( !isAccessibleDim( dim )) continue;
2018
2019     // find or create algorithm
2020     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( dim );
2021
2022     // assign new algorithm
2023     if ( !anAlgoVar->_is_nil() && // some algo selected and
2024          myObjHyps[ dim ][ Algo ].count() == 0 ) // no algo assigned
2025     {
2026       SALOMEDS_SObject* aSObject = _CAST(SObject, pObj);
2027       CORBA::Object_var anObject = aSObject->GetObject();
2028       SMESH::SMESH_Mesh_var aMeshVar = SMESH::SMESH_Mesh::_narrow( anObject );
2029       bool isMesh = !aMeshVar->_is_nil();
2030       if ( isMesh ) {
2031         SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
2032       } else {
2033         SMESH::SMESH_subMesh_var aVar =
2034           SMESH::SMESH_subMesh::_narrow( _CAST(SObject,pObj)->GetObject() );
2035         if ( !aVar->_is_nil() )
2036           SMESH::AddHypothesisOnSubMesh( aVar, anAlgoVar );
2037       }
2038       myObjHyps[ dim ][ Algo ].append( THypItem( anAlgoVar, aName) );
2039     }
2040
2041     // assign hypotheses
2042     for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
2043     {
2044       int aNewHypIndex = currentHyp( dim, hypType );
2045       int anOldHypIndex = -1;
2046
2047       // remove old hypotheses
2048       if ( myObjHyps[ dim ][ hypType ].count() > 0 )
2049       {
2050         anOldHypIndex = find( myObjHyps[ dim ][ hypType ].first().first,
2051                               myExistingHyps[ dim ][ hypType ] );
2052         if ( aNewHypIndex != anOldHypIndex || // different hyps
2053              anOldHypIndex == -1 )            // hyps of different algos
2054         {
2055           SMESH::RemoveHypothesisOrAlgorithmOnMesh
2056             ( pObj, myObjHyps[ dim ][ hypType ].first().first );
2057           myObjHyps[ dim ][ hypType ].clear();
2058         }
2059       }
2060
2061       // assign new hypotheses
2062       if ( aNewHypIndex != anOldHypIndex && aNewHypIndex != -1 )
2063       {
2064         SMESH::SMESH_Mesh_var aMeshVar =
2065           SMESH::SMESH_Mesh::_narrow( _CAST(SObject,pObj)->GetObject() );
2066         bool isMesh = !aMeshVar->_is_nil();
2067         if ( isMesh )
2068         {
2069           SMESH::AddHypothesisOnMesh
2070             (aMeshVar, myExistingHyps[ dim ][ hypType ][ aNewHypIndex ].first );
2071         }
2072         else
2073         {
2074           SMESH::SMESH_subMesh_var aVar =
2075             SMESH::SMESH_subMesh::_narrow( _CAST(SObject,pObj)->GetObject() );
2076           if ( !aVar->_is_nil() )
2077             SMESH::AddHypothesisOnSubMesh
2078               ( aVar, myExistingHyps[ dim ][ hypType ][ aNewHypIndex ].first );
2079         }
2080       }
2081       // reread all hypotheses of mesh if necessary
2082       QStringList anExisting;
2083       existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
2084     }
2085   }
2086
2087   return true;
2088 }
2089
2090 //================================================================================
2091 /*!
2092  * \brief Verifies whether given operator is valid for this one
2093   * \param theOtherOp - other operation
2094   * \return Returns TRUE if the given operator is valid for this one, FALSE otherwise
2095 *
2096 * method redefined from base class verifies whether given operator is valid for
2097 * this one (i.e. can be started "above" this operator). In current implementation method
2098 * retuns false if theOtherOp operation is not intended for deleting objects or mesh
2099 * elements.
2100 */
2101 //================================================================================
2102 bool SMESHGUI_MeshOp::isValid( SUIT_Operation* theOp ) const
2103 {
2104   return SMESHGUI_Operation::isValid( theOp ) && !theOp->inherits( "SMESHGUI_MeshOp" );
2105 }
2106
2107 //================================================================================
2108 /*!
2109  * \brief SLOT. Is called when the user selects a way of geometry selection
2110   * \param theByMesh - true if the user wants to find geometry by mesh element
2111  */
2112 //================================================================================
2113
2114 void SMESHGUI_MeshOp::onGeomSelectionByMesh( bool theByMesh )
2115 {
2116   if ( theByMesh ) {
2117     if ( !myShapeByMeshOp ) {
2118       myShapeByMeshOp = new SMESHGUI_ShapeByMeshOp();
2119       connect(myShapeByMeshOp, SIGNAL(committed(SUIT_Operation*)),
2120               SLOT(onPublishShapeByMeshDlg(SUIT_Operation*)));
2121       connect(myShapeByMeshOp, SIGNAL(aborted(SUIT_Operation*)),
2122               SLOT(onCloseShapeByMeshDlg(SUIT_Operation*)));
2123     }
2124     // set mesh object to SMESHGUI_ShapeByMeshOp and start it
2125     QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
2126     if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() )) {
2127       SMESH::SMESH_Mesh_var aMeshVar =
2128         SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
2129       if ( !aMeshVar->_is_nil() ) {
2130         myDlg->hide(); // stop processing selection
2131         myShapeByMeshOp->setModule( getSMESHGUI() );
2132         myShapeByMeshOp->setStudy( 0 ); // it's really necessary
2133         myShapeByMeshOp->SetMesh( aMeshVar );
2134         myShapeByMeshOp->start();
2135       }
2136     }
2137   }
2138 }
2139
2140 //================================================================================
2141 /*!
2142  * \brief SLOT. Is called when Ok is pressed in SMESHGUI_ShapeByMeshDlg
2143  */
2144 //================================================================================
2145
2146 void SMESHGUI_MeshOp::onPublishShapeByMeshDlg(SUIT_Operation* op)
2147 {
2148   if ( myShapeByMeshOp == op ) {
2149     SMESHGUI::GetSMESHGUI()->getApp()->updateObjectBrowser(); //MZN: 24.11.2006  IPAL13980 - Object Browser update added
2150     myDlg->show();
2151     // Select a found geometry object
2152     GEOM::GEOM_Object_var aGeomVar = myShapeByMeshOp->GetShape();
2153     if ( !aGeomVar->_is_nil() )
2154     {
2155       QString ID = aGeomVar->GetStudyEntry();
2156       if ( _PTR(SObject) aGeomSO = studyDS()->FindObjectID( ID.toLatin1().data() )) {
2157         selectObject( aGeomSO );
2158         selectionDone();
2159       }
2160     }
2161   }
2162 }
2163
2164 //================================================================================
2165 /*!
2166  * \brief SLOT. Is called when Close is pressed in SMESHGUI_ShapeByMeshDlg
2167  */
2168 //================================================================================
2169
2170 void SMESHGUI_MeshOp::onCloseShapeByMeshDlg(SUIT_Operation* op)
2171 {
2172   if ( myShapeByMeshOp == op && myDlg ) {
2173     myDlg->show();
2174   }
2175 }
2176
2177 //================================================================================
2178 /*!
2179  * \brief Selects a SObject
2180   * \param theSObj - the SObject to select
2181  */
2182 //================================================================================
2183
2184 void SMESHGUI_MeshOp::selectObject( _PTR(SObject) theSObj ) const
2185 {
2186   if ( LightApp_SelectionMgr* sm = selectionMgr() ) {
2187     SALOME_ListIO anIOList;
2188     if ( theSObj ) {
2189       Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject
2190         ( theSObj->GetID().c_str(), "SMESH", theSObj->GetName().c_str() );
2191       anIOList.Append( anIO );
2192     }
2193     sm->setSelectedObjects( anIOList, false );
2194   }
2195 }