Salome HOME
ff98510088ead389874ccd87465f2a6b73ff0816
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshOp.cxx
1 // Copyright (C) 2007-2015  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : SMESHGUI_MeshOp.cxx
23 //  Author : Sergey LITONIN, Open CASCADE S.A.S.
24
25 // SMESH includes
26 #include "SMESHGUI_MeshOp.h"
27
28 #include "SMESHGUI.h"
29 #include "SMESHGUI_GEOMGenUtils.h"
30 #include "SMESHGUI_Hypotheses.h"
31 #include "SMESHGUI_HypothesesUtils.h"
32 #include "SMESHGUI_MeshDlg.h"
33 #include "SMESHGUI_Operations.h"
34 #include "SMESHGUI_ShapeByMeshDlg.h"
35 #include "SMESHGUI_Utils.h"
36 #include "SMESH_NumberFilter.hxx"
37 #include "SMESH_TypeFilter.hxx"
38
39 // SALOME GEOM includes
40 #include <GEOM_SelectionFilter.h>
41 #include <GEOMBase.h>
42 #include <GeometryGUI.h>
43 #include <GEOM_wrap.hxx>
44 #include <GEOMImpl_Types.hxx>
45
46 // SALOME GUI includes
47 #include <SalomeApp_Tools.h>
48 #include <SalomeApp_Application.h>
49 #include <LightApp_Application.h>
50 #include <LightApp_SelectionMgr.h>
51 #include <LightApp_UpdateFlags.h>
52 #include <SUIT_MessageBox.h>
53 #include <SUIT_OverrideCursor.h>
54 #include <SUIT_Session.h>
55 #include <SALOME_InteractiveObject.hxx>
56 #include <SALOME_ListIO.hxx>
57
58 // SALOME KERNEL includes
59 #include <SALOMEDS_SComponent.hxx>
60 #include <SALOMEDS_SObject.hxx>
61 #include <SALOMEDS_Study.hxx>
62 #include <SALOMEDS_wrap.hxx>
63
64 // Qt includes
65 #include <QStringList>
66 #include <QLineEdit>
67 #include <QApplication>
68
69 // OCCT includes
70 #include <TopoDS.hxx>
71 #include <TopoDS_Shape.hxx>
72 #include <TopoDS_Shell.hxx>
73 #include <TopExp_Explorer.hxx>
74 #include <BRep_Tool.hxx>
75
76 // IDL includes
77 #include <SALOMEconfig.h>
78 #include CORBA_CLIENT_HEADER(SMESH_Gen)
79
80 //================================================================================
81 /*!
82  * \brief Constructor
83   * \param theToCreate - if this parameter is true then operation is used for creation,
84   * for editing otherwise
85  *
86  * Initialize operation
87 */
88 //================================================================================
89 SMESHGUI_MeshOp::SMESHGUI_MeshOp( const bool theToCreate, const bool theIsMesh )
90 : SMESHGUI_SelectionOp(),
91   myToCreate( theToCreate ),
92   myIsMesh( theIsMesh ),
93   myDlg( 0 ),
94   myShapeByMeshOp( 0 ),
95   myHypoSet( 0 )
96 {
97   if ( GeometryGUI::GetGeomGen()->_is_nil() )// check that GEOM_Gen exists
98     GeometryGUI::InitGeomGen();
99   myIsOnGeometry = true;
100   myMaxShapeDim = -1;
101 }
102
103 //================================================================================
104 /*!
105  * \brief Destructor
106 */
107 //================================================================================
108 SMESHGUI_MeshOp::~SMESHGUI_MeshOp()
109 {
110   if ( myDlg )
111     delete myDlg;
112 }
113
114 //================================================================================
115 /*!
116  * \brief Gets dialog of this operation
117   * \retval LightApp_Dialog* - pointer to dialog of this operation
118 */
119 //================================================================================
120 LightApp_Dialog* SMESHGUI_MeshOp::dlg() const
121 {
122   return myDlg;
123 }
124
125 //================================================================================
126 /*!
127  * \brief Creates or edits mesh
128   * \retval bool - TRUE if operation is performed successfully, FALSE otherwise
129  *
130  * Virtual slot redefined from the base class called when "Apply" button is clicked
131  * creates or edits mesh
132  */
133 //================================================================================
134 bool SMESHGUI_MeshOp::onApply()
135 {
136   if (isStudyLocked())
137     return false;
138
139   QString aMess;
140   if ( !isValid( aMess ) )
141   {
142     dlg()->show();
143     if ( aMess != "" )
144       SUIT_MessageBox::warning( myDlg, tr( "SMESH_WRN_WARNING" ), aMess );
145     return false;
146   }
147
148   bool aResult = false;
149   aMess = "";
150   try
151   {
152     QStringList anEntryList;
153     if ( myToCreate && myIsMesh )
154       aResult = createMesh( aMess, anEntryList );
155     if ( myToCreate && !myIsMesh )
156       aResult = createSubMesh( aMess, anEntryList );
157     else if ( !myToCreate )
158       aResult = editMeshOrSubMesh( aMess );
159     if ( aResult )
160     {
161       SMESHGUI::Modified();
162       update( UF_ObjBrowser | UF_Model );
163       if( LightApp_Application* anApp =
164           dynamic_cast<LightApp_Application*>( SUIT_Session::session()->activeApplication() ) )
165         myObjectToSelect = anApp->browseObjects( anEntryList, isApplyAndClose() );
166     }
167   }
168   catch ( const SALOME::SALOME_Exception& S_ex )
169   {
170     SalomeApp_Tools::QtCatchCorbaException( S_ex );
171     aResult = false;
172   }
173   catch ( ... )
174   {
175     aResult = false;
176   }
177
178   if ( aResult )
179   {
180     if ( myToCreate )
181       setDefaultName();
182   }
183   else
184   {
185     if ( aMess == "" )
186       aMess = tr( "SMESH_OPERATION_FAILED" );
187     SUIT_MessageBox::warning( myDlg, tr( "SMESH_ERROR" ), aMess );
188   }
189
190   return aResult;
191 }
192
193 //================================================================================
194 /*!
195  * \brief Creates dialog if necessary and shows it
196  *
197  * Virtual method redefined from base class called when operation is started creates
198  * dialog if necessary and shows it, activates selection
199  */
200 //================================================================================
201 void SMESHGUI_MeshOp::startOperation()
202 {
203   if (!myDlg)
204   {
205     myDlg = new SMESHGUI_MeshDlg( myToCreate, myIsMesh );
206     for ( int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++ )
207     {
208       connect( myDlg->tab( i ), SIGNAL( createHyp( const int, const int ) ),
209               this, SLOT( onCreateHyp( const int, const int ) ) );
210       connect( myDlg->tab( i ), SIGNAL( editHyp( const int, const int ) ),
211               this, SLOT( onEditHyp( const int, const int ) ) );
212       connect( myDlg->tab( i ), SIGNAL( selectAlgo( const int ) ),
213               this, SLOT( onAlgoSelected( const int ) ) );
214     }
215     connect( myDlg, SIGNAL( hypoSet( const QString& )), SLOT( onHypoSet( const QString& )));
216     connect( myDlg, SIGNAL( geomSelectionByMesh( bool )), SLOT( onGeomSelectionByMesh( bool )));
217     connect( myDlg, SIGNAL( selectMeshType( const int, const int ) ), SLOT( onAlgoSetByMeshType( const int, const int)));
218     if ( myToCreate ) {
219       if ( myIsMesh ) myHelpFileName = "constructing_meshes_page.html";
220       else            myHelpFileName = "constructing_submeshes_page.html";
221     }
222     else {
223       myHelpFileName = "editing_meshes_page.html";
224     }
225   }
226   SMESHGUI_SelectionOp::startOperation();
227   // iterate through dimensions and get available algoritms, set them to the dialog
228   _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
229   for ( int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++ )
230   {
231     SMESHGUI_MeshTab* aTab = myDlg->tab( i );
232     QStringList hypList;
233     // clear available hypotheses
234     aTab->setAvailableHyps( MainHyp, hypList );
235     aTab->setAvailableHyps( AddHyp, hypList );
236     aTab->setExistingHyps( MainHyp, hypList );
237     aTab->setExistingHyps( AddHyp, hypList );
238     myExistingHyps[ i ][ MainHyp ].clear();
239     myExistingHyps[ i ][ AddHyp ].clear();
240     // set algos
241     availableHyps( i, Algo, hypList, myAvailableHypData[i][Algo] );
242     aTab->setAvailableHyps( Algo, hypList );
243   }
244   if ( myToCreate )
245   {
246     setDefaultName();
247     myDlg->activateObject( myIsMesh ? SMESHGUI_MeshDlg::Geom : SMESHGUI_MeshDlg::Mesh );
248   }
249   else
250   {
251     myDlg->activateObject( SMESHGUI_MeshDlg::Obj );
252   }
253   myDlg->setCurrentTab( SMESH::DIM_3D );
254
255   QStringList TypeMeshList;
256   createMeshTypeList( TypeMeshList );
257   setAvailableMeshType( TypeMeshList );
258
259   myDlg->show();
260   myDlg->setGeomPopupEnabled(false);
261   selectionDone();
262
263   myIgnoreAlgoSelection = false;
264   myHasConcurrentSubBefore = false;
265
266   myObjectToSelect.clear();
267 }
268
269 //=================================================================================
270 /*!
271  * \brief Selects a recently created mesh or sub-mesh if necessary
272  *
273  * Virtual method redefined from base class called when operation is commited
274  * selects a recently created mesh or sub-mesh if necessary. Allows to perform
275  * selection when the custom selection filters are removed.
276  */
277 //=================================================================================
278 void SMESHGUI_MeshOp::commitOperation()
279 {
280   SMESHGUI_SelectionOp::commitOperation();
281
282   if ( !myObjectToSelect.isEmpty() ) {
283     if ( LightApp_SelectionMgr* aSelectionMgr = selectionMgr() ) {
284       SUIT_DataOwnerPtrList aList;
285       aList.append( new LightApp_DataOwner( myObjectToSelect ) );
286       aSelectionMgr->setSelected( aList );
287     }
288   }
289 }
290
291 //================================================================================
292 /*!
293  * \brief Creates selection filter
294   * \param theId - identifier of current selection widget
295   * \retval SUIT_SelectionFilter* - pointer to the created filter or null
296  *
297  * Creates selection filter in accordance with identifier of current selection widget
298  */
299 //================================================================================
300 SUIT_SelectionFilter* SMESHGUI_MeshOp::createFilter( const int theId ) const
301 {
302   if ( theId == SMESHGUI_MeshDlg::Geom )
303   {
304 //     TColStd_MapOfInteger allTypesMap;
305 //     for ( int i = 0; i < 10; i++ )
306 //       allTypesMap.Add( i );
307 //     return new SMESH_NumberFilter( "GEOM", TopAbs_SHAPE, 0, allTypesMap );
308     return new GEOM_SelectionFilter( (SalomeApp_Study*)study(), true );
309   }
310   else if ( theId == SMESHGUI_MeshDlg::Obj && !myToCreate )
311     return new SMESH_TypeFilter( SMESH::MESHorSUBMESH );
312   else if ( theId == SMESHGUI_MeshDlg::Mesh )
313     return new SMESH_TypeFilter( SMESH::MESH );
314   else
315     return 0;
316 }
317
318 //================================================================================
319 /*!
320  * \brief check if selected shape is a sub-shape of the shape to mesh
321   * \retval bool - check result
322  */
323 //================================================================================
324 bool SMESHGUI_MeshOp::isSubshapeOk() const
325 {
326   if ( !myToCreate || myIsMesh ) // not submesh creation
327     return false;
328
329   // mesh
330   QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
331   _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
332   if (!pMesh) return false;
333
334   SMESH::SMESH_Mesh_var mesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>( pMesh );
335   if (mesh->_is_nil()) return false;
336
337   // main shape of the mesh
338   GEOM::GEOM_Object_var mainGeom = mesh->GetShapeToMesh();
339   if (mainGeom->_is_nil()) return false;
340
341   // geometry
342   QStringList aGEOMs;
343   myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs);
344
345   if (aGEOMs.count() > 0) {
346     GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
347     _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
348     if (geomGen->_is_nil() || !aStudy) return false;
349
350     GEOM::GEOM_IGroupOperations_wrap op = geomGen->GetIGroupOperations(aStudy->StudyId());
351     if (op->_is_nil()) return false;
352
353     // check all selected shapes
354     QStringList::const_iterator aSubShapesIter = aGEOMs.begin();
355     for ( ; aSubShapesIter != aGEOMs.end(); aSubShapesIter++) {
356       QString aSubGeomEntry = (*aSubShapesIter);
357       _PTR(SObject) pSubGeom = studyDS()->FindObjectID(aSubGeomEntry.toLatin1().data());
358       if (!pSubGeom) return false;
359
360       GEOM::GEOM_Object_var aSubGeomVar =
361         GEOM::GEOM_Object::_narrow(_CAST(SObject,pSubGeom)->GetObject());
362       if (aSubGeomVar->_is_nil()) return false;
363
364       // skl for NPAL14695 - implementation of searching of mainObj
365       GEOM::GEOM_Object_var mainObj = op->GetMainShape(aSubGeomVar); /* _var not _wrap as
366                                                                         mainObj already exists! */
367       while( !mainObj->_is_nil()) {
368         CORBA::String_var entry1 = mainObj->GetEntry();
369         CORBA::String_var entry2 = mainGeom->GetEntry();
370         if (std::string( entry1.in() ) == entry2.in() )
371           return true;
372         mainObj = op->GetMainShape(mainObj);
373       }
374       if ( aSubGeomVar->GetShapeType() == GEOM::COMPOUND )
375       {
376         // is aSubGeomVar a compound of sub-shapes?
377         GEOM::GEOM_IShapesOperations_wrap sop = geomGen->GetIShapesOperations(aStudy->StudyId());
378         if (sop->_is_nil()) return false;
379         GEOM::ListOfLong_var ids = sop->GetAllSubShapesIDs( aSubGeomVar,
380                                                             GEOM::SHAPE,/*sorted=*/false);
381         if ( ids->length() > 0 )
382         {
383           ids->length( 1 );
384           GEOM::GEOM_Object_var compSub = geomGen->AddSubShape( aSubGeomVar, ids );
385           if ( !compSub->_is_nil() )
386           {
387             GEOM::ListOfGO_var shared = sop->GetSharedShapes( mainGeom,
388                                                               compSub,
389                                                               compSub->GetShapeType() );
390             geomGen->RemoveObject( compSub );
391             compSub->UnRegister();
392             if ( shared->length() > 0 ) {
393               geomGen->RemoveObject( shared[0] );
394               shared[0]->UnRegister();
395             }
396             return ( shared->length() > 0 );
397           }
398         }
399       }
400     }
401   }
402
403   return false;
404 }
405
406 //================================================================================
407 /*!
408  * \brief Return name of the algorithm that does not support sub-meshes and makes
409  * sub-mesh creation useless
410  *  \retval char* - string is to be deleted!!!
411  */
412 //================================================================================
413 char* SMESHGUI_MeshOp::isSubmeshIgnored() const
414 {
415   if ( myToCreate && !myIsMesh ) {
416
417     QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
418     QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
419     _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
420     if ( pMesh ) {
421
422       QStringList algoNames;
423       THypList    algoList;
424       existingHyps(3, Algo, pMesh, algoNames, algoList);
425       if (!algoList.empty()) {
426         HypothesisData* algo =
427           SMESH::GetHypothesisData( SMESH::toQStr( algoList[0].first->GetName() ));
428         if ( algo &&
429              algo->InputTypes.empty() && // builds all dimensions it-self
430              !algo->IsSupportSubmeshes )
431           return CORBA::string_dup( algoNames[0].toLatin1().data() );
432       }
433
434 //       GEOM::GEOM_Object_var geom;
435 //       if (_PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() ))
436 //         geom = SMESH::SObjectToInterface<GEOM::GEOM_Object>( pGeom );
437
438 //       if ( !geom->_is_nil() && geom->GetShapeType() >= GEOM::FACE ) { // WIRE, EDGE as well
439         existingHyps(2, Algo, pMesh, algoNames, algoList);
440         if (!algoList.empty()) {
441           HypothesisData* algo =
442             SMESH::GetHypothesisData( SMESH::toQStr( algoList[0].first->GetName() ));
443           if ( algo &&
444                algo->InputTypes.empty() && // builds all dimensions it-self
445                !algo->IsSupportSubmeshes )
446             return CORBA::string_dup( algoNames[0].toLatin1().data() );
447         }
448 //       }
449     }
450   }
451   return 0;
452 }
453
454 //================================================================================
455 /*!
456  * \brief find an existing submesh by the selected shape
457  * \retval _PTR(SObject) - the found submesh SObject
458  */
459 //================================================================================
460 _PTR(SObject) SMESHGUI_MeshOp::getSubmeshByGeom() const
461 {
462   QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
463   QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
464   _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
465   _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
466   if ( pMesh && pGeom ) {
467     GEOM::GEOM_Object_var geom = SMESH::SObjectToInterface<GEOM::GEOM_Object>( pGeom );
468     if ( !geom->_is_nil() ) {
469       int tag = -1;
470       switch ( geom->GetShapeType() ) {
471       case GEOM::VERTEX:   tag = SMESH::Tag_SubMeshOnVertex;   break;
472       case GEOM::EDGE:     tag = SMESH::Tag_SubMeshOnEdge;     break;
473       case GEOM::WIRE:     tag = SMESH::Tag_SubMeshOnWire;     break;
474       case GEOM::FACE:     tag = SMESH::Tag_SubMeshOnFace;     break;
475       case GEOM::SHELL:    tag = SMESH::Tag_SubMeshOnShell;    break;
476       case GEOM::SOLID:    tag = SMESH::Tag_SubMeshOnSolid;    break;
477       case GEOM::COMPOUND: tag = SMESH::Tag_SubMeshOnCompound; break;
478       default:;
479       }
480       _PTR(GenericAttribute) anAttr;
481       _PTR(SObject) aSubmeshRoot;
482       _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
483       if ( pMesh->FindSubObject( tag, aSubmeshRoot ) )
484       {
485         _PTR(ChildIterator) smIter = aStudy->NewChildIterator( aSubmeshRoot );
486         for ( ; smIter->More(); smIter->Next() )
487         {
488           _PTR(SObject) aSmObj = smIter->Value();
489           if ( ! aSmObj->FindAttribute( anAttr, "AttributeIOR" ))
490             continue;
491           _PTR(ChildIterator) anIter1 = aStudy->NewChildIterator(aSmObj);
492           for ( ; anIter1->More(); anIter1->Next()) {
493             _PTR(SObject) pGeom2 = anIter1->Value();
494             if ( pGeom2->ReferencedObject( pGeom2 ) &&
495                  pGeom2->GetID() == pGeom->GetID() )
496               return aSmObj;
497           }
498         }
499       }
500     }
501   }
502   return _PTR(SObject)();
503 }
504
505 //================================================================================
506 /*!
507  * \brief Updates dialog's look and feel
508  *
509  * Virtual method redefined from the base class updates dialog's look and feel
510  */
511 //================================================================================
512 void SMESHGUI_MeshOp::selectionDone()
513 {
514   if (!dlg()->isVisible() || !myDlg->isEnabled())
515     return;
516
517   SMESHGUI_SelectionOp::selectionDone();
518
519   try
520   {
521     myIsOnGeometry = true;
522
523     //Check geometry for mesh
524     QString anObjEntry = myDlg->selectedObject(SMESHGUI_MeshDlg::Obj);
525     _PTR(SObject) pObj = studyDS()->FindObjectID(anObjEntry.toLatin1().data());
526     if (pObj)
527     {
528       SMESH::SMESH_Mesh_var aMeshVar =
529         SMESH::SMESH_Mesh::_narrow(_CAST(SObject,pObj)->GetObject());
530       if (!aMeshVar->_is_nil()) {
531         if (!myToCreate && !aMeshVar->HasShapeToMesh())
532           myIsOnGeometry = false;
533       }
534     }
535
536     if (myIsOnGeometry)
537     {
538       // Enable tabs according to shape dimension
539
540       int shapeDim = 3;
541
542       QStringList aGEOMs;
543       myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs);
544       GEOM::ListOfGO_var aSeq = new GEOM::ListOfGO;
545
546       if (aGEOMs.count() > 0) {
547         // one or more GEOM shape selected
548         aSeq->length(aGEOMs.count());
549         QStringList::const_iterator aSubShapesIter = aGEOMs.begin();
550         int iSubSh = 0;
551         for ( ; aSubShapesIter != aGEOMs.end(); aSubShapesIter++, iSubSh++) {
552           QString aSubGeomEntry = (*aSubShapesIter);
553           _PTR(SObject) pSubGeom = studyDS()->FindObjectID(aSubGeomEntry.toLatin1().data());
554          
555           if( pSubGeom ) { 
556             SALOMEDS_SObject* sobj = _CAST(SObject,pSubGeom);
557             if( sobj ) {
558               GEOM::GEOM_Object_var aSubGeomVar =
559                 GEOM::GEOM_Object::_narrow(sobj->GetObject());
560               if( !aSubGeomVar->_is_nil() ){
561                 aSeq[iSubSh] = aSubGeomVar;
562               }
563             }
564           }
565         }
566       } else {
567         // get geometry by selected sub-mesh
568         QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
569         _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
570         GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
571         if (!aGeomVar->_is_nil()) {
572           aSeq->length(1);
573           aSeq[0] = aGeomVar;
574         }
575       }
576
577       if (aSeq->length() > 0) {
578         shapeDim = -1;
579         for (int iss = 0; iss < aSeq->length() && shapeDim < 3; iss++) {
580           GEOM::GEOM_Object_var aGeomVar = aSeq[iss];
581           switch ( aGeomVar->GetShapeType() ) {
582           case GEOM::SOLID:  shapeDim = 3; break;
583           case GEOM::SHELL:
584             // Bug 0016155: EDF PAL 447: If the shape is a Shell, disable 3D tab
585             // {
586             //   TopoDS_Shape aShape;
587             //   bool isClosed = GEOMBase::GetShape(aGeomVar, aShape) && /*aShape.Closed()*/BRep_Tool::IsClosed(aShape);
588             //   shapeDim = qMax(isClosed ? 3 : 2, shapeDim);
589             // }
590             // break;
591           case GEOM::FACE:   shapeDim = qMax(2, shapeDim); break;
592           case GEOM::WIRE:
593           case GEOM::EDGE:   shapeDim = qMax(1, shapeDim); break;
594           case GEOM::VERTEX: shapeDim = qMax(0, shapeDim); break;
595           default:
596             {
597               TopoDS_Shape aShape;
598               if (GEOMBase::GetShape(aGeomVar, aShape))
599               {
600                 TopExp_Explorer exp (aShape, TopAbs_SOLID);
601                 if (exp.More()) {
602                   shapeDim = 3;
603                 }
604                 // Bug 0016155: EDF PAL 447: If the shape is a Shell, disable 3D tab
605                 // else if ( exp.Init( aShape, TopAbs_SHELL ), exp.More() )
606                 // {
607                 //   shapeDim = 2;
608                 //   for (; exp.More() && shapeDim == 2; exp.Next()) {
609                 //     if (/*exp.Current().Closed()*/BRep_Tool::IsClosed(exp.Current()))
610                 //       shapeDim = 3;
611                 //   }
612                 // }
613                 else if ( exp.Init( aShape, TopAbs_FACE ), exp.More() )
614                   shapeDim = qMax(2, shapeDim);
615                 else if ( exp.Init( aShape, TopAbs_EDGE ), exp.More() )
616                   shapeDim = qMax(1, shapeDim);
617                 else if ( exp.Init( aShape, TopAbs_VERTEX ), exp.More() )
618                   shapeDim = qMax(0, shapeDim);
619               }
620             }
621           }
622           if ( shapeDim == 3 )
623             break;
624         }
625       }
626       for (int i = SMESH::DIM_3D; i > shapeDim; i--) {
627         // reset algos before disabling tabs (0020138)
628         onAlgoSelected(-1, i);
629       }
630       myDlg->setMaxHypoDim( shapeDim );
631       myMaxShapeDim = shapeDim;
632       myDlg->setHypoSets( SMESH::GetHypothesesSets( shapeDim ));
633
634       if (!myToCreate) // edition: read hypotheses
635       {
636         if (pObj != 0)
637         {
638           SMESH::SMESH_subMesh_var submeshVar =
639             SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
640           myDlg->setObjectShown( SMESHGUI_MeshDlg::Mesh, !submeshVar->_is_nil() );
641           myDlg->setObjectShown( SMESHGUI_MeshDlg::Geom, true );
642           myDlg->objectWg( SMESHGUI_MeshDlg::Mesh, SMESHGUI_MeshDlg::Btn )->hide();
643           myDlg->objectWg( SMESHGUI_MeshDlg::Geom, SMESHGUI_MeshDlg::Btn )->hide();
644           myDlg->updateGeometry();
645           myDlg->adjustSize();
646           myIsMesh = submeshVar->_is_nil();
647           readMesh();
648         }
649         else
650           myDlg->reset();
651       }
652       else if ( !myIsMesh ) // submesh creation
653       {
654         // if a submesh on the selected shape already exist, pass to submesh edition mode
655         if ( _PTR(SObject) pSubmesh = getSubmeshByGeom() ) {
656           SMESH::SMESH_subMesh_var sm =
657             SMESH::SObjectToInterface<SMESH::SMESH_subMesh>( pSubmesh );
658           bool editSubmesh = ( !sm->_is_nil() &&
659                                SUIT_MessageBox::question( myDlg, tr( "SMESH_WARNING" ),
660                                                           tr( "EDIT_SUBMESH_QUESTION"),
661                                                           SUIT_MessageBox::Yes |
662                                                           SUIT_MessageBox::No,
663                                                           SUIT_MessageBox::No )
664                                == SUIT_MessageBox::Yes );
665           if ( editSubmesh )
666           {
667             selectionMgr()->clearFilters();
668             selectObject( pSubmesh );
669             SMESHGUI::GetSMESHGUI()->switchToOperation( SMESHOp::OpEditMeshOrSubMesh );
670             return;
671           }
672           else
673           {
674             myDlg->selectObject( "", SMESHGUI_MeshDlg::Geom, "" );
675             selectObject( _PTR(SObject)() );
676             selectionDone();
677             return;
678           }
679         }
680         // discard selected mesh if submesh creation not allowed because of
681         // a global algorithm that does not support submeshes
682         if ( char* algoName = isSubmeshIgnored() ) {
683           SUIT_MessageBox::warning( myDlg, tr( "SMESH_ERROR" ),
684                                     tr("SUBMESH_NOT_ALLOWED").arg(algoName));
685           CORBA::string_free( algoName );
686           myDlg->selectObject( "", SMESHGUI_MeshDlg::Mesh, "" );
687           selectObject( _PTR(SObject)() );
688           selectionDone();
689           return;
690         }
691
692         // enable/disable popup for choice of geom selection way
693         bool enable = false;
694         QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
695         if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() )) {
696           SMESH::SMESH_Mesh_var mesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>( pMesh );
697           if ( !mesh->_is_nil() ) {
698             //rnv: issue 21056: EDF 1608 SMESH: Dialog Box "Create Sub Mesh": focus should automatically switch to geometry
699             QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
700             _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
701             if ( !pGeom || GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() )->_is_nil() )
702               myDlg->activateObject(SMESHGUI_MeshDlg::Geom);
703             enable = ( shapeDim > 1 ) && ( mesh->NbEdges() > 0 );
704           }
705         }
706         myDlg->setGeomPopupEnabled( enable );
707       }
708     }
709     else { // no geometry defined
710       myDlg->enableTab( SMESH::DIM_3D );
711       QStringList hypList;
712       availableHyps( SMESH::DIM_3D, Algo, hypList,
713                      myAvailableHypData[SMESH::DIM_3D][Algo]);
714
715       SMESHGUI_MeshTab* aTab = myDlg->tab( SMESH::DIM_3D );
716       aTab->setAvailableHyps( Algo, hypList );
717       for (int i = SMESH::DIM_0D;i < SMESH::DIM_3D; ++i) {
718         myDlg->disableTab(i);
719       }
720       myMaxShapeDim = -1;
721       //Hide labels and fields (Mesh and Geometry)
722       myDlg->setObjectShown( SMESHGUI_MeshDlg::Mesh, false );
723       myDlg->setObjectShown( SMESHGUI_MeshDlg::Geom, false );
724       myDlg->adjustSize();
725       readMesh();
726     }
727     int curIndex = myDlg->currentMeshType( );
728     QStringList TypeMeshList;
729     createMeshTypeList( TypeMeshList );
730     setAvailableMeshType( TypeMeshList );
731     curIndex =( curIndex >= TypeMeshList.count() ) ? 0 : curIndex;
732     myDlg->setCurrentMeshType( curIndex );
733     setFilteredAlgoData( myMaxShapeDim, curIndex);
734   }
735   catch ( const SALOME::SALOME_Exception& S_ex )
736   {
737     SalomeApp_Tools::QtCatchCorbaException( S_ex );
738   }
739   catch ( ... )
740   {
741   }
742 }
743
744 //================================================================================
745 /*!
746  * \brief Verifies validity of input data
747   * \param theMess - Output parameter intended for returning error message
748   * \retval bool  - TRUE if input data is valid, false otherwise
749  *
750  * Verifies validity of input data. This method is called when "Apply" or "OK" button
751  * is pressed before mesh creation or editing.
752  */
753 //================================================================================
754 bool SMESHGUI_MeshOp::isValid( QString& theMess ) const
755 {
756   // Selected object to be  edited
757   if ( !myToCreate && myDlg->selectedObject( SMESHGUI_MeshDlg::Obj ) == "" )
758   {
759     theMess = tr( "THERE_IS_NO_OBJECT_FOR_EDITING" );
760     return false;
761   }
762
763   // Name
764   QString aMeshName = myDlg->objectText( SMESHGUI_MeshDlg::Obj ).trimmed();
765   if ( aMeshName.isEmpty() )
766   {
767     theMess = myIsMesh ? tr( "NAME_OF_MESH_IS_EMPTY" ) : tr( "NAME_OF_SUBMESH_IS_EMPTY" );
768     return false;
769   }
770
771 /*  // Imported mesh, if create sub-mesh or edit mesh
772   if ( !myToCreate || ( myToCreate && !myIsMesh ))
773   {
774     QString aMeshEntry = myDlg->selectedObject
775       ( myToCreate ? SMESHGUI_MeshDlg::Mesh : SMESHGUI_MeshDlg::Obj );
776     if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() )) {
777       SMESH::SMESH_Mesh_var mesh = SMESH::SObjectToInterface<SMESH::SMESH_Mesh>( pMesh );
778       if ( !mesh->_is_nil() && CORBA::is_nil( mesh->GetShapeToMesh() )) {
779         theMess = tr( "IMPORTED_MESH" );
780         return false;
781       }
782     }
783   }*/
784
785   // Geom
786   if ( myToCreate )
787   {
788     QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
789     if ( aGeomEntry.isEmpty() )
790     {
791       theMess = tr( myIsMesh ?
792                     "GEOMETRY_OBJECT_IS_NOT_DEFINED_MESH" :
793                     "GEOMETRY_OBJECT_IS_NOT_DEFINED_SUBMESH");
794       if ( !myIsMesh )
795         return false;
796       dlg()->show();
797       if ( SUIT_MessageBox::warning( myDlg, tr( "SMESH_WRN_WARNING" ), theMess,
798            SUIT_MessageBox::Yes, SUIT_MessageBox::No ) == SUIT_MessageBox::No )
799       {
800         theMess = "";
801         return false;
802       }
803       return true;
804     }
805     _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
806     if ( !pGeom || GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() )->_is_nil() )
807     {
808       theMess = tr( "GEOMETRY_OBJECT_IS_NULL" );
809       return false;
810     }
811
812     // Mesh
813     if ( !myIsMesh ) // i.e sub-mesh creation,
814     {
815       QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
816       if ( aMeshEntry == "" )
817       {
818         theMess = tr( "MESH_IS_NOT_DEFINED" );
819         return false;
820       }
821       _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
822       if ( !pMesh || SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() )->_is_nil() )
823       {
824         theMess = tr( "MESH_IS_NULL" );
825         return false;
826       }
827       if ( !isSubshapeOk() )
828       {
829         theMess = tr( "INVALID_SUBSHAPE" );
830         return false;
831       }
832     }
833   }
834
835   return true;
836 }
837
838 //================================================================================
839 /*!
840  * \brief check compatibility of the algorithm and another algorithm or hypothesis
841   * \param theAlgoData - algorithm data
842   * \param theHypData - hypothesis data
843   * \param theHypType - hypothesis type
844   * \param theHypTypeName - hypothesis type name, must be provided if 2-nd arg is not algo
845   * \retval bool - check result
846  */
847 //================================================================================
848 static bool isCompatible(const HypothesisData* theAlgoData,
849                          const HypothesisData* theHypData,
850                          const int             theHypType)
851 {
852   if ( !theAlgoData )
853     return true;
854
855   if ( theHypType == SMESHGUI_MeshOp::Algo )
856     return SMESH::IsCompatibleAlgorithm( theAlgoData, theHypData );
857
858   bool isOptional;
859   return ( SMESH::IsAvailableHypothesis( theAlgoData, theHypData->TypeName, isOptional ));
860 }
861
862 //================================================================================
863 /*!
864  * \brief Gets available hypotheses or algorithms
865   * \param theDim - specifies dimension of returned hypotheses/algorifms
866   * \param theHypType - specifies whether algorims or hypotheses or additional ones
867   * are retrieved (possible values are in HypType enumeration)
868   * \param theHyps - Output list of hypotheses' names
869   * \param theAlgoData - to select hypos able to be used by this algo (optional)
870  *
871  * Gets available hypotheses or algorithm in accordance with input parameters
872  */
873 //================================================================================
874 void SMESHGUI_MeshOp::availableHyps( const int       theDim,
875                                      const int       theHypType,
876                                      QStringList&    theHyps,
877                                      THypDataList&   theDataList,
878                                      HypothesisData* theAlgoData ) const
879 {
880   theDataList.clear();
881   theHyps.clear();
882   bool isAlgo = ( theHypType == Algo );
883   bool isAux  = ( theHypType >= AddHyp );
884   QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses( isAlgo, theDim, isAux, myIsOnGeometry, !myIsMesh );
885
886   QStringList::const_iterator anIter;
887   for ( anIter = aHypTypeNameList.begin(); anIter != aHypTypeNameList.end(); ++anIter )
888   {
889     HypothesisData* aData = SMESH::GetHypothesisData( *anIter );
890     if ( isCompatible ( theAlgoData, aData, theHypType )) {
891       theDataList.append( aData );
892       theHyps.append( aData->Label );
893     }
894   }
895 }
896
897 //================================================================================
898 /*!
899  * \brief Gets existing hypotheses or algorithms
900  *  \param theDim - specifies dimension of returned hypotheses/algorifms
901  *  \param theHypType - specifies whether algorims or hypotheses or additional ones
902  *  are retrieved (possible values are in HypType enumeration)
903  *  \param theFather - start object for finding ( may be component, mesh, or sub-mesh )
904  *  \param theHyps - output list of names.
905  *  \param theHypVars - output list of variables.
906  *  \param theAlgoData - to select hypos able to be used by this algo (optional)
907  *
908  * Gets existing (i.e. already created) hypotheses or algorithm in accordance with
909  * input parameters.
910  *
911  * WARNING: when using this method to get hyps existing in Mesh component,
912  *          call availableHyps() before in order to get only hyps of available types
913  *          that was filtered by availableHyps()
914  */
915 //================================================================================
916 void SMESHGUI_MeshOp::existingHyps( const int       theDim,
917                                     const int       theHypType,
918                                     _PTR(SObject)   theFather,
919                                     QStringList&    theHyps,
920                                     THypList&       theHypList,
921                                     HypothesisData* theAlgoData) const
922 {
923   // Clear hypoheses list
924   theHyps.clear();
925   theHypList.clear();
926
927   if ( !theFather )
928     return;
929
930   _PTR(SObject)          aHypRoot;
931   _PTR(GenericAttribute) anAttr;
932   _PTR(AttributeName)    aName;
933   _PTR(AttributeIOR)     anIOR;
934
935   const bool isMesh = !_CAST( SComponent, theFather );
936   int aPart = -1;
937   if ( isMesh )
938     aPart = theHypType == Algo ? SMESH::Tag_RefOnAppliedAlgorithms : SMESH::Tag_RefOnAppliedHypothesis;
939   else
940     aPart = theHypType == Algo ? SMESH::Tag_AlgorithmsRoot : SMESH::Tag_HypothesisRoot;
941
942   const bool isAux   = ( theHypType >= AddHyp );
943   const bool allHyps = ( !isMesh && theHypType != Algo && theDim > -1);
944
945   if ( theFather->FindSubObject( aPart, aHypRoot ) )
946   {
947     _PTR(ChildIterator) anIter =
948       SMESH::GetActiveStudyDocument()->NewChildIterator( aHypRoot );
949     for ( ; anIter->More(); anIter->Next() )
950     {
951       _PTR(SObject) anObj = anIter->Value();
952       if ( isMesh ) // i.e. mesh or submesh
953       {
954         _PTR(SObject) aRefObj;
955         if ( anObj->ReferencedObject( aRefObj ) )
956           anObj = aRefObj;
957         else
958           continue;
959       }
960       if ( anObj->FindAttribute( anAttr, "AttributeName" ) )
961       {
962         aName = anAttr;
963         CORBA::Object_var aVar = _CAST(SObject,anObj)->GetObject();
964         if ( !CORBA::is_nil( aVar ) )
965         {
966           SMESH::SMESH_Hypothesis_var aHypVar = SMESH::SMESH_Hypothesis::_narrow( aVar );
967           if ( !aHypVar->_is_nil() )
968           {
969             CORBA::String_var hypType = aHypVar->GetName();
970             HypothesisData* aData = SMESH::GetHypothesisData( hypType.in() );
971             if ( !aData) continue;
972             if (( theDim == -1 || aData->Dim.contains( theDim ) ) &&
973                 ( isCompatible ( theAlgoData, aData, theHypType )) &&
974                 ( theHypType == Algo || isAux == aData->IsAuxOrNeedHyp ) &&
975                 ( !allHyps || myAvailableHypData[theDim][theHypType].count(aData) ))
976             {
977               std::string aHypName = aName->Value();
978               theHyps.append( aHypName.c_str() );
979               theHypList.append( THypItem( aHypVar, aHypName.c_str() ) );
980             }
981           }
982         }
983       }
984     }
985   }
986 }
987
988 //================================================================================
989 /*!
990  * \brief If create or edit a submesh, return a hypothesis holding parameters used
991  *        to mesh a sub-shape
992   * \param aHypType - The hypothesis type name
993   * \param aServerLib - Server library name
994   * \param hypData - The structure holding the hypothesis type etc.
995   * \retval SMESH::SMESH_Hypothesis_var - the hypothesis holding parameter values
996  */
997 //================================================================================
998 SMESH::SMESH_Hypothesis_var
999 SMESHGUI_MeshOp::getInitParamsHypothesis( const QString& aHypType,
1000                                           const QString& aServerLib ) const
1001 {
1002   if ( aHypType.isEmpty() || aServerLib.isEmpty() )
1003     return SMESH::SMESH_Hypothesis::_nil();
1004
1005   const int nbColonsInMeshEntry = 3;
1006   bool isSubMesh = myToCreate ?
1007     !myIsMesh :
1008     myDlg->selectedObject( SMESHGUI_MeshDlg::Obj ).count(':') > nbColonsInMeshEntry;
1009
1010   // get mesh and geom object
1011   SMESH::SMESH_Mesh_var aMeshVar = SMESH::SMESH_Mesh::_nil();
1012   GEOM::GEOM_Object_var aGeomVar = GEOM::GEOM_Object::_nil();
1013
1014   QString anEntry;
1015   if ( isSubMesh )
1016   {
1017     anEntry = myDlg->selectedObject
1018       ( myToCreate ? SMESHGUI_MeshDlg::Mesh : SMESHGUI_MeshDlg::Obj );
1019     if ( _PTR(SObject) pObj = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
1020     {
1021       CORBA::Object_ptr Obj = _CAST( SObject,pObj )->GetObject();
1022       if ( myToCreate ) // mesh and geom may be selected
1023       {
1024         aMeshVar = SMESH::SMESH_Mesh::_narrow( Obj );
1025         anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1026         if ( _PTR(SObject) pGeom = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
1027           aGeomVar= GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1028       }
1029       else // edition: sub-mesh may be selected
1030       {
1031         SMESH::SMESH_subMesh_var sm = SMESH::SMESH_subMesh::_narrow( Obj );
1032         if ( !sm->_is_nil() ) {
1033           aMeshVar = sm->GetFather();
1034           aGeomVar = sm->GetSubShape();
1035         }
1036       }
1037     }
1038   }
1039   else // mesh
1040   {
1041     if ( !myToCreate ) // mesh to edit can be selected
1042     {
1043       anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1044       if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
1045       {
1046         aMeshVar = SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
1047         if ( !aMeshVar->_is_nil() )
1048           aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pMesh );
1049       }
1050     }
1051     if ( aGeomVar->_is_nil() ) {
1052       anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1053       if ( _PTR(SObject) pGeom = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
1054       {
1055         aGeomVar= GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1056       }
1057     }
1058   }
1059
1060   SMESH::SMESH_Hypothesis_var hyp =
1061     SMESHGUI::GetSMESHGen()->GetHypothesisParameterValues( aHypType.toLatin1().data(),
1062                                                            aServerLib.toLatin1().data(),
1063                                                            aMeshVar,
1064                                                            aGeomVar,
1065                                                            /*byMesh = */isSubMesh);
1066   if ( hyp->_is_nil() && isSubMesh )
1067     hyp = SMESHGUI::GetSMESHGen()->GetHypothesisParameterValues( aHypType.toLatin1().data(),
1068                                                                  aServerLib.toLatin1().data(),
1069                                                                  aMeshVar,
1070                                                                  aGeomVar,
1071                                                                  /*byMesh = */false);
1072   return hyp;
1073 }
1074
1075 //================================================================================
1076 /*!
1077  * \brief initialize a hypothesis creator
1078  */
1079 //================================================================================
1080
1081 void SMESHGUI_MeshOp::initHypCreator( SMESHGUI_GenericHypothesisCreator* theCreator )
1082 {
1083   if ( !theCreator ) return;
1084
1085   // Set shapes, of mesh and sub-mesh if any
1086
1087   // get Entry of the Geom object
1088   QString aGeomEntry = "";
1089   QString aMeshEntry = "";
1090   QString anObjEntry = "";
1091   aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1092   aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
1093   anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1094
1095   if ( myToCreate && myIsMesh )
1096     aMeshEntry = aGeomEntry;
1097
1098   if ( aMeshEntry != aGeomEntry ) { // Get Geom object from Mesh of a sub-mesh being edited
1099     _PTR(SObject) pObj = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
1100     GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
1101     aMeshEntry = ( aGeomVar->_is_nil() ) ? QString() : SMESH::toQStr( aGeomVar->GetStudyEntry() );
1102   }
1103
1104   if ( aMeshEntry == "" && aGeomEntry == "" ) { // get geom of an object being edited
1105     _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
1106     bool isMesh;
1107     GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj, &isMesh );
1108     if ( !aGeomVar->_is_nil() )
1109     {
1110       aGeomEntry = SMESH::toQStr( aGeomVar->GetStudyEntry() );
1111       if ( isMesh )
1112         aMeshEntry = aGeomEntry;
1113     }
1114   }
1115
1116   if ( anObjEntry != "" && aGeomEntry != "" && aMeshEntry == "" ) {
1117     // take geometry from submesh being created
1118     _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
1119     if ( pObj ) {
1120       // if current object is sub-mesh
1121       SMESH::SMESH_subMesh_var aSubMeshVar =
1122         SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
1123       if ( !aSubMeshVar->_is_nil() ) {
1124         SMESH::SMESH_Mesh_var aMeshVar =  aSubMeshVar->GetFather();
1125         if ( !aMeshVar->_is_nil() ) {
1126           _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar );
1127           GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( aMeshSO );
1128           if ( !aGeomVar->_is_nil() )
1129             aMeshEntry = SMESH::toQStr( aGeomVar->GetStudyEntry() );
1130         }
1131       }
1132     }
1133   }
1134
1135   theCreator->setShapeEntry( aGeomEntry );
1136   if ( aMeshEntry != "" )
1137     theCreator->setMainShapeEntry( aMeshEntry );
1138 }
1139
1140 //================================================================================
1141 /*!
1142  * \Brief Returns tab dimention
1143   * \param tab - the tab in the dlg
1144   * \param dlg - my dialogue
1145   * \retval int - dimention
1146  */
1147 //================================================================================
1148 static int getTabDim (const QObject* tab, SMESHGUI_MeshDlg* dlg )
1149 {
1150   int aDim = -1;
1151   for (int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++)
1152     if (tab == dlg->tab(i))
1153       aDim = i;
1154   return aDim;
1155 }
1156
1157 //================================================================================
1158 /*!
1159  * \brief Create hypothesis
1160   * \param theHypType - hypothesis category (main or additional)
1161   * \param theIndex - index of type of hypothesis to be cerated
1162  *
1163  * Specifies dimension of hypothesis to be created (using sender() method),
1164  * specifies its type and calls method for hypothesis creation
1165  */
1166 //================================================================================
1167 void SMESHGUI_MeshOp::onCreateHyp( const int theHypType, const int theIndex )
1168 {
1169   // Specifies dimension of hypothesis to be created
1170   int aDim = getTabDim( sender(), myDlg );
1171   if (aDim == -1)
1172     return;
1173
1174   // Specifies type of hypothesis to be created
1175   THypDataList& dataList = myAvailableHypData[ aDim ][ theHypType ];
1176   if (theIndex < 0 || theIndex >= dataList.count())
1177     return;
1178   QString aHypTypeName = dataList[ theIndex ]->TypeName;
1179
1180   // Create hypothesis
1181   createHypothesis(aDim, theHypType, aHypTypeName);
1182 }
1183
1184 namespace
1185 {
1186   QString GetUniqueName (const QStringList& theHypNames,
1187                          const QString& theName,
1188                          size_t theIteration = 1)
1189   {
1190     QString aName = theName + "_" + QString::number( theIteration );
1191     if ( theHypNames.contains( aName ) )
1192       return GetUniqueName( theHypNames, theName, ++theIteration );
1193     return aName;
1194   }
1195 }
1196
1197 //================================================================================
1198 /*!
1199  *  Create hypothesis and update dialog.
1200  *  \param theDim - dimension of hypothesis to be created
1201  *  \param theType - hypothesis category (algorithm, hypothesis, additional hypothesis)
1202  *  \param theTypeName - specifies hypothesis to be created
1203  */
1204 //================================================================================
1205 void SMESHGUI_MeshOp::createHypothesis(const int theDim,
1206                                        const int theType,
1207                                        const QString& theTypeName)
1208 {
1209   HypothesisData* aData = SMESH::GetHypothesisData(theTypeName);
1210   if (!aData)
1211     return;
1212
1213   myDim = theDim;
1214   myType = theType;
1215
1216   // get a unique hyp name
1217   QStringList aHypNames;
1218   TDim2Type2HypList::const_iterator aDimIter = myExistingHyps.begin();
1219   for ( ; aDimIter != myExistingHyps.end(); aDimIter++) {
1220     const TType2HypList& aType2HypList = aDimIter.value();
1221     TType2HypList::const_iterator aTypeIter = aType2HypList.begin();
1222     for ( ; aTypeIter != aType2HypList.end(); aTypeIter++) {
1223       const THypList& aHypList = aTypeIter.value();
1224       THypList::const_iterator anIter = aHypList.begin();
1225       for ( ; anIter != aHypList.end(); anIter++) {
1226         const THypItem& aHypItem = *anIter;
1227         const QString& aHypName = aHypItem.second;
1228         aHypNames.append(aHypName);
1229       }
1230     }
1231   }
1232   QString aHypName = GetUniqueName( aHypNames, aData->Label);
1233
1234   // existing hypos
1235   bool dialog = false;
1236
1237   QString aClientLibName = aData->ClientLibName;
1238   if (aClientLibName == "") {
1239     // Call hypothesis creation server method (without GUI)
1240     SMESH::SMESH_Hypothesis_var aHyp =
1241       SMESH::CreateHypothesis(theTypeName, aHypName, false);
1242     aHyp.out();
1243   }
1244   else {
1245     // Get hypotheses creator client (GUI)
1246     SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(theTypeName);
1247
1248     // Create hypothesis
1249     if (aCreator)
1250     {
1251       // Get parameters appropriate to initialize a new hypothesis
1252       SMESH::SMESH_Hypothesis_var initParamHyp =
1253         getInitParamsHypothesis(theTypeName, aData->ServerLibName);
1254
1255       removeCustomFilters(); // Issue 0020170
1256
1257       // set shapes, of mesh and sub-mesh if any
1258       initHypCreator( aCreator );
1259
1260       myDlg->setEnabled( false );
1261       aCreator->create(initParamHyp, aHypName, myDlg, this, SLOT( onHypoCreated( int ) ) );
1262       dialog = true;
1263     }
1264     else {
1265      SMESH::SMESH_Hypothesis_var aHyp =
1266        SMESH::CreateHypothesis(theTypeName, aHypName, false);
1267      aHyp.out();
1268     }
1269   }
1270
1271   if( !dialog )
1272     onHypoCreated(2);
1273 }
1274
1275 //================================================================================
1276 /*!
1277  *  Necessary steps after hypothesis creation
1278  *  \param result - creation result:
1279  *   0 = rejected
1280  *   1 = accepted
1281  *   2 = additional value meaning that slot is called not from dialog box
1282  */
1283 //================================================================================
1284 void SMESHGUI_MeshOp::onHypoCreated( int result )
1285 {
1286   if( result != 2 )
1287   {
1288     int obj = myDlg->getActiveObject();
1289     onActivateObject( obj ); // Issue 0020170. Restore filters
1290     myDlg->setEnabled( true );
1291   }
1292
1293   _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
1294
1295   int nbHyp = myExistingHyps[myDim][myType].count();
1296   HypothesisData* algoData = hypData( myDim, Algo, currentHyp( myDim, Algo ));
1297   QStringList aNewHyps;
1298   existingHyps(myDim, myType, aFather, aNewHyps, myExistingHyps[myDim][myType], algoData);
1299   if (aNewHyps.count() > nbHyp)
1300   {
1301     for (int i = nbHyp; i < aNewHyps.count(); i++)
1302       myDlg->tab(myDim)->addHyp(myType, aNewHyps[i]);
1303   }
1304
1305   if( result!=2 && myHypoSet )
1306     processSet();
1307 }
1308
1309 //================================================================================
1310 /*!
1311  * \brief Calls plugin methods for hypothesis editing
1312   * \param theHypType - specifies whether main hypothesis or additional one
1313   * is edited
1314   * \param theIndex - index of existing hypothesis
1315  *
1316  * Calls plugin methods for hypothesis editing
1317  */
1318 //================================================================================
1319 void SMESHGUI_MeshOp::onEditHyp( const int theHypType, const int theIndex )
1320 {
1321   // Speicfies dimension of hypothesis to be created
1322   int aDim = getTabDim( sender(), myDlg );
1323   if (aDim == -1)
1324     return;
1325
1326   const THypList& aList = myExistingHyps[ aDim ][ theHypType ];
1327   if ( theIndex < 0 || theIndex >= aList.count() )
1328     return;
1329   const THypItem& aHypItem = aList[ theIndex ];
1330   SMESH::SMESH_Hypothesis_var aHyp = aHypItem.first;
1331   if ( aHyp->_is_nil() )
1332     return;
1333
1334   SMESHGUI_GenericHypothesisCreator* aCreator =
1335     SMESH::GetHypothesisCreator( SMESH::toQStr( aHyp->GetName() ));
1336   if ( aCreator )
1337   {
1338     // set initial parameters
1339     SMESH::SMESH_Hypothesis_var initParamHyp =
1340       getInitParamsHypothesis( SMESH::toQStr( aHyp->GetName() ),
1341                                SMESH::toQStr( aHyp->GetLibName() ));
1342     aCreator->setInitParamsHypothesis( initParamHyp );
1343
1344     // set shapes, of mesh and sub-mesh if any
1345     initHypCreator( aCreator );
1346
1347     removeCustomFilters(); // Issue 0020170
1348     myDlg->setEnabled( false );
1349
1350     aCreator->edit( aHyp.in(), aHypItem.second, dlg(), this, SLOT( onHypoEdited( int ) ) );
1351   }
1352 }
1353
1354 //================================================================================
1355 /*!
1356  *  Necessary steps after hypothesis edition
1357  *  \param result - creation result:
1358  *   0 = rejected
1359  *   1 = accepted
1360  */
1361 //================================================================================
1362 void SMESHGUI_MeshOp::onHypoEdited( int result )
1363 {
1364   int obj = myDlg->getActiveObject();
1365   onActivateObject( obj ); // Issue 0020170. Restore filters
1366   myDlg->setEnabled( true );
1367 }
1368
1369 //================================================================================
1370 /*!
1371  * \brief access to hypothesis data
1372   * \param theDim - hyp dimension
1373   * \param theHypType - hyp type (Algo,MainHyp or AddHyp)
1374   * \param theIndex - index in the list
1375   * \retval HypothesisData* - result data, may be 0
1376  */
1377 //================================================================================
1378 HypothesisData* SMESHGUI_MeshOp::hypData( const int theDim,
1379                                           const int theHypType,
1380                                           const int theIndex)
1381 {
1382   if ( theDim     > -1 && theDim    <= SMESH::DIM_3D &&
1383        theHypType > -1 && theHypType < NbHypTypes &&
1384        theIndex   > -1 && theIndex   < myAvailableHypData[ theDim ][ theHypType ].count() )
1385     return myAvailableHypData[ theDim ][ theHypType ][ theIndex ];
1386   return 0;
1387 }
1388
1389 //================================================================================
1390 /*!
1391  * \brief Set available algos and hypos according to the selected algorithm
1392   * \param theIndex - algorithm index
1393  */
1394 //================================================================================
1395 void SMESHGUI_MeshOp::onAlgoSelected( const int theIndex,
1396                                       const int theDim )
1397 {
1398   if ( myIgnoreAlgoSelection )
1399     return;
1400
1401   int aDim = theDim < 0 ? getTabDim( sender(), myDlg ): theDim;
1402   if (aDim == -1)
1403     return;
1404
1405   // find highest available dimension, all algos of this dimension are available for choice
1406   int aTopDim = -1;
1407   for (int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++)
1408     if (isAccessibleDim( i ))
1409       aTopDim = i;
1410   if (aTopDim == -1)
1411     return;
1412
1413   const bool isSubmesh = ( myToCreate ? !myIsMesh : myDlg->isObjectShown( SMESHGUI_MeshDlg::Mesh ));
1414
1415   HypothesisData* algoData = hypData( aDim, Algo, theIndex );
1416   HypothesisData* algoByDim[4];
1417   algoByDim[ aDim ] = algoData;
1418
1419   QStringList anAvailable;
1420
1421   // check that tab enabled of one less dimension
1422   if ( aDim > SMESH::DIM_0D )
1423   {
1424     if ( isAccessibleDim( aDim - 1 ) )
1425     {
1426       if (( myDlg->currentMeshType() != MT_ANY ) &&
1427           ( !algoData || ( myIsOnGeometry && algoData->InputTypes.isEmpty() )))
1428         for (int i = aDim - 1; i >= SMESH::DIM_0D; i--)
1429           if ( isAccessibleDim( i ) ) {
1430             myDlg->disableTab( i );
1431             setCurrentHyp(i, Algo, -1);
1432           }
1433     }
1434     else if ( algoData && myIsOnGeometry && !algoData->InputTypes.isEmpty() )
1435     {
1436       myDlg->enableTab( aDim - 1 );
1437     }
1438   }
1439
1440   // check that algorithms of other dimentions are compatible with
1441   // the selected one
1442   if ( !algoData ) { // all algos becomes available
1443     if (myDlg->currentMeshType() == MT_ANY || aDim == SMESH::DIM_1D || aDim == SMESH::DIM_0D)
1444       availableHyps( aDim, Algo, anAvailable, myAvailableHypData[ aDim ][ Algo ]);
1445     else{
1446       anAvailable.clear();
1447       for (int i = 0; i < myFilteredAlgoData[aDim].count(); ++i) {
1448         HypothesisData* aCurAlgo = myFilteredAlgoData[aDim][ i ];
1449         anAvailable.append( aCurAlgo->Label );
1450       }
1451     }
1452     myDlg->tab( aDim )->setAvailableHyps( Algo, anAvailable );
1453   }
1454   // 2 loops: backward and forward from algo dimension
1455   for ( int forward = false; forward <= true; ++forward )
1456   {
1457     int dim = aDim + 1, lastDim = SMESH::DIM_3D, dir = 1;
1458     if ( !forward ) {
1459       dim = aDim - 1; lastDim = SMESH::DIM_0D; dir = -1;
1460     }
1461     HypothesisData* prevAlgo = algoData;
1462     bool noCompatible = false;
1463     for ( ; dim * dir <= lastDim * dir; dim += dir)
1464     {
1465       if ( !isAccessibleDim( dim ))
1466         continue;
1467       if ( noCompatible ) { // the selected algo has no compatible ones
1468         anAvailable.clear();
1469         myDlg->tab( dim )->setAvailableHyps( Algo, anAvailable );
1470         myAvailableHypData[dim][Algo].clear();
1471         algoByDim[ dim ] = 0;
1472         continue;
1473       }
1474       // get currently selected algo
1475       int algoIndex = currentHyp( dim, Algo );
1476       HypothesisData* curAlgo = hypData( dim, Algo, algoIndex );
1477       if ( curAlgo ) { // some algo selected
1478         if ( !isCompatible( prevAlgo, curAlgo, Algo ))
1479           curAlgo = 0;
1480       }
1481       // set new available algoritms
1482       if (myDlg->currentMeshType() == MT_ANY || dim == SMESH::DIM_1D || dim == SMESH::DIM_0D)
1483         availableHyps( dim, Algo, anAvailable, myAvailableHypData[dim][Algo], prevAlgo );
1484       else{
1485         anAvailable.clear();
1486         myAvailableHypData[dim][Algo].clear();
1487         for (int i = 0; i < myFilteredAlgoData[dim].count(); ++i) {
1488           HypothesisData* aCurAlgo = myFilteredAlgoData[dim][ i ];
1489           if ( isCompatible ( prevAlgo, aCurAlgo, Algo )) {
1490             anAvailable.append( aCurAlgo->Label );
1491             myAvailableHypData[dim][Algo].append( aCurAlgo );
1492           }
1493         }
1494       }
1495       HypothesisData* soleCompatible = 0;
1496       if ( anAvailable.count() == 1 )
1497         soleCompatible = myAvailableHypData[dim][Algo][0];
1498       if ( dim == aTopDim && prevAlgo ) {// all available algoritms should be selectable any way
1499         if (aTopDim == SMESH::DIM_2D) {
1500           anAvailable.clear();
1501           for (int i = 0; i < myFilteredAlgoData[dim].count(); ++i) {
1502             HypothesisData* aCurAlgo = myFilteredAlgoData[dim][ i ];
1503             anAvailable.append( aCurAlgo->Label );
1504           }
1505         }
1506         if (aTopDim == SMESH::DIM_3D)
1507           availableHyps( dim, Algo, anAvailable, myAvailableHypData[dim][Algo], 0 );
1508       }
1509       myDlg->tab( dim )->setAvailableHyps( Algo, anAvailable );
1510       noCompatible = anAvailable.isEmpty();
1511
1512       // restore previously selected algo
1513       if (dim == aTopDim && prevAlgo && aTopDim == SMESH::DIM_2D)
1514         algoIndex = myFilteredAlgoData[dim].indexOf( curAlgo );
1515       else
1516         algoIndex = myAvailableHypData[dim][Algo].indexOf( curAlgo );
1517       if ( !isSubmesh && algoIndex < 0 && soleCompatible && !forward && dim != SMESH::DIM_0D)
1518         // select the sole compatible algo
1519         algoIndex = myAvailableHypData[dim][Algo].indexOf( soleCompatible );
1520       setCurrentHyp( dim, Algo, algoIndex);
1521
1522       // remember current algo
1523       prevAlgo = algoByDim[ dim ] = hypData( dim, Algo, algoIndex );
1524     }
1525   }
1526
1527   // set hypotheses corresponding to the found algoritms
1528
1529   _PTR(SObject) pObj = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
1530
1531   for ( int dim = SMESH::DIM_0D; dim <= SMESH::DIM_3D; dim++ )
1532   {
1533     if ( !isAccessibleDim( dim ))
1534       continue;
1535
1536     // get indices of selected hyps
1537     const int nbTypes = nbDlgHypTypes(dim);
1538     std::vector<int> hypIndexByType( nbTypes, -1 );
1539     for ( int dlgType = MainHyp; dlgType < nbTypes; dlgType++ )
1540     {
1541       hypIndexByType[ dlgType ] = currentHyp( dim, dlgType );
1542     }
1543
1544     // update hyps
1545     for ( int dlgType = MainHyp; dlgType < nbTypes; dlgType++ )
1546     {
1547       const int type = Min( dlgType, AddHyp );
1548       myAvailableHypData[ dim ][ type ].clear();
1549       QStringList anAvailable, anExisting;
1550
1551       HypothesisData* curAlgo = algoByDim[ dim ];
1552       int hypIndex = hypIndexByType[ dlgType ];
1553
1554       SMESH::SMESH_Hypothesis_var curHyp;
1555       if ( hypIndex >= 0 && hypIndex < myExistingHyps[ dim ][ type ].count() )
1556         curHyp = myExistingHyps[ dim ][ type ][ hypIndex ].first;
1557
1558       if ( !myToCreate && !curAlgo && !curHyp->_is_nil() ) { // edition, algo not selected
1559         // try to find algo by selected hypothesis in order to keep it selected
1560         bool algoDeselectedByUser = ( theDim < 0 && aDim == dim );
1561         QString curHypType = SMESH::toQStr( curHyp->GetName() );
1562         if ( !algoDeselectedByUser &&
1563              myObjHyps[ dim ][ type ].count() > 0 &&
1564              curHypType == SMESH::toQStr( myObjHyps[ dim ][ type ].first().first->GetName()) )
1565         {
1566           HypothesisData* hypData = SMESH::GetHypothesisData( curHyp->GetName() );
1567           for (int i = 0; i < myAvailableHypData[ dim ][ Algo ].count(); ++i) {
1568             curAlgo = myAvailableHypData[ dim ][ Algo ][ i ];
1569             if (curAlgo && hypData && isCompatible(curAlgo, hypData, type))
1570               break;
1571             else
1572               curAlgo = 0;
1573           }
1574         }
1575       }
1576       // get hyps compatible with curAlgo
1577       bool defaulHypAvlbl = false;
1578       if ( curAlgo )
1579       {
1580         // check if a selected hyp is compatible with the curAlgo
1581         if ( !curHyp->_is_nil() ) {
1582           HypothesisData* hypData = SMESH::GetHypothesisData( curHyp->GetName() );
1583           if ( !isCompatible( curAlgo, hypData, type ))
1584             curHyp = SMESH::SMESH_Hypothesis::_nil();
1585         }
1586         availableHyps( dim, type, anAvailable, myAvailableHypData[ dim ][ type ], curAlgo);
1587         existingHyps( dim, type, pObj, anExisting, myExistingHyps[ dim ][ type ], curAlgo);
1588         defaulHypAvlbl = (type == MainHyp && !curAlgo->IsAuxOrNeedHyp );
1589       }
1590       // set list of hypotheses
1591       if ( dlgType <= AddHyp )
1592       {
1593         myDlg->tab( dim )->setAvailableHyps( type, anAvailable );
1594         myDlg->tab( dim )->setExistingHyps( type, anExisting, defaulHypAvlbl );
1595       }
1596       // set current existing hypothesis
1597       if ( !curHyp->_is_nil() && !anExisting.isEmpty() )
1598         hypIndex = this->find( curHyp, myExistingHyps[ dim ][ type ]);
1599       else
1600         hypIndex = -1;
1601       if ( !isSubmesh && myToCreate && hypIndex < 0 && anExisting.count() == 1 ) {
1602         // none is yet selected => select the sole existing if it is not optional
1603         CORBA::String_var hypTypeName = myExistingHyps[ dim ][ type ].first().first->GetName();
1604         bool isOptional = true;
1605         if ( algoByDim[ dim ] &&
1606              SMESH::IsAvailableHypothesis( algoByDim[ dim ], hypTypeName.in(), isOptional ) &&
1607              !isOptional )
1608           hypIndex = 0;
1609       }
1610       setCurrentHyp( dim, dlgType, hypIndex );
1611     }
1612   }
1613 }
1614
1615 //================================================================================
1616 /*!
1617  * \brief Creates and selects hypothesis of hypotheses set
1618  * \param theSetName - The name of hypotheses set
1619  */
1620 //================================================================================
1621 void SMESHGUI_MeshOp::onHypoSet( const QString& theSetName )
1622 {
1623   myHypoSet = SMESH::GetHypothesesSet(theSetName);
1624   if (!myHypoSet)
1625     return;
1626
1627   // clear all hyps
1628   for (int dim = SMESH::DIM_0D; dim <= SMESH::DIM_3D; dim++) {
1629     setCurrentHyp(dim, Algo, -1);
1630     setCurrentHyp(dim, AddHyp, -1);
1631     setCurrentHyp(dim, MainHyp, -1);
1632   }
1633
1634   myHypoSet->init(true); //algorithms
1635   processSet();
1636   myHypoSet->init(false); //hypotheses
1637   processSet();
1638   myHypoSet = 0;
1639 }
1640
1641 //================================================================================
1642 /*!
1643  * \brief One step of hypothesis/algorithm list creation
1644  *
1645  * Creates a hypothesis or an algorithm for current item of internal list of names myHypoSet
1646  */
1647 //================================================================================
1648 void SMESHGUI_MeshOp::processSet()
1649 {
1650   myHypoSet->next();
1651   if( !myHypoSet->more() )
1652     return;
1653
1654   bool isAlgo = myHypoSet->isAlgo();
1655   QString aHypoTypeName = myHypoSet->current();
1656   HypothesisData* aHypData = SMESH::GetHypothesisData(aHypoTypeName);
1657   if (!aHypData)
1658   {
1659     processSet();
1660     return;
1661   }
1662
1663   int aDim = aHypData->Dim[0];
1664   // create or/and set
1665   if (isAlgo)
1666   {
1667     int index = myAvailableHypData[aDim][Algo].indexOf( aHypData );
1668     if ( index < 0 )
1669     {
1670       QStringList anAvailable;
1671       availableHyps( aDim, Algo, anAvailable, myAvailableHypData[aDim][Algo] );
1672       myDlg->tab( aDim )->setAvailableHyps( Algo, anAvailable );
1673       index = myAvailableHypData[aDim][Algo].indexOf( aHypData );
1674     }
1675     setCurrentHyp( aDim, Algo, index );
1676     onAlgoSelected( index, aDim );
1677     processSet();
1678   }
1679   else
1680   {
1681     bool mainHyp = true;
1682     QStringList anAvailable;
1683     availableHyps( aDim, MainHyp, anAvailable, myAvailableHypData[aDim][MainHyp] );
1684     myDlg->tab( aDim )->setAvailableHyps( MainHyp, anAvailable );
1685     int index = myAvailableHypData[aDim][MainHyp].indexOf( aHypData );
1686     if ( index < 0 )
1687     {
1688       mainHyp = false;
1689       index = myAvailableHypData[aDim][AddHyp].indexOf( aHypData );
1690     }
1691     if (index >= 0)
1692       createHypothesis(aDim, mainHyp ? MainHyp : AddHyp, aHypoTypeName);
1693     else
1694       processSet();
1695   }
1696 }
1697
1698 //================================================================================
1699 /*!
1700  * \brief Creates mesh
1701   * \param theMess - Output parameter intended for returning error message
1702   * \param theEntryList - List of entries of published objects
1703   * \retval bool  - TRUE if mesh is created, FALSE otherwise
1704  *
1705  * Creates mesh
1706  */
1707 //================================================================================
1708 bool SMESHGUI_MeshOp::createMesh( QString& theMess, QStringList& theEntryList )
1709 {
1710   theMess = "";
1711
1712   QStringList aList;
1713   myDlg->selectedObject( SMESHGUI_MeshDlg::Geom, aList );
1714   if ( aList.isEmpty() )
1715   {
1716     SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1717     if ( aSMESHGen->_is_nil() )
1718       return false;
1719
1720     SMESH::SMESH_Mesh_var aMeshVar= aSMESHGen->CreateEmptyMesh();
1721     if ( aMeshVar->_is_nil() )
1722       return false;
1723
1724     _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar.in() );
1725     if ( aMeshSO ) {
1726       SMESH::SetName( aMeshSO, myDlg->objectText( SMESHGUI_MeshDlg::Obj ) );
1727       theEntryList.append( aMeshSO->GetID().c_str() );
1728     }
1729     return true;
1730   }
1731   QString namePrefix;
1732   if ( aList.count() > 1 )
1733   {
1734     namePrefix = myDlg->objectText( SMESHGUI_MeshDlg::Obj );
1735     int i = namePrefix.length() - 1;
1736     while ( i > 0 && namePrefix[i].isDigit() )
1737       --i;
1738     if ( i < namePrefix.length() - 1 )
1739       namePrefix.chop( namePrefix.length() - 1 - i );
1740     else
1741       namePrefix += "_";
1742   }
1743   QStringList::Iterator it = aList.begin();
1744   for ( int i = 0; it!=aList.end(); it++, ++i )
1745   {
1746     QString aGeomEntry = *it;
1747     _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
1748     GEOM::GEOM_Object_var aGeomVar =
1749       GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1750
1751     SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1752     if ( aSMESHGen->_is_nil() )
1753       return false;
1754
1755     SUIT_OverrideCursor aWaitCursor;
1756
1757     // create mesh
1758     SMESH::SMESH_Mesh_var aMeshVar = aSMESHGen->CreateMesh( aGeomVar );
1759     if ( aMeshVar->_is_nil() )
1760       return false;
1761     _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar.in() );
1762     if ( aMeshSO ) {
1763       theEntryList.append( aMeshSO->GetID().c_str() );
1764       if ( i > 0 ) setDefaultName( namePrefix );
1765       SMESH::SetName( aMeshSO, myDlg->objectText( SMESHGUI_MeshDlg::Obj ) );
1766     }
1767
1768     for ( int aDim = SMESH::DIM_0D; aDim <= SMESH::DIM_3D; aDim++ )
1769     {
1770       if ( !isAccessibleDim( aDim )) continue;
1771
1772       // assign hypotheses
1773       for ( int dlgType = MainHyp; dlgType < nbDlgHypTypes(aDim); dlgType++ )
1774       {
1775         const int aHypIndex = currentHyp( aDim, dlgType );
1776         const int  aHypType = Min( dlgType, AddHyp );
1777         if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() )
1778         {
1779           SMESH::SMESH_Hypothesis_var aHypVar =
1780             myExistingHyps[ aDim ][ aHypType ][ aHypIndex ].first;
1781           if ( !aHypVar->_is_nil() )
1782             SMESH::AddHypothesisOnMesh( aMeshVar, aHypVar );
1783         }
1784       }
1785       // find or create algorithm
1786       SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
1787       if ( !anAlgoVar->_is_nil() )
1788         SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
1789     }
1790   }
1791   return true;
1792 }
1793
1794 //================================================================================
1795 /*!
1796  * \brief Creates sub-mesh
1797   * \param theMess - Output parameter intended for returning error message
1798   * \param theEntryList - List of entries of published objects
1799   * \retval bool  - TRUE if sub-mesh is created, FALSE otherwise
1800  *
1801  * Creates sub-mesh
1802  */
1803 //================================================================================
1804 bool SMESHGUI_MeshOp::createSubMesh( QString& theMess, QStringList& theEntryList )
1805 {
1806   theMess = "";
1807
1808   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1809   if ( aSMESHGen->_is_nil() )
1810     return false;
1811
1812   // get mesh object
1813   QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
1814   _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
1815   SMESH::SMESH_Mesh_var aMeshVar =
1816     SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
1817   if (aMeshVar->_is_nil())
1818     return false;
1819
1820   // GEOM shape of the main mesh
1821   GEOM::GEOM_Object_var mainGeom = aMeshVar->GetShapeToMesh();
1822
1823   // Name for the new sub-mesh
1824   QString aName = myDlg->objectText(SMESHGUI_MeshDlg::Obj);
1825
1826   // get geom object
1827   GEOM::GEOM_Object_var aGeomVar;
1828   QStringList aGEOMs;
1829   myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs);
1830   if (aGEOMs.count() == 1)
1831   {
1832     //QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1833     QString aGeomEntry = aGEOMs.first();
1834     _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
1835     aGeomVar = GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1836   }
1837   else if (aGEOMs.count() > 1)
1838   {
1839     // create a GEOM group
1840     GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
1841     _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
1842     if (!geomGen->_is_nil() && aStudy) {
1843       GEOM::GEOM_IGroupOperations_wrap op =
1844         geomGen->GetIGroupOperations(aStudy->StudyId());
1845       if (!op->_is_nil()) {
1846         // check and add all selected GEOM objects: they must be
1847         // a sub-shapes of the main GEOM and must be of one type
1848         int iSubSh = 0;
1849         TopAbs_ShapeEnum aGroupType = TopAbs_SHAPE;
1850         GEOM::ListOfGO_var aSeq = new GEOM::ListOfGO;
1851         aSeq->length(aGEOMs.count());
1852         QStringList::const_iterator aSubShapesIter = aGEOMs.begin();
1853         for ( ; aSubShapesIter != aGEOMs.end(); aSubShapesIter++, iSubSh++) {
1854           QString aSubGeomEntry = (*aSubShapesIter);
1855           _PTR(SObject) pSubGeom = studyDS()->FindObjectID(aSubGeomEntry.toLatin1().data());
1856           GEOM::GEOM_Object_var aSubGeomVar =
1857             GEOM::GEOM_Object::_narrow(_CAST(SObject,pSubGeom)->GetObject());
1858           TopAbs_ShapeEnum aSubShapeType = (TopAbs_ShapeEnum)aSubGeomVar->GetShapeType();
1859           if (iSubSh == 0) {
1860             aGroupType = aSubShapeType;
1861           } else {
1862             if (aSubShapeType != aGroupType)
1863               aGroupType = TopAbs_SHAPE;
1864           }
1865           aSeq[iSubSh] = aSubGeomVar;
1866         }
1867         // create a group
1868         GEOM::GEOM_Object_wrap aGroupVar = op->CreateGroup(mainGeom, aGroupType);
1869         op->UnionList(aGroupVar, aSeq);
1870
1871         if (op->IsDone())
1872         {
1873           aGeomVar = GEOM::GEOM_Object::_duplicate( aGroupVar.in() );
1874
1875           // publish the GEOM group in study
1876           QString aNewGeomGroupName ("Auto_group_for_");
1877           aNewGeomGroupName += aName;
1878           SALOMEDS::Study_var aStudyVar = _CAST(Study, aStudy)->GetStudy();
1879           SALOMEDS::SObject_wrap aNewGroupSO =
1880             geomGen->AddInStudy( aStudyVar, aGeomVar,
1881                                  aNewGeomGroupName.toLatin1().data(), mainGeom);
1882         }
1883       }
1884     }
1885   }
1886   else {
1887   }
1888   if (aGeomVar->_is_nil())
1889     return false;
1890
1891   SUIT_OverrideCursor aWaitCursor;
1892
1893   // create sub-mesh
1894   SMESH::SMESH_subMesh_var aSubMeshVar = aMeshVar->GetSubMesh( aGeomVar, aName.toLatin1().data() );
1895   _PTR(SObject) aSubMeshSO = SMESH::FindSObject( aSubMeshVar.in() );
1896   if ( aSubMeshSO ) {
1897     SMESH::SetName( aSubMeshSO, aName.toLatin1().data() );
1898     theEntryList.append( aSubMeshSO->GetID().c_str() );
1899   }
1900
1901   for ( int aDim = SMESH::DIM_0D; aDim <= SMESH::DIM_3D; aDim++ )
1902   {
1903     if ( !isAccessibleDim( aDim )) continue;
1904
1905     // find or create algorithm
1906     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
1907     if ( !anAlgoVar->_is_nil() )
1908       SMESH::AddHypothesisOnSubMesh( aSubMeshVar, anAlgoVar );
1909     // assign hypotheses
1910     for ( int dlgType = MainHyp; dlgType < nbDlgHypTypes(aDim); dlgType++ )
1911     {
1912       const int aHypIndex = currentHyp( aDim, dlgType );
1913       const int  aHypType = Min( dlgType, AddHyp );
1914       if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() )
1915       {
1916         SMESH::SMESH_Hypothesis_var aHypVar =
1917           myExistingHyps[ aDim ][ aHypType ][ aHypIndex ].first;
1918         if ( !aHypVar->_is_nil() )
1919           SMESH::AddHypothesisOnSubMesh( aSubMeshVar, aHypVar );
1920       }
1921     }
1922   }
1923
1924   // deselect geometry: next submesh should be created on other sub-shape
1925   myDlg->clearSelection( SMESHGUI_MeshDlg::Geom );
1926   selectObject( _PTR(SObject)() );
1927   selectionDone();
1928
1929   checkSubMeshConcurrency( aMeshVar, aSubMeshVar, /*askUser=*/true );
1930
1931   return true;
1932 }
1933
1934 //================================================================================
1935 /*!
1936  * \brief Gets current hypothesis or algorithms
1937   * \param theDim - dimension of hypothesis or algorithm
1938   * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
1939   * \retval int - current hypothesis or algorithms
1940  *
1941  * Gets current hypothesis or algorithms
1942  */
1943 //================================================================================
1944 int SMESHGUI_MeshOp::currentHyp( const int theDim, const int theHypType ) const
1945 {
1946   return myDlg->tab( theDim )->currentHyp( theHypType ) - 1;
1947 }
1948
1949 //================================================================================
1950 /*!
1951  * \brief Checks if a hypothesis is selected
1952  */
1953 //================================================================================
1954
1955 bool SMESHGUI_MeshOp::isSelectedHyp( int theDim, int theHypType, int theIndex) const
1956 {
1957   if ( theHypType < AddHyp ) // only one hyp can be selected
1958     return currentHyp( theDim, theHypType ) == theIndex;
1959
1960   for ( int dlgHypType = AddHyp; dlgHypType < nbDlgHypTypes( theDim ); ++dlgHypType )
1961     if ( currentHyp( theDim, dlgHypType ) == theIndex )
1962       return true;
1963
1964   return false;
1965 }
1966
1967 //================================================================================
1968 /*!
1969  * \brief Returns nb of HypType's taking into account possible several
1970  *        selected additional hypotheses which are coded as additional HypType's.
1971  */
1972 //================================================================================
1973
1974 int SMESHGUI_MeshOp::nbDlgHypTypes( const int dim ) const
1975 {
1976   return NbHypTypes + myDlg->tab( dim )->nbAddHypTypes();
1977 }
1978
1979 //================================================================================
1980 /*!
1981  * \brief Returns true if hypotheses of given dim can be assigned
1982   * \param theDim - hypotheses dimension
1983   * \retval bool - result
1984  */
1985 //================================================================================
1986 bool SMESHGUI_MeshOp::isAccessibleDim( const int theDim ) const
1987 {
1988   return myDlg->isTabEnabled( theDim );
1989 }
1990
1991 //================================================================================
1992 /*!
1993  * \brief Sets current hypothesis or algorithms
1994   * \param theDim - dimension of hypothesis or algorithm
1995   * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
1996   * \param theIndex - Index of hypothesis
1997  *
1998  * Gets current hypothesis or algorithms
1999  */
2000 //================================================================================
2001 void SMESHGUI_MeshOp::setCurrentHyp( const int theDim,
2002                                      const int theHypType,
2003                                      const int theIndex )
2004 {
2005   myIgnoreAlgoSelection = true;
2006   myDlg->tab( theDim )->setCurrentHyp( theHypType, theIndex + 1 );
2007   myIgnoreAlgoSelection = false;
2008 }
2009
2010 //================================================================================
2011 /*!
2012  * \brief Generates default and sets mesh/submesh name
2013  *
2014  * Generates and sets default mesh/submesh name(Mesh_1, Mesh_2, etc.)
2015  */
2016 //================================================================================
2017 void SMESHGUI_MeshOp::setDefaultName( const QString& thePrefix ) const
2018 {
2019   QString aResName;
2020
2021   _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
2022   int i = 1;
2023
2024   QString aPrefix = thePrefix;
2025   if ( aPrefix.isEmpty() )
2026     aPrefix = tr( myIsMesh ? "SMESH_OBJECT_MESH" : "SMESH_SUBMESH" ) + "_";
2027
2028   _PTR(SObject) anObj;
2029   do
2030   {
2031     aResName = aPrefix + QString::number( i++ );
2032     anObj = aStudy->FindObject( aResName.toLatin1().data() );
2033   }
2034   while ( anObj );
2035
2036   QLineEdit* aControl = ( QLineEdit* )myDlg->objectWg(
2037     SMESHGUI_MeshDlg::Obj, SMESHGUI_MeshDlg::Control );
2038   aControl->setText( aResName );
2039 }
2040
2041 //================================================================================
2042 /*!
2043  * \brief Gets algorithm or creates it if necessary
2044   * \param theDim - specifies dimension of returned hypotheses/algorifms
2045   * \retval SMESH::SMESH_Hypothesis_var - algorithm
2046  *
2047  * Gets algorithm or creates it if necessary
2048  */
2049 //================================================================================
2050 SMESH::SMESH_Hypothesis_var SMESHGUI_MeshOp::getAlgo( const int theDim )
2051 {
2052   SMESH::SMESH_Hypothesis_var anAlgoVar;
2053
2054   // get type of the selected algo
2055   int aHypIndex = currentHyp( theDim, Algo );
2056   THypDataList& dataList = myAvailableHypData[ theDim ][ Algo ];
2057   if ( aHypIndex < 0 || aHypIndex >= dataList.count())
2058     return anAlgoVar;
2059   QString aHypName = dataList[ aHypIndex ]->TypeName;
2060
2061   // get existing algoritms
2062   _PTR(SObject) pObj = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
2063   QStringList tmp;
2064   existingHyps( theDim, Algo, pObj, tmp, myExistingHyps[ theDim ][ Algo ]);
2065
2066   // look for an existing algo of such a type
2067   THypList& aHypVarList = myExistingHyps[ theDim ][ Algo ];
2068   THypList::iterator anIter = aHypVarList.begin();
2069   for ( ; anIter != aHypVarList.end(); anIter++)
2070   {
2071     SMESH::SMESH_Hypothesis_var aHypVar = (*anIter).first;
2072     if ( !aHypVar->_is_nil() && aHypName == SMESH::toQStr( aHypVar->GetName() ))
2073     {
2074       anAlgoVar = aHypVar;
2075       break;
2076     }
2077   }
2078
2079   if (anAlgoVar->_is_nil())
2080   {
2081     HypothesisData* aHypData = SMESH::GetHypothesisData( aHypName );
2082     if (aHypData)
2083     {
2084       QString aClientLibName = aHypData->ClientLibName;
2085       if ( aClientLibName.isEmpty() )
2086       {
2087         // Call hypothesis creation server method (without GUI)
2088         SMESH::SMESH_Hypothesis_var aHyp =
2089           SMESH::CreateHypothesis(aHypName, aHypName, true);
2090         aHyp.out();
2091       }
2092       else
2093       {
2094         // Get hypotheses creator client (GUI)
2095         SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(aHypName);
2096
2097         // Create algorithm
2098         if (aCreator)
2099           aCreator->create( true, aHypName, myDlg, 0, QString::null );
2100         else {
2101           SMESH::SMESH_Hypothesis_var aHyp =
2102             SMESH::CreateHypothesis(aHypName, aHypName, true);
2103           aHyp.out();
2104         }
2105       }
2106       QStringList tmpList;
2107       _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
2108       existingHyps( theDim, Algo, aFather, tmpList, myExistingHyps[ theDim ][ Algo ] );
2109     }
2110
2111     THypList& aNewHypVarList = myExistingHyps[ theDim ][ Algo ];
2112     for ( anIter = aNewHypVarList.begin(); anIter != aNewHypVarList.end(); ++anIter )
2113     {
2114       SMESH::SMESH_Hypothesis_var aHypVar = (*anIter).first;
2115       if ( !aHypVar->_is_nil() && aHypName == SMESH::toQStr( aHypVar->GetName() ))
2116       {
2117         anAlgoVar = aHypVar;
2118         break;
2119       }
2120     }
2121   }
2122
2123   return anAlgoVar._retn();
2124 }
2125
2126 //================================================================================
2127 /*!
2128  * \brief Reads parameters of an edited mesh/sub-mesh and assigns them to the dialog
2129  *
2130  * Called when mesh is edited only.
2131  */
2132 //================================================================================
2133 void SMESHGUI_MeshOp::readMesh()
2134 {
2135   QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
2136   _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
2137   if ( !pObj )
2138     return;
2139
2140   if (myIsOnGeometry) {
2141     // Get name of mesh if current object is sub-mesh
2142     SMESH::SMESH_subMesh_var aSubMeshVar =
2143       SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
2144     if ( !aSubMeshVar->_is_nil() )
2145     {
2146       SMESH::SMESH_Mesh_var aMeshVar =  aSubMeshVar->GetFather();
2147       if ( !aMeshVar->_is_nil() )
2148       {
2149         _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar );
2150         QString aMeshName = name( aMeshSO );
2151         myDlg->setObjectText( SMESHGUI_MeshDlg::Mesh, aMeshName );
2152       }
2153       myHasConcurrentSubBefore = checkSubMeshConcurrency( aMeshVar, aSubMeshVar );
2154     }
2155
2156     // Get name of geometry object
2157     CORBA::String_var name = SMESH::GetGeomName( pObj );
2158     if ( name.in() )
2159       myDlg->setObjectText( SMESHGUI_MeshDlg::Geom, name.in() );
2160   }
2161
2162   // Get hypotheses and algorithms assigned to the mesh/sub-mesh
2163   QStringList anExisting;
2164   const int lastDim = ( myIsOnGeometry ) ? SMESH::DIM_0D : SMESH::DIM_3D;
2165   bool algoFound = false;
2166   for ( int dim = SMESH::DIM_3D; dim >= lastDim; --dim )
2167   {
2168     // get algorithm
2169     existingHyps( dim, Algo, pObj, anExisting, myObjHyps[ dim ][ Algo ] );
2170     // find algo index among available ones
2171     int aHypIndex = -1;
2172     if ( myObjHyps[ dim ][ Algo ].count() > 0 )
2173     {
2174       SMESH::SMESH_Hypothesis_var aVar = myObjHyps[ dim ][ Algo ].first().first;
2175       HypothesisData* algoData = SMESH::GetHypothesisData( aVar->GetName() );
2176       aHypIndex = myAvailableHypData[ dim ][ Algo ].indexOf ( algoData );
2177       //       if ( aHypIndex < 0 && algoData ) {
2178       //         // assigned algo is incompatible with other algorithms
2179       //         myAvailableHypData[ dim ][ Algo ].push_back( algoData );
2180       //         aHypIndex = myAvailableHypData[ dim ][ hypType ].count() - 1;
2181       //       }
2182       algoFound = ( aHypIndex > -1 );
2183     }
2184     setCurrentHyp( dim, Algo, aHypIndex );
2185     // set existing and available hypothesis according to the selected algo
2186     if ( aHypIndex > -1 || !algoFound )
2187       onAlgoSelected( aHypIndex, dim );
2188   }
2189
2190   // get hypotheses
2191   bool hypWithoutAlgo = false;
2192   for ( int dim = SMESH::DIM_3D; dim >= lastDim; --dim )
2193   {
2194     for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
2195     {
2196       // get hypotheses
2197       existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
2198       for ( int i = 0, nb = myObjHyps[ dim ][ hypType ].count(); i < nb; ++i )
2199       {
2200         // find index of required hypothesis among existing ones for this dimension and type
2201         int aHypIndex = find( myObjHyps[ dim ][ hypType ][ i ].first,
2202                               myExistingHyps[ dim ][ hypType ] );
2203         if ( aHypIndex < 0 ) {
2204           // assigned hypothesis is incompatible with the algorithm
2205           if ( currentHyp( dim, Algo ) < 0 )
2206           { // none algo selected; it is edition for sure, of submesh maybe
2207             hypWithoutAlgo = true;
2208             myExistingHyps[ dim ][ hypType ].push_back( myObjHyps[ dim ][ hypType ][ i ] );
2209             anExisting.push_back( myObjHyps[ dim ][ hypType ][ i ].second );
2210             aHypIndex = myExistingHyps[ dim ][ hypType ].count() - 1;
2211             myDlg->tab( dim )->setExistingHyps( hypType, anExisting );
2212           }
2213         }
2214         setCurrentHyp( dim, hypType + i, aHypIndex );
2215
2216         if ( hypType == MainHyp ) break; // only one main hyp allowed
2217       }
2218     }
2219   }
2220   // make available other hyps of same type as one without algo
2221   if ( hypWithoutAlgo )
2222     onAlgoSelected( currentHyp( 0, Algo ), 0 );
2223 }
2224
2225 //================================================================================
2226 /*!
2227  * \brief Gets name of object
2228  * \param theSO - SObject
2229  * \retval QString - name of object
2230  *
2231  * Gets name of object
2232  */
2233 //================================================================================
2234 QString SMESHGUI_MeshOp::name( _PTR(SObject) theSO ) const
2235 {
2236   QString aResName;
2237   if ( theSO )
2238   {
2239     _PTR(GenericAttribute) anAttr;
2240     _PTR(AttributeName)    aNameAttr;
2241     if ( theSO->FindAttribute( anAttr, "AttributeName" ) )
2242     {
2243       aNameAttr = anAttr;
2244       aResName = aNameAttr->Value().c_str();
2245     }
2246   }
2247   return aResName;
2248 }
2249
2250 //================================================================================
2251 /*!
2252  * \brief Finds hypothesis in input list
2253   * \param theHyp - hypothesis to be found
2254   * \param theHypList - input list of hypotheses
2255   * \retval int - index of hypothesis or -1 if it is not found
2256  *
2257  * Finds position of hypothesis in input list
2258  */
2259 //================================================================================
2260 int SMESHGUI_MeshOp::find( const SMESH::SMESH_Hypothesis_var& theHyp,
2261                            const THypList& theHypList ) const
2262 {
2263   int aRes = -1;
2264   if ( !theHyp->_is_nil() )
2265   {
2266     int i = 0;
2267     THypList::const_iterator anIter = theHypList.begin();
2268     for ( ; anIter != theHypList.end(); ++ anIter)
2269     {
2270       if ( theHyp->_is_equivalent( (*anIter).first ) )
2271       {
2272         aRes = i;
2273         break;
2274       }
2275       i++;
2276     }
2277   }
2278   return aRes;
2279 }
2280
2281 //================================================================================
2282 /*!
2283  * \brief Edits mesh or sub-mesh
2284   * \param theMess - Output parameter intended for returning error message
2285   * \retval bool  - TRUE if mesh is edited succesfully, FALSE otherwise
2286  *
2287  * Assigns new name hypotheses and algoriths to the mesh or sub-mesh
2288  */
2289 //================================================================================
2290 bool SMESHGUI_MeshOp::editMeshOrSubMesh( QString& theMess )
2291 {
2292   theMess = "";
2293
2294   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
2295   if ( aSMESHGen->_is_nil() )
2296     return false;
2297
2298   QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
2299   _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
2300   if ( !pObj )
2301     return false;
2302
2303   SUIT_OverrideCursor aWaitCursor;
2304
2305   // Set new name
2306   QString aName = myDlg->objectText( SMESHGUI_MeshDlg::Obj );
2307   SMESH::SetName( pObj, aName );
2308   int aDim = ( myIsOnGeometry ) ? SMESH::DIM_0D : SMESH::DIM_3D;
2309
2310   // First, remove old algos in order to avoid messages on algorithm hiding
2311   for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
2312   {
2313     if ( isAccessibleDim( dim ) && myObjHyps[ dim ][ Algo ].count() > 0 )
2314     {
2315       SMESH::SMESH_Hypothesis_var anOldAlgo = myObjHyps[ dim ][ Algo ].first().first;
2316       SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( dim );
2317       if ( anAlgoVar->_is_nil() || // no new algo selected or
2318            strcmp(anOldAlgo->GetName(), anAlgoVar->GetName()) ) // algo change
2319       {
2320         // remove old algorithm
2321         SMESH::RemoveHypothesisOrAlgorithmOnMesh ( pObj, myObjHyps[ dim ][ Algo ].first().first );
2322         myObjHyps[ dim ][ Algo ].clear();
2323       }
2324     }
2325   }
2326
2327   SALOMEDS_SObject* aSObject = _CAST(SObject, pObj);
2328   CORBA::Object_var anObject = aSObject->GetObject();
2329   SMESH::SMESH_Mesh_var       aMeshVar = SMESH::SMESH_Mesh::_narrow( anObject );
2330   SMESH::SMESH_subMesh_var aSubMeshVar = SMESH::SMESH_subMesh::_narrow( anObject );
2331   bool isMesh = !aMeshVar->_is_nil();
2332   if ( !isMesh && !aSubMeshVar->_is_nil() )
2333     aMeshVar = aSubMeshVar->GetFather();
2334
2335   // Assign new algorithms and hypotheses
2336   for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
2337   {
2338     if ( !isAccessibleDim( dim )) continue;
2339
2340     // find or create algorithm
2341     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( dim );
2342
2343     // assign new algorithm
2344     if ( !anAlgoVar->_is_nil() && // some algo selected and
2345          myObjHyps[ dim ][ Algo ].count() == 0 ) // no algo assigned
2346     {
2347       if ( isMesh )
2348         SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
2349       else if ( !aSubMeshVar->_is_nil() )
2350         SMESH::AddHypothesisOnSubMesh( aSubMeshVar, anAlgoVar );
2351
2352       myObjHyps[ dim ][ Algo ].append( THypItem( anAlgoVar, aName) );
2353     }
2354
2355     // remove deselected hypotheses
2356     for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
2357     {
2358       for ( int i = 0, nb = myObjHyps[ dim ][ hypType ].count(); i < nb; ++i )
2359       {
2360         SMESH::SMESH_Hypothesis_var hyp = myObjHyps[ dim ][ hypType ][ i ].first;
2361         int hypIndex = this->find( hyp, myExistingHyps[ dim ][ hypType ]);
2362         if ( !isSelectedHyp( dim, hypType, hypIndex ) && !hyp->_is_nil() )
2363         {
2364           SMESH::RemoveHypothesisOrAlgorithmOnMesh( pObj, hyp );
2365         }
2366       }
2367     }
2368     // assign newly selected hypotheses
2369     for ( int dlgType = MainHyp; dlgType < nbDlgHypTypes(dim); dlgType++ )
2370     {
2371       const int curIndex = currentHyp( dim, dlgType );
2372       const int  hypType = Min( dlgType, AddHyp );
2373       if ( curIndex >= 0 && curIndex < myExistingHyps[ dim ][ hypType ].count() )
2374       {
2375         SMESH::SMESH_Hypothesis_var hyp = myExistingHyps[ dim ][ hypType ][ curIndex ].first;
2376
2377         bool isAssigned = ( this->find( hyp, myObjHyps[ dim ][ hypType ]) >= 0 );
2378         if ( !isAssigned )
2379         {
2380           if ( isMesh )
2381             SMESH::AddHypothesisOnMesh (aMeshVar, hyp );
2382           else if ( !aSubMeshVar->_is_nil() )
2383             SMESH::AddHypothesisOnSubMesh ( aSubMeshVar, hyp );
2384         }
2385       }
2386       // reread all hypotheses of mesh
2387       QStringList anExisting;
2388       existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
2389     }
2390   }
2391
2392   myHasConcurrentSubBefore =
2393     checkSubMeshConcurrency( aMeshVar, aSubMeshVar, /*askUser=*/!myHasConcurrentSubBefore );
2394
2395   return true;
2396 }
2397
2398 //================================================================================
2399 /*!
2400  * \brief Checks if a concurrent sub-meshes appear as result of sub-mesh
2401  *        creation/edition and, if (askUser) , proposes the uses to set up a desired
2402  *        order of sub-mesh computation.
2403  *        Returns \c true if a sub-mesh concurrency detected.
2404  */
2405 //================================================================================
2406
2407 bool SMESHGUI_MeshOp::checkSubMeshConcurrency(SMESH::SMESH_Mesh_ptr    mesh,
2408                                               SMESH::SMESH_subMesh_ptr submesh,
2409                                               bool                     askUser)
2410 {
2411   if ( CORBA::is_nil( mesh ) || CORBA::is_nil( submesh ))
2412     return false;
2413
2414   bool isNewConcurrent = mesh->IsUnorderedSubMesh( submesh->GetId() );
2415   if ( isNewConcurrent && askUser )
2416   {
2417     int butID = SUIT_MessageBox::warning( myDlg->parentWidget(), tr( "SMESH_WARNING" ),
2418                                           tr("CONCURRENT_SUBMESH_APPEARS"),
2419                                           tr("SMESH_BUT_YES"), tr("SMESH_BUT_NO"));
2420     if ( butID == 0 )
2421     {
2422       _PTR(SObject) meshSO = SMESH::FindSObject( mesh );
2423       LightApp_SelectionMgr* aSelectionMgr = selectionMgr();
2424       if ( meshSO && aSelectionMgr )
2425       {
2426         myDlg->setEnabled( false ); // disactivate selection
2427         selectionMgr()->clearFilters();
2428         selectObject( meshSO );
2429         SMESHGUI::GetSMESHGUI()->OnGUIEvent( SMESHOp::OpMeshOrder ); // MESH_ORDER
2430         qApp->processEvents();
2431
2432         myDlg->setEnabled( true );
2433         int obj = myDlg->getActiveObject();
2434         onActivateObject( obj ); // restore filter
2435         if ( !myToCreate )
2436         {
2437           selectObject( SMESH::FindSObject( submesh ));
2438           selectionDone();
2439         }
2440       }
2441     }
2442   }
2443
2444   return isNewConcurrent;
2445 }
2446
2447 //================================================================================
2448 /*!
2449  * \brief Verifies whether given operator is valid for this one
2450  * \param theOtherOp - other operation
2451  * \return Returns TRUE if the given operator is valid for this one, FALSE otherwise
2452  *
2453  * method redefined from base class verifies whether given operator is valid for
2454  * this one (i.e. can be started "above" this operator). In current implementation method
2455  * retuns false if theOtherOp operation is not intended for deleting objects or mesh
2456  * elements.
2457  */
2458 //================================================================================
2459 bool SMESHGUI_MeshOp::isValid( SUIT_Operation* theOp ) const
2460 {
2461   return SMESHGUI_Operation::isValid( theOp ) && !theOp->inherits( "SMESHGUI_MeshOp" );
2462 }
2463
2464 //================================================================================
2465 /*!
2466  * \brief SLOT. Is called when the user selects a way of geometry selection
2467  * \param theByMesh - true if the user wants to find geometry by mesh element
2468  */
2469 //================================================================================
2470 void SMESHGUI_MeshOp::onGeomSelectionByMesh( bool theByMesh )
2471 {
2472   if ( theByMesh ) {
2473     if ( !myShapeByMeshOp ) {
2474       myShapeByMeshOp = new SMESHGUI_ShapeByMeshOp();
2475       connect(myShapeByMeshOp, SIGNAL(committed(SUIT_Operation*)),
2476               SLOT(onPublishShapeByMeshDlg(SUIT_Operation*)));
2477       connect(myShapeByMeshOp, SIGNAL(aborted(SUIT_Operation*)),
2478               SLOT(onCloseShapeByMeshDlg(SUIT_Operation*)));
2479     }
2480     // set mesh object to SMESHGUI_ShapeByMeshOp and start it
2481     QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
2482     if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() )) {
2483       SMESH::SMESH_Mesh_var aMeshVar =
2484         SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
2485       if ( !aMeshVar->_is_nil() ) {
2486         myDlg->hide(); // stop processing selection
2487         myShapeByMeshOp->setModule( getSMESHGUI() );
2488         myShapeByMeshOp->setStudy( 0 ); // it's really necessary
2489         myShapeByMeshOp->SetMesh( aMeshVar );
2490         myShapeByMeshOp->start();
2491       }
2492     }
2493   }
2494 }
2495
2496 //================================================================================
2497 /*!
2498  * \brief SLOT. Is called when Ok is pressed in SMESHGUI_ShapeByMeshDlg
2499  */
2500 //================================================================================
2501 void SMESHGUI_MeshOp::onPublishShapeByMeshDlg(SUIT_Operation* op)
2502 {
2503   if ( myShapeByMeshOp == op ) {
2504     SMESHGUI::GetSMESHGUI()->getApp()->updateObjectBrowser(); //MZN: 24.11.2006  IPAL13980 - Object Browser update added
2505     myDlg->show();
2506     // Select a found geometry object
2507     GEOM::GEOM_Object_var aGeomVar = myShapeByMeshOp->GetShape();
2508     if ( !aGeomVar->_is_nil() )
2509     {
2510       QString ID = SMESH::toQStr( aGeomVar->GetStudyEntry() );
2511       if ( _PTR(SObject) aGeomSO = studyDS()->FindObjectID( ID.toLatin1().data() )) {
2512         selectObject( aGeomSO );
2513         selectionDone();
2514       }
2515     }
2516   }
2517 }
2518
2519 //================================================================================
2520 /*!
2521  * \brief SLOT. Is called when Close is pressed in SMESHGUI_ShapeByMeshDlg
2522  */
2523 //================================================================================
2524 void SMESHGUI_MeshOp::onCloseShapeByMeshDlg(SUIT_Operation* op)
2525 {
2526   if ( myShapeByMeshOp == op && myDlg ) {
2527     myDlg->show();
2528   }
2529 }
2530
2531 //================================================================================
2532 /*!
2533  * \brief Selects a SObject
2534  * \param theSObj - the SObject to select
2535  */
2536 //================================================================================
2537 void SMESHGUI_MeshOp::selectObject( _PTR(SObject) theSObj ) const
2538 {
2539   if ( LightApp_SelectionMgr* sm = selectionMgr() ) {
2540     SALOME_ListIO anIOList;
2541     if ( theSObj ) {
2542       Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject
2543         ( theSObj->GetID().c_str(), "SMESH", theSObj->GetName().c_str() );
2544       anIOList.Append( anIO );
2545     }
2546     sm->setSelectedObjects( anIOList, false );
2547   }
2548 }
2549 //================================================================================
2550 /*!
2551  * \brief Create available list types of mesh
2552   * \param theTypeMesh - Output list of available types of mesh
2553  */
2554 //================================================================================
2555 void SMESHGUI_MeshOp::createMeshTypeList( QStringList& theTypeMesh)
2556 {
2557   theTypeMesh.clear();
2558   theTypeMesh.append( tr( "MT_ANY" ) );
2559   if ( myMaxShapeDim >= 2 || myMaxShapeDim == -1 )
2560   {
2561     theTypeMesh.append( tr( "MT_TRIANGULAR" ) );
2562     theTypeMesh.append( tr( "MT_QUADRILATERAL" ) );
2563   }
2564   if ( myMaxShapeDim == 3 || myMaxShapeDim == -1 )
2565   {
2566     theTypeMesh.append( tr( "MT_TETRAHEDRAL" ) );
2567     theTypeMesh.append( tr( "MT_HEXAHEDRAL" ) );
2568   }
2569
2570 }
2571 //================================================================================
2572 /*!
2573  * \brief Set available types of mesh
2574   * \param theTypeMesh - List of available types of mesh
2575  */
2576 //================================================================================
2577 void SMESHGUI_MeshOp::setAvailableMeshType( const QStringList& theTypeMesh )
2578 {
2579   myDlg->setAvailableMeshType( theTypeMesh );
2580 }
2581
2582 //================================================================================
2583 /*!
2584  * \brief SLOT. Is called when the user select type of mesh
2585   * \param theTabIndex - Index of current active tab
2586   * \param theIndex - Index of current type of mesh
2587  */
2588 //================================================================================
2589 void SMESHGUI_MeshOp::onAlgoSetByMeshType( const int theTabIndex, const int theIndex)
2590 {
2591   setFilteredAlgoData( theTabIndex, theIndex);
2592 }
2593
2594 //================================================================================
2595 /*!
2596  * \brief Set a filtered list of available algorithms by mesh type
2597   * \param theTabIndex - Index of current active tab
2598   * \param theIndex - Index of current type of mesh
2599  */
2600 //================================================================================
2601 void SMESHGUI_MeshOp::setFilteredAlgoData( const int theTabIndex, const int theIndex)
2602 {
2603   int aDim;
2604   THypDataList anAvailableAlgsData;
2605   QStringList anAvailableAlgs;
2606   QString anCompareType = "";
2607   bool isAvailableChoiceAlgo = false;
2608   int anCurrentAvailableAlgo = 0;
2609   bool isNone = true;
2610   switch ( theIndex ) {
2611   case MT_ANY:
2612     anCompareType = "ANY";
2613     aDim = SMESH::DIM_3D;
2614     break;
2615   case MT_TRIANGULAR:
2616     aDim = SMESH::DIM_2D;
2617     anCompareType = "TRIA";
2618     break;
2619   case MT_QUADRILATERAL:
2620     aDim = SMESH::DIM_2D;
2621     anCompareType = "QUAD";
2622     break;
2623   case MT_TETRAHEDRAL:
2624     aDim = SMESH::DIM_3D;
2625     anCompareType = "TETRA";
2626     break;
2627   case MT_HEXAHEDRAL:
2628     aDim = SMESH::DIM_3D;
2629     anCompareType = "HEXA";
2630     break;
2631   default:;
2632   }
2633
2634   bool toCheckIsApplicableToAll = !myIsMesh;
2635   GEOM::GEOM_Object_var aGeomVar;
2636   QString anEntry =
2637     myDlg->selectedObject( myToCreate ? SMESHGUI_MeshDlg::Geom : SMESHGUI_MeshDlg::Obj );
2638   if ( _PTR(SObject) so = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
2639   {
2640     aGeomVar = SMESH::GetGeom( so );
2641     if ( !aGeomVar->_is_nil() && toCheckIsApplicableToAll )
2642       toCheckIsApplicableToAll = ( aGeomVar->GetType() == GEOM_GROUP );
2643   }
2644
2645   if ( anCompareType == "ANY" )
2646   {
2647     for ( int dim = SMESH::DIM_3D; dim >= SMESH::DIM_2D; dim-- )
2648     {
2649       isNone = currentHyp( dim, Algo ) < 0;
2650       isAvailableChoiceAlgo = false;
2651       // retrieves a list of available algorithms from resources
2652       availableHyps( dim, Algo, anAvailableAlgs, anAvailableAlgsData );
2653       //return current algo in current tab and set new algorithm list
2654       HypothesisData* algoCur;
2655       if ( !isNone && !myAvailableHypData[dim][Algo].empty() ) {
2656         algoCur = myAvailableHypData[dim][Algo].at( currentHyp( dim, Algo ) );
2657       }
2658       myAvailableHypData[dim][Algo].clear();
2659       myFilteredAlgoData[dim].clear();
2660       anAvailableAlgs.clear();
2661       if ( dim != SMESH::DIM_2D || currentHyp( SMESH::DIM_3D, Algo ) < 0 ||
2662            myAvailableHypData[SMESH::DIM_3D][Algo].empty() ||
2663            !myAvailableHypData[SMESH::DIM_3D][Algo].at( currentHyp( SMESH::DIM_3D, Algo ) )->InputTypes.isEmpty() )
2664       {
2665         for (int i = 0 ; i < anAvailableAlgsData.count(); i++)
2666         {
2667           HypothesisData* curAlgo = anAvailableAlgsData.at(i);
2668           if ( aGeomVar->_is_nil() ||
2669               SMESH::IsApplicable( curAlgo->TypeName, aGeomVar, toCheckIsApplicableToAll ))
2670           {
2671             anAvailableAlgs.append( curAlgo->Label );
2672             myAvailableHypData[dim][Algo].append( curAlgo );
2673             myFilteredAlgoData[dim].append( curAlgo );
2674           }
2675         }
2676         if ( !isNone && algoCur ) {
2677           for (int i = 0 ; i < myAvailableHypData[dim][Algo].count(); i++)
2678           {
2679             HypothesisData* algoAny = myAvailableHypData[dim][Algo].at(i);
2680             if ( algoAny->Label == algoCur->Label ){
2681               isAvailableChoiceAlgo = true;
2682               anCurrentAvailableAlgo = i;
2683               break;
2684             }
2685           }
2686         }
2687         else if ( !isNone ) {
2688           isAvailableChoiceAlgo = true;
2689           anCurrentAvailableAlgo = currentHyp( dim, Algo );
2690         }
2691       }
2692       myDlg->tab( dim )->setAvailableHyps( Algo, anAvailableAlgs );
2693       if ( isAvailableChoiceAlgo )
2694         setCurrentHyp( dim, Algo, anCurrentAvailableAlgo );
2695     }
2696     if ( !myIsOnGeometry )
2697       for ( int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++ ) {
2698         if ( i < SMESH::DIM_3D ) myDlg->disableTab( i );
2699         else                     myDlg->enableTab( i );
2700       }
2701     else
2702       for ( int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++ ) {
2703         if ( i > myMaxShapeDim ) myDlg->disableTab( i );
2704         else                     myDlg->enableTab( i );
2705       }
2706     myDlg->setCurrentTab( theTabIndex );
2707   }
2708   else
2709   {
2710     QString anCurrentAlgo;
2711     bool isReqDisBound = true;
2712     QString anCurrentCompareType = anCompareType;
2713     isNone = currentHyp( aDim, Algo ) < 0;
2714     if ( !isNone && !myAvailableHypData[aDim][Algo].empty() &&
2715         myAvailableHypData[aDim][Algo].count() != anAvailableAlgsData.count() )
2716       isReqDisBound = myAvailableHypData[aDim][Algo].at( currentHyp( aDim, Algo ) )->InputTypes.isEmpty();
2717     else if ( !isNone )
2718       isReqDisBound = anAvailableAlgsData.at( currentHyp( aDim, Algo ) )->InputTypes.isEmpty();
2719     for ( int dim = aDim; dim >= SMESH::DIM_2D; dim-- )
2720     {
2721       bool isNoneAlg = currentHyp( dim, Algo ) < 0;
2722       isAvailableChoiceAlgo = false;
2723       // retrieves a list of available algorithms from resources
2724       availableHyps( dim, Algo, anAvailableAlgs, anAvailableAlgsData );
2725       // finding algorithm which is selected
2726       if ( !isNoneAlg && !myAvailableHypData[dim][Algo].empty() &&
2727           myAvailableHypData[dim][Algo].count() != anAvailableAlgsData.count() )
2728         anCurrentAlgo = myAvailableHypData[dim][Algo].at( currentHyp( dim, Algo ) )->Label;
2729       else if ( !isNoneAlg )
2730         anCurrentAlgo = anAvailableAlgsData.at( currentHyp( dim, Algo ) )->Label;
2731       anAvailableAlgs.clear();
2732       myAvailableHypData[dim][Algo].clear();
2733       myFilteredAlgoData[dim].clear();
2734       // finding and adding algorithm depending on the type mesh
2735       for ( int i = 0 ; i < anAvailableAlgsData.count(); i++ )
2736       {
2737         HypothesisData* algoIn = anAvailableAlgsData.at( i );
2738         bool isAvailableAlgo = ( algoIn->OutputTypes.count() == 0 );
2739         QStringList::const_iterator inElemType = algoIn->OutputTypes.begin();
2740         for ( ; inElemType != algoIn->OutputTypes.end(); inElemType++ )
2741         {
2742           if ( *inElemType == anCurrentCompareType ) {
2743             isAvailableAlgo = true;
2744             break;
2745           }
2746         }
2747         if ( isAvailableAlgo || algoIn->OutputTypes.count()==0 ) {
2748           if ( aGeomVar->_is_nil() || myMaxShapeDim != dim ||
2749                SMESH::IsApplicable( algoIn->TypeName, aGeomVar, toCheckIsApplicableToAll ))
2750           {
2751             anAvailableAlgs.append( algoIn->Label );
2752             myAvailableHypData[dim][Algo].append( algoIn );
2753             myFilteredAlgoData[dim].append( algoIn );
2754           }
2755         }
2756         //algorithm will be active, if the chosen algorithm available in the current mesh type
2757         if ( !isNoneAlg &&  isAvailableAlgo && algoIn->Label == anCurrentAlgo ) {
2758           isAvailableChoiceAlgo = true;
2759           anCurrentAvailableAlgo = anAvailableAlgs.count() - 1 ;
2760         }
2761       }
2762       //set new algorithm list and select the current algorithm
2763       myDlg->tab( dim )->setAvailableHyps( Algo, anAvailableAlgs );
2764       anCurrentCompareType = ( anCompareType == "HEXA" ) ? "QUAD" : "TRIA";
2765       if ( isAvailableChoiceAlgo )
2766         setCurrentHyp( dim, Algo, anCurrentAvailableAlgo );
2767       else
2768         setCurrentHyp( dim, Algo, -1 );
2769     }
2770
2771     if ( isNone || isReqDisBound ) {
2772       for ( int i = SMESH::DIM_0D; i <= myMaxShapeDim; i++ ) {
2773         if ( aDim != i ) {
2774           myDlg->disableTab( i );
2775           setCurrentHyp(i, Algo, -1);
2776         }
2777       }
2778     }
2779     else if ( !isNone ) {
2780       if ( aDim == SMESH::DIM_2D){
2781         myDlg->disableTab( SMESH::DIM_3D );
2782         setCurrentHyp( SMESH::DIM_3D, Algo, -1);
2783       }
2784       for ( int i = myMaxShapeDim; i > SMESH::DIM_0D; i-- )
2785       {
2786         isReqDisBound = ( currentHyp( i, Algo ) < 0 ) ? true :
2787             myAvailableHypData[i][Algo].at( currentHyp( i, Algo ) )->InputTypes.isEmpty();
2788         if ( isReqDisBound ) {
2789           for (int j = i - 1; j >= SMESH::DIM_0D; j--){
2790             myDlg->disableTab( j );
2791             setCurrentHyp( j , Algo, -1 );
2792           }
2793           break;
2794         }
2795       }
2796     }
2797     myDlg->enableTab( aDim );
2798     myDlg->setCurrentTab( aDim );
2799   }
2800   QStringList aHypothesesSetsList = SMESH::GetHypothesesSets( aDim );
2801   QStringList aFilteredHypothesesSetsList;
2802   aFilteredHypothesesSetsList.clear();
2803   QStringList::const_iterator inHypoSetName = aHypothesesSetsList.begin();
2804   for ( ; inHypoSetName != aHypothesesSetsList.end(); ++inHypoSetName )
2805   {
2806     HypothesesSet* currentHypoSet = SMESH::GetHypothesesSet( *inHypoSetName );
2807     bool isAvailable = false;
2808     currentHypoSet->init( true );
2809     while ( currentHypoSet->next(), currentHypoSet->more() )
2810     {
2811       isAvailable = false;
2812       if ( HypothesisData* algoDataIn = SMESH::GetHypothesisData( currentHypoSet->current() ))
2813       {
2814         for (int i = SMESH::DIM_0D; i <= myMaxShapeDim; i++)
2815         {
2816           if ( myAvailableHypData[i][Algo].count() == 0 ) {
2817             availableHyps( i, Algo, anAvailableAlgs, anAvailableAlgsData );
2818             for ( int j = 0 ; j < anAvailableAlgsData.count(); j++ )
2819             {
2820               HypothesisData* aCurAlgo = anAvailableAlgsData.at( j );
2821               if ( aCurAlgo->Label == algoDataIn->Label ){
2822                 isAvailable = true;
2823                 break;
2824               }
2825             }
2826           }
2827           else {
2828             for (int j = 0; j < myAvailableHypData[i][Algo].count(); ++j) {
2829               HypothesisData* aCurAlgo = hypData( i, Algo, j );
2830               if ( aCurAlgo->Label == algoDataIn->Label ){
2831                 isAvailable = true;
2832                 break;
2833               }
2834             }
2835           }
2836           if ( isAvailable ) break;
2837         }
2838         if ( !isAvailable ) break;
2839       }
2840     }
2841     if ( isAvailable )
2842       aFilteredHypothesesSetsList.append( *inHypoSetName );
2843   }
2844   myDlg->setHypoSets( aFilteredHypothesesSetsList );
2845 }