Salome HOME
IPAL52650: Convert to quadratic fails on an ellipsoid.
[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 check compatibility of the geometry
865   * \param theAlgoData - to select hypos able to be used by this algo
866   * \param theCurrentGeomToSelect - the current name of the selected geometry
867   * \param theGeomVar - currently selected geometry
868   * \retval bool - check result
869  */
870 //================================================================================
871 bool SMESHGUI_MeshOp::isCompatibleToGeometry(HypothesisData* theAlgoData,
872                                              QString theCurrentGeomToSelect,
873                                              GEOM::GEOM_Object_var theGeomVar)
874 {
875   if ( theGeomVar->_is_nil() )
876     return true;
877
878   bool isApplicable = false;
879   if ( theCurrentGeomToSelect == myLastGeomToSelect && !theCurrentGeomToSelect.isEmpty() ) {
880     THypLabelIsAppMap::const_iterator iter = myHypMapIsApplicable.find( theAlgoData->Label );
881     if ( iter != myHypMapIsApplicable.end() && iter.key() == theAlgoData->Label ) {
882       isApplicable = iter.value();
883       return isApplicable;
884     }
885   }
886   bool toCheckIsApplicableToAll = !myIsMesh;
887   if ( toCheckIsApplicableToAll )
888     toCheckIsApplicableToAll = ( theGeomVar->GetType() == GEOM_GROUP );
889   isApplicable = SMESH::IsApplicable( theAlgoData->TypeName, theGeomVar, toCheckIsApplicableToAll );
890   myHypMapIsApplicable.insert( theAlgoData->Label, isApplicable );
891   return isApplicable;
892 }
893
894 //================================================================================
895 /*!
896  * \brief check compatibility of the mesh type
897   * \param theAlgoData - to select hypos able to be used by this algo
898   * \param theMeshType - type of mesh for filtering algorithms
899   * \retval bool - check result
900  */
901 //================================================================================
902 bool SMESHGUI_MeshOp::isCompatibleToMeshType(HypothesisData* theAlgoData,
903                                              QString theMeshType)
904 {
905   bool isAvailableAlgo = ( theAlgoData->OutputTypes.count() == 0 );
906   QStringList::const_iterator inElemType = theAlgoData->OutputTypes.begin();
907   for ( ; inElemType != theAlgoData->OutputTypes.end(); inElemType++ ) {
908     if ( *inElemType == theMeshType ) {
909       isAvailableAlgo = true;
910       break;
911     }
912   }
913   return isAvailableAlgo;
914 }
915
916 //================================================================================
917 /*!
918  * \brief Gets available hypotheses or algorithms
919   * \param theDim - specifies dimension of returned hypotheses/algorifms
920   * \param theHypType - specifies whether algorims or hypotheses or additional ones
921   * are retrieved (possible values are in HypType enumeration)
922   * \param theHyps - Output list of hypotheses' names
923   * \param thePrevAlgoData - to select hypos able to be used by previously algo (optional)
924   * \param theNextAlgoData - to select hypos able to be used by next algo (optional)
925   * \param theMeshType - type of mesh for filtering algorithms (optional)
926  *
927  * Gets available hypotheses or algorithm in accordance with input parameters
928  */
929 //================================================================================
930 void SMESHGUI_MeshOp::availableHyps( const int       theDim,
931                                      const int       theHypType,
932                                      QStringList&    theHyps,
933                                      THypDataList&   theDataList,
934                                      HypothesisData* thePrevAlgoData,
935                                      HypothesisData* theNextAlgoData,
936                                      const QString&  theMeshType)
937 {
938   theDataList.clear();
939   theHyps.clear();
940   bool isAlgo = ( theHypType == Algo );
941   bool isAux  = ( theHypType >= AddHyp );
942   QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses( isAlgo, theDim, isAux, myIsOnGeometry, !myIsMesh );
943
944   QStringList::const_iterator anIter;
945   GEOM::GEOM_Object_var aGeomVar;
946   QString aCurrentGeomToSelect;
947   if ( !theMeshType.isEmpty() ) {
948     aCurrentGeomToSelect = myDlg->selectedObject( myToCreate ? SMESHGUI_MeshDlg::Geom : SMESHGUI_MeshDlg::Obj );
949     if ( _PTR(SObject) so = studyDS()->FindObjectID( aCurrentGeomToSelect.toLatin1().data() )) {
950       aGeomVar = SMESH::GetGeom( so );
951     }
952    if ( aCurrentGeomToSelect != myLastGeomToSelect )
953      myHypMapIsApplicable.clear();
954   }
955
956   for ( anIter = aHypTypeNameList.begin(); anIter != aHypTypeNameList.end(); ++anIter )
957   {
958     HypothesisData* aData = SMESH::GetHypothesisData( *anIter );
959     if ( ( isCompatible ( thePrevAlgoData, aData, theHypType ) &&
960            isCompatible ( theNextAlgoData, aData, theHypType ) ) ||
961            ( theMeshType == "ANY" && aData->InputTypes.isEmpty())) {
962       if ( !theMeshType.isEmpty() && theDim >= SMESH::DIM_2D &&
963            ( ( theMeshType != "ANY" && !isCompatibleToMeshType( aData, theMeshType )) ||
964            !isCompatibleToGeometry( aData, aCurrentGeomToSelect, aGeomVar )))
965         continue;
966       theDataList.append( aData );
967       theHyps.append( aData->Label );
968     }
969   }
970
971   if ( !theMeshType.isEmpty() && !aCurrentGeomToSelect.isEmpty() &&
972        myLastGeomToSelect != aCurrentGeomToSelect )
973     myLastGeomToSelect = aCurrentGeomToSelect;
974 }
975
976 //================================================================================
977 /*!
978  * \brief Gets existing hypotheses or algorithms
979  *  \param theDim - specifies dimension of returned hypotheses/algorifms
980  *  \param theHypType - specifies whether algorims or hypotheses or additional ones
981  *  are retrieved (possible values are in HypType enumeration)
982  *  \param theFather - start object for finding ( may be component, mesh, or sub-mesh )
983  *  \param theHyps - output list of names.
984  *  \param theHypVars - output list of variables.
985  *  \param theAlgoData - to select hypos able to be used by this algo (optional)
986  *
987  * Gets existing (i.e. already created) hypotheses or algorithm in accordance with
988  * input parameters.
989  *
990  * WARNING: when using this method to get hyps existing in Mesh component,
991  *          call availableHyps() before in order to get only hyps of available types
992  *          that was filtered by availableHyps()
993  */
994 //================================================================================
995 void SMESHGUI_MeshOp::existingHyps( const int       theDim,
996                                     const int       theHypType,
997                                     _PTR(SObject)   theFather,
998                                     QStringList&    theHyps,
999                                     THypList&       theHypList,
1000                                     HypothesisData* theAlgoData) const
1001 {
1002   // Clear hypoheses list
1003   theHyps.clear();
1004   theHypList.clear();
1005
1006   if ( !theFather )
1007     return;
1008
1009   _PTR(SObject)          aHypRoot;
1010   _PTR(GenericAttribute) anAttr;
1011   _PTR(AttributeName)    aName;
1012   _PTR(AttributeIOR)     anIOR;
1013
1014   const bool isMesh = !_CAST( SComponent, theFather );
1015   int aPart = -1;
1016   if ( isMesh )
1017     aPart = theHypType == Algo ? SMESH::Tag_RefOnAppliedAlgorithms : SMESH::Tag_RefOnAppliedHypothesis;
1018   else
1019     aPart = theHypType == Algo ? SMESH::Tag_AlgorithmsRoot : SMESH::Tag_HypothesisRoot;
1020
1021   const bool isAux   = ( theHypType >= AddHyp );
1022   const bool allHyps = ( !isMesh && theHypType != Algo && theDim > -1);
1023
1024   if ( theFather->FindSubObject( aPart, aHypRoot ) )
1025   {
1026     _PTR(ChildIterator) anIter =
1027       SMESH::GetActiveStudyDocument()->NewChildIterator( aHypRoot );
1028     for ( ; anIter->More(); anIter->Next() )
1029     {
1030       _PTR(SObject) anObj = anIter->Value();
1031       if ( isMesh ) // i.e. mesh or submesh
1032       {
1033         _PTR(SObject) aRefObj;
1034         if ( anObj->ReferencedObject( aRefObj ) )
1035           anObj = aRefObj;
1036         else
1037           continue;
1038       }
1039       if ( anObj->FindAttribute( anAttr, "AttributeName" ) )
1040       {
1041         aName = anAttr;
1042         CORBA::Object_var aVar = _CAST(SObject,anObj)->GetObject();
1043         if ( !CORBA::is_nil( aVar ) )
1044         {
1045           SMESH::SMESH_Hypothesis_var aHypVar = SMESH::SMESH_Hypothesis::_narrow( aVar );
1046           if ( !aHypVar->_is_nil() )
1047           {
1048             CORBA::String_var hypType = aHypVar->GetName();
1049             HypothesisData* aData = SMESH::GetHypothesisData( hypType.in() );
1050             if ( !aData) continue;
1051             if (( theDim == -1 || aData->Dim.contains( theDim ) ) &&
1052                 ( isCompatible ( theAlgoData, aData, theHypType )) &&
1053                 ( theHypType == Algo || isAux == aData->IsAuxOrNeedHyp ) &&
1054                 ( !allHyps || myAvailableHypData[theDim][theHypType].count(aData) ))
1055             {
1056               std::string aHypName = aName->Value();
1057               theHyps.append( aHypName.c_str() );
1058               theHypList.append( THypItem( aHypVar, aHypName.c_str() ) );
1059             }
1060           }
1061         }
1062       }
1063     }
1064   }
1065 }
1066
1067 //================================================================================
1068 /*!
1069  * \brief If create or edit a submesh, return a hypothesis holding parameters used
1070  *        to mesh a sub-shape
1071   * \param aHypType - The hypothesis type name
1072   * \param aServerLib - Server library name
1073   * \param hypData - The structure holding the hypothesis type etc.
1074   * \retval SMESH::SMESH_Hypothesis_var - the hypothesis holding parameter values
1075  */
1076 //================================================================================
1077 SMESH::SMESH_Hypothesis_var
1078 SMESHGUI_MeshOp::getInitParamsHypothesis( const QString& aHypType,
1079                                           const QString& aServerLib ) const
1080 {
1081   if ( aHypType.isEmpty() || aServerLib.isEmpty() )
1082     return SMESH::SMESH_Hypothesis::_nil();
1083
1084   const int nbColonsInMeshEntry = 3;
1085   bool isSubMesh = myToCreate ?
1086     !myIsMesh :
1087     myDlg->selectedObject( SMESHGUI_MeshDlg::Obj ).count(':') > nbColonsInMeshEntry;
1088
1089   // get mesh and geom object
1090   SMESH::SMESH_Mesh_var aMeshVar = SMESH::SMESH_Mesh::_nil();
1091   GEOM::GEOM_Object_var aGeomVar = GEOM::GEOM_Object::_nil();
1092
1093   QString anEntry;
1094   if ( isSubMesh )
1095   {
1096     anEntry = myDlg->selectedObject
1097       ( myToCreate ? SMESHGUI_MeshDlg::Mesh : SMESHGUI_MeshDlg::Obj );
1098     if ( _PTR(SObject) pObj = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
1099     {
1100       CORBA::Object_ptr Obj = _CAST( SObject,pObj )->GetObject();
1101       if ( myToCreate ) // mesh and geom may be selected
1102       {
1103         aMeshVar = SMESH::SMESH_Mesh::_narrow( Obj );
1104         anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1105         if ( _PTR(SObject) pGeom = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
1106           aGeomVar= GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1107       }
1108       else // edition: sub-mesh may be selected
1109       {
1110         SMESH::SMESH_subMesh_var sm = SMESH::SMESH_subMesh::_narrow( Obj );
1111         if ( !sm->_is_nil() ) {
1112           aMeshVar = sm->GetFather();
1113           aGeomVar = sm->GetSubShape();
1114         }
1115       }
1116     }
1117   }
1118   else // mesh
1119   {
1120     if ( !myToCreate ) // mesh to edit can be selected
1121     {
1122       anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1123       if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
1124       {
1125         aMeshVar = SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
1126         if ( !aMeshVar->_is_nil() )
1127           aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pMesh );
1128       }
1129     }
1130     if ( aGeomVar->_is_nil() ) {
1131       anEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1132       if ( _PTR(SObject) pGeom = studyDS()->FindObjectID( anEntry.toLatin1().data() ))
1133       {
1134         aGeomVar= GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1135       }
1136     }
1137   }
1138
1139   SMESH::SMESH_Hypothesis_var hyp =
1140     SMESHGUI::GetSMESHGen()->GetHypothesisParameterValues( aHypType.toLatin1().data(),
1141                                                            aServerLib.toLatin1().data(),
1142                                                            aMeshVar,
1143                                                            aGeomVar,
1144                                                            /*byMesh = */isSubMesh);
1145   if ( hyp->_is_nil() && isSubMesh )
1146     hyp = SMESHGUI::GetSMESHGen()->GetHypothesisParameterValues( aHypType.toLatin1().data(),
1147                                                                  aServerLib.toLatin1().data(),
1148                                                                  aMeshVar,
1149                                                                  aGeomVar,
1150                                                                  /*byMesh = */false);
1151   return hyp;
1152 }
1153
1154 //================================================================================
1155 /*!
1156  * \brief initialize a hypothesis creator
1157  */
1158 //================================================================================
1159
1160 void SMESHGUI_MeshOp::initHypCreator( SMESHGUI_GenericHypothesisCreator* theCreator )
1161 {
1162   if ( !theCreator ) return;
1163
1164   // Set shapes, of mesh and sub-mesh if any
1165
1166   // get Entry of the Geom object
1167   QString aGeomEntry = "";
1168   QString aMeshEntry = "";
1169   QString anObjEntry = "";
1170   aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1171   aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
1172   anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1173
1174   if ( myToCreate && myIsMesh )
1175     aMeshEntry = aGeomEntry;
1176
1177   if ( aMeshEntry != aGeomEntry ) { // Get Geom object from Mesh of a sub-mesh being edited
1178     _PTR(SObject) pObj = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
1179     GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
1180     aMeshEntry = ( aGeomVar->_is_nil() ) ? QString() : SMESH::toQStr( aGeomVar->GetStudyEntry() );
1181   }
1182
1183   if ( aMeshEntry == "" && aGeomEntry == "" ) { // get geom of an object being edited
1184     _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
1185     bool isMesh;
1186     GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj, &isMesh );
1187     if ( !aGeomVar->_is_nil() )
1188     {
1189       aGeomEntry = SMESH::toQStr( aGeomVar->GetStudyEntry() );
1190       if ( isMesh )
1191         aMeshEntry = aGeomEntry;
1192     }
1193   }
1194
1195   if ( anObjEntry != "" && aGeomEntry != "" && aMeshEntry == "" ) {
1196     // take geometry from submesh being created
1197     _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
1198     if ( pObj ) {
1199       // if current object is sub-mesh
1200       SMESH::SMESH_subMesh_var aSubMeshVar =
1201         SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
1202       if ( !aSubMeshVar->_is_nil() ) {
1203         SMESH::SMESH_Mesh_var aMeshVar =  aSubMeshVar->GetFather();
1204         if ( !aMeshVar->_is_nil() ) {
1205           _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar );
1206           GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( aMeshSO );
1207           if ( !aGeomVar->_is_nil() )
1208             aMeshEntry = SMESH::toQStr( aGeomVar->GetStudyEntry() );
1209         }
1210       }
1211     }
1212   }
1213
1214   theCreator->setShapeEntry( aGeomEntry );
1215   if ( aMeshEntry != "" )
1216     theCreator->setMainShapeEntry( aMeshEntry );
1217 }
1218
1219 //================================================================================
1220 /*!
1221  * \Brief Returns tab dimention
1222   * \param tab - the tab in the dlg
1223   * \param dlg - my dialogue
1224   * \retval int - dimention
1225  */
1226 //================================================================================
1227 static int getTabDim (const QObject* tab, SMESHGUI_MeshDlg* dlg )
1228 {
1229   int aDim = -1;
1230   for (int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++)
1231     if (tab == dlg->tab(i))
1232       aDim = i;
1233   return aDim;
1234 }
1235
1236 //================================================================================
1237 /*!
1238  * \brief Create hypothesis
1239   * \param theHypType - hypothesis category (main or additional)
1240   * \param theIndex - index of type of hypothesis to be cerated
1241  *
1242  * Specifies dimension of hypothesis to be created (using sender() method),
1243  * specifies its type and calls method for hypothesis creation
1244  */
1245 //================================================================================
1246 void SMESHGUI_MeshOp::onCreateHyp( const int theHypType, const int theIndex )
1247 {
1248   // Specifies dimension of hypothesis to be created
1249   int aDim = getTabDim( sender(), myDlg );
1250   if (aDim == -1)
1251     return;
1252
1253   // Specifies type of hypothesis to be created
1254   THypDataList& dataList = myAvailableHypData[ aDim ][ theHypType ];
1255   if (theIndex < 0 || theIndex >= dataList.count())
1256     return;
1257   QString aHypTypeName = dataList[ theIndex ]->TypeName;
1258
1259   // Create hypothesis
1260   createHypothesis(aDim, theHypType, aHypTypeName);
1261 }
1262
1263 namespace
1264 {
1265   QString GetUniqueName (const QStringList& theHypNames,
1266                          const QString& theName,
1267                          size_t theIteration = 1)
1268   {
1269     QString aName = theName + "_" + QString::number( theIteration );
1270     if ( theHypNames.contains( aName ) )
1271       return GetUniqueName( theHypNames, theName, ++theIteration );
1272     return aName;
1273   }
1274 }
1275
1276 //================================================================================
1277 /*!
1278  *  Create hypothesis and update dialog.
1279  *  \param theDim - dimension of hypothesis to be created
1280  *  \param theType - hypothesis category (algorithm, hypothesis, additional hypothesis)
1281  *  \param theTypeName - specifies hypothesis to be created
1282  */
1283 //================================================================================
1284 void SMESHGUI_MeshOp::createHypothesis(const int theDim,
1285                                        const int theType,
1286                                        const QString& theTypeName)
1287 {
1288   HypothesisData* aData = SMESH::GetHypothesisData(theTypeName);
1289   if (!aData)
1290     return;
1291
1292   myDim = theDim;
1293   myType = theType;
1294
1295   // get a unique hyp name
1296   QStringList aHypNames;
1297   TDim2Type2HypList::const_iterator aDimIter = myExistingHyps.begin();
1298   for ( ; aDimIter != myExistingHyps.end(); aDimIter++) {
1299     const TType2HypList& aType2HypList = aDimIter.value();
1300     TType2HypList::const_iterator aTypeIter = aType2HypList.begin();
1301     for ( ; aTypeIter != aType2HypList.end(); aTypeIter++) {
1302       const THypList& aHypList = aTypeIter.value();
1303       THypList::const_iterator anIter = aHypList.begin();
1304       for ( ; anIter != aHypList.end(); anIter++) {
1305         const THypItem& aHypItem = *anIter;
1306         const QString& aHypName = aHypItem.second;
1307         aHypNames.append(aHypName);
1308       }
1309     }
1310   }
1311   QString aHypName = GetUniqueName( aHypNames, aData->Label);
1312
1313   // existing hypos
1314   bool dialog = false;
1315
1316   QString aClientLibName = aData->ClientLibName;
1317   if (aClientLibName == "") {
1318     // Call hypothesis creation server method (without GUI)
1319     SMESH::SMESH_Hypothesis_var aHyp =
1320       SMESH::CreateHypothesis(theTypeName, aHypName, false);
1321     aHyp.out();
1322   }
1323   else {
1324     // Get hypotheses creator client (GUI)
1325     SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(theTypeName);
1326
1327     // Create hypothesis
1328     if (aCreator)
1329     {
1330       // Get parameters appropriate to initialize a new hypothesis
1331       SMESH::SMESH_Hypothesis_var initParamHyp =
1332         getInitParamsHypothesis(theTypeName, aData->ServerLibName);
1333
1334       removeCustomFilters(); // Issue 0020170
1335
1336       // set shapes, of mesh and sub-mesh if any
1337       initHypCreator( aCreator );
1338
1339       myDlg->setEnabled( false );
1340       aCreator->create(initParamHyp, aHypName, myDlg, this, SLOT( onHypoCreated( int ) ) );
1341       dialog = true;
1342     }
1343     else {
1344      SMESH::SMESH_Hypothesis_var aHyp =
1345        SMESH::CreateHypothesis(theTypeName, aHypName, false);
1346      aHyp.out();
1347     }
1348   }
1349
1350   if( !dialog )
1351     onHypoCreated(2);
1352 }
1353
1354 //================================================================================
1355 /*!
1356  *  Necessary steps after hypothesis creation
1357  *  \param result - creation result:
1358  *   0 = rejected
1359  *   1 = accepted
1360  *   2 = additional value meaning that slot is called not from dialog box
1361  */
1362 //================================================================================
1363 void SMESHGUI_MeshOp::onHypoCreated( int result )
1364 {
1365   if( result != 2 )
1366   {
1367     int obj = myDlg->getActiveObject();
1368     onActivateObject( obj ); // Issue 0020170. Restore filters
1369     myDlg->setEnabled( true );
1370   }
1371
1372   _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
1373
1374   int nbHyp = myExistingHyps[myDim][myType].count();
1375   HypothesisData* algoData = hypData( myDim, Algo, currentHyp( myDim, Algo ));
1376   QStringList aNewHyps;
1377   existingHyps(myDim, myType, aFather, aNewHyps, myExistingHyps[myDim][myType], algoData);
1378   if (aNewHyps.count() > nbHyp)
1379   {
1380     for (int i = nbHyp; i < aNewHyps.count(); i++)
1381       myDlg->tab(myDim)->addHyp(myType, aNewHyps[i]);
1382   }
1383
1384   if( result!=2 && myHypoSet )
1385     processSet();
1386 }
1387
1388 //================================================================================
1389 /*!
1390  * \brief Calls plugin methods for hypothesis editing
1391   * \param theHypType - specifies whether main hypothesis or additional one
1392   * is edited
1393   * \param theIndex - index of existing hypothesis
1394  *
1395  * Calls plugin methods for hypothesis editing
1396  */
1397 //================================================================================
1398 void SMESHGUI_MeshOp::onEditHyp( const int theHypType, const int theIndex )
1399 {
1400   // Speicfies dimension of hypothesis to be created
1401   int aDim = getTabDim( sender(), myDlg );
1402   if (aDim == -1)
1403     return;
1404
1405   const THypList& aList = myExistingHyps[ aDim ][ theHypType ];
1406   if ( theIndex < 0 || theIndex >= aList.count() )
1407     return;
1408   const THypItem& aHypItem = aList[ theIndex ];
1409   SMESH::SMESH_Hypothesis_var aHyp = aHypItem.first;
1410   if ( aHyp->_is_nil() )
1411     return;
1412
1413   SMESHGUI_GenericHypothesisCreator* aCreator =
1414     SMESH::GetHypothesisCreator( SMESH::toQStr( aHyp->GetName() ));
1415   if ( aCreator )
1416   {
1417     // set initial parameters
1418     SMESH::SMESH_Hypothesis_var initParamHyp =
1419       getInitParamsHypothesis( SMESH::toQStr( aHyp->GetName() ),
1420                                SMESH::toQStr( aHyp->GetLibName() ));
1421     aCreator->setInitParamsHypothesis( initParamHyp );
1422
1423     // set shapes, of mesh and sub-mesh if any
1424     initHypCreator( aCreator );
1425
1426     removeCustomFilters(); // Issue 0020170
1427     myDlg->setEnabled( false );
1428
1429     aCreator->edit( aHyp.in(), aHypItem.second, dlg(), this, SLOT( onHypoEdited( int ) ) );
1430   }
1431 }
1432
1433 //================================================================================
1434 /*!
1435  *  Necessary steps after hypothesis edition
1436  *  \param result - creation result:
1437  *   0 = rejected
1438  *   1 = accepted
1439  */
1440 //================================================================================
1441 void SMESHGUI_MeshOp::onHypoEdited( int result )
1442 {
1443   int obj = myDlg->getActiveObject();
1444   onActivateObject( obj ); // Issue 0020170. Restore filters
1445   myDlg->setEnabled( true );
1446 }
1447
1448 //================================================================================
1449 /*!
1450  * \brief access to hypothesis data
1451   * \param theDim - hyp dimension
1452   * \param theHypType - hyp type (Algo,MainHyp or AddHyp)
1453   * \param theIndex - index in the list
1454   * \retval HypothesisData* - result data, may be 0
1455  */
1456 //================================================================================
1457 HypothesisData* SMESHGUI_MeshOp::hypData( const int theDim,
1458                                           const int theHypType,
1459                                           const int theIndex)
1460 {
1461   if ( theDim     > -1 && theDim    <= SMESH::DIM_3D &&
1462        theHypType > -1 && theHypType < NbHypTypes &&
1463        theIndex   > -1 && theIndex   < myAvailableHypData[ theDim ][ theHypType ].count() )
1464     return myAvailableHypData[ theDim ][ theHypType ][ theIndex ];
1465   return 0;
1466 }
1467
1468 //================================================================================
1469 /*!
1470  * \brief Set available algos and hypos according to the selected algorithm
1471   * \param theIndex - algorithm index
1472  */
1473 //================================================================================
1474 void SMESHGUI_MeshOp::onAlgoSelected( const int theIndex,
1475                                       const int theDim )
1476 {
1477   if ( myIgnoreAlgoSelection )
1478     return;
1479
1480   int aDim = theDim < 0 ? getTabDim( sender(), myDlg ): theDim;
1481   if (aDim == -1)
1482     return;
1483
1484   // find highest available dimension, all algos of this dimension are available for choice
1485   int aTopDim = -1;
1486   for (int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++)
1487     if (isAccessibleDim( i ))
1488       aTopDim = i;
1489   if (aTopDim == -1)
1490     return;
1491
1492   const bool isSubmesh = ( myToCreate ? !myIsMesh : myDlg->isObjectShown( SMESHGUI_MeshDlg::Mesh ));
1493
1494   HypothesisData* algoData = hypData( aDim, Algo, theIndex );
1495   HypothesisData* algoByDim[4];
1496   algoByDim[ aDim ] = algoData;
1497
1498   QStringList anAvailable;
1499
1500   // check that tab enabled of one less dimension
1501   if ( aDim > SMESH::DIM_0D )
1502   {
1503     if ( isAccessibleDim( aDim - 1 ) ) {
1504       if ( algoData && myIsOnGeometry ) {
1505         for (int i = aDim - 1; i >= SMESH::DIM_0D; i--) {
1506           if ( isAccessibleDim( i ) && currentHyp( i, Algo ) < 0 ) {
1507             myDlg->disableTab( i );
1508             setCurrentHyp(i, Algo, -1);
1509           }
1510         }
1511       }
1512     }
1513     if ( algoData && myIsOnGeometry && !algoData->InputTypes.isEmpty() ) {
1514       myDlg->enableTab( aDim - 1 );
1515     }
1516     if ( !algoData ) {
1517       if ( aDim != SMESH::DIM_2D || ( aDim == SMESH::DIM_2D &&
1518          currentHyp( SMESH::DIM_2D, Algo ) < 0) ) {
1519         for (int i = aDim - 1; i >= SMESH::DIM_0D; i--)
1520           myDlg->enableTab( i );
1521       }
1522       else {
1523         for (int i = aDim - 1; i >= SMESH::DIM_0D; i--)
1524           myDlg->disableTab( i );
1525       }
1526     }
1527   }
1528
1529   int algoDim = aDim;
1530   HypothesisData* a3DAlgo = 0;
1531   // 2 loops: backward and forward from algo dimension
1532   for ( int forward = 0; forward <= 1; ++forward )
1533   {
1534     int dim = algoDim + 1, lastDim = SMESH::DIM_3D, dir = 1;
1535     if ( !forward ) {
1536       dim = algoDim - 1; lastDim = SMESH::DIM_0D; dir = -1;
1537     }
1538     HypothesisData* prevAlgo = algoData;
1539     bool noCompatible = false;
1540     for ( ; dim * dir <= lastDim * dir; dim += dir)
1541     {
1542       HypothesisData* nextAlgo = 0;
1543       if ( myMaxShapeDim == SMESH::DIM_3D && a3DAlgo && dim == SMESH::DIM_2D ) {
1544         nextAlgo = a3DAlgo;
1545       }
1546       if ( !isAccessibleDim( dim ))
1547         continue;
1548       if ( noCompatible ) { // the selected algo has no compatible ones
1549         anAvailable.clear();
1550         myDlg->tab( dim )->setAvailableHyps( Algo, anAvailable );
1551         myAvailableHypData[dim][Algo].clear();
1552         algoByDim[ dim ] = 0;
1553         continue;
1554       }
1555       // get currently selected algo
1556       int algoIndex = currentHyp( dim, Algo );
1557       HypothesisData* curAlgo = hypData( dim, Algo, algoIndex );
1558       if ( curAlgo ) { // some algo selected
1559         if ( !isCompatible( prevAlgo, curAlgo, Algo ))
1560           curAlgo = 0;
1561       }
1562       // set new available algoritms
1563
1564       QString anCompareType = currentMeshTypeName(myDlg->currentMeshType());
1565       QString anCurrentCompareType = "";
1566       if ( dim == SMESH::DIM_3D || anCompareType == "ANY" )
1567         anCurrentCompareType = anCompareType;
1568       else if ( dim == SMESH::DIM_2D ) {
1569         anCurrentCompareType = (anCompareType == "HEXA" || anCompareType == "QUAD") ? "QUAD" : "TRIA";
1570         nextAlgo = 0;
1571       }
1572       availableHyps( dim, Algo, anAvailable, myAvailableHypData[dim][Algo], prevAlgo, nextAlgo, anCurrentCompareType);
1573       HypothesisData* soleCompatible = 0;
1574       if ( anAvailable.count() == 1 )
1575         soleCompatible = myAvailableHypData[dim][Algo][0];
1576       myDlg->tab( dim )->setAvailableHyps( Algo, anAvailable );
1577       noCompatible = anAvailable.isEmpty();
1578         algoIndex = myAvailableHypData[dim][Algo].indexOf( curAlgo );
1579       if ( !isSubmesh && algoIndex < 0 && soleCompatible && !forward && dim != SMESH::DIM_0D) {
1580         // select the sole compatible algo
1581         algoIndex = myAvailableHypData[dim][Algo].indexOf( soleCompatible );
1582       }
1583       setCurrentHyp( dim, Algo, algoIndex);
1584
1585       // remember current algo
1586       prevAlgo = algoByDim[ dim ] = hypData( dim, Algo, algoIndex );
1587     }
1588     if ( myMaxShapeDim == SMESH::DIM_3D && forward && algoDim == SMESH::DIM_1D ) {
1589         algoDim = SMESH::DIM_3D;
1590         forward = -1;
1591         a3DAlgo = prevAlgo;
1592         continue;
1593     }
1594   }
1595
1596   // set hypotheses corresponding to the found algoritms
1597
1598   _PTR(SObject) pObj = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
1599
1600   for ( int dim = SMESH::DIM_0D; dim <= SMESH::DIM_3D; dim++ )
1601   {
1602     if ( !isAccessibleDim( dim ))
1603       continue;
1604
1605     // get indices of selected hyps
1606     const int nbTypes = nbDlgHypTypes(dim);
1607     std::vector<int> hypIndexByType( nbTypes, -1 );
1608     for ( int dlgType = MainHyp; dlgType < nbTypes; dlgType++ )
1609     {
1610       hypIndexByType[ dlgType ] = currentHyp( dim, dlgType );
1611     }
1612
1613     // update hyps
1614     for ( int dlgType = MainHyp; dlgType < nbTypes; dlgType++ )
1615     {
1616       const int type = Min( dlgType, AddHyp );
1617       myAvailableHypData[ dim ][ type ].clear();
1618       QStringList anAvailable, anExisting;
1619
1620       HypothesisData* curAlgo = algoByDim[ dim ];
1621       int hypIndex = hypIndexByType[ dlgType ];
1622
1623       SMESH::SMESH_Hypothesis_var curHyp;
1624       if ( hypIndex >= 0 && hypIndex < myExistingHyps[ dim ][ type ].count() )
1625         curHyp = myExistingHyps[ dim ][ type ][ hypIndex ].first;
1626
1627       if ( !myToCreate && !curAlgo && !curHyp->_is_nil() ) { // edition, algo not selected
1628         // try to find algo by selected hypothesis in order to keep it selected
1629         bool algoDeselectedByUser = ( theDim < 0 && aDim == dim );
1630         QString curHypType = SMESH::toQStr( curHyp->GetName() );
1631         if ( !algoDeselectedByUser &&
1632              myObjHyps[ dim ][ type ].count() > 0 &&
1633              curHypType == SMESH::toQStr( myObjHyps[ dim ][ type ].first().first->GetName()) )
1634         {
1635           HypothesisData* hypData = SMESH::GetHypothesisData( SMESH::toQStr( curHyp->GetName() ));
1636           for (int i = 0; i < myAvailableHypData[ dim ][ Algo ].count(); ++i) {
1637             curAlgo = myAvailableHypData[ dim ][ Algo ][ i ];
1638             if (curAlgo && hypData && isCompatible(curAlgo, hypData, type))
1639               break;
1640             else
1641               curAlgo = 0;
1642           }
1643         }
1644       }
1645       // get hyps compatible with curAlgo
1646       bool defaulHypAvlbl = false;
1647       if ( curAlgo )
1648       {
1649         // check if a selected hyp is compatible with the curAlgo
1650         if ( !curHyp->_is_nil() ) {
1651           HypothesisData* hypData = SMESH::GetHypothesisData( SMESH::toQStr( curHyp->GetName() ));
1652           if ( !isCompatible( curAlgo, hypData, type ))
1653             curHyp = SMESH::SMESH_Hypothesis::_nil();
1654         }
1655         availableHyps( dim, type, anAvailable, myAvailableHypData[ dim ][ type ], curAlgo);
1656         existingHyps( dim, type, pObj, anExisting, myExistingHyps[ dim ][ type ], curAlgo);
1657         defaulHypAvlbl = (type == MainHyp && !curAlgo->IsAuxOrNeedHyp );
1658       }
1659       // set list of hypotheses
1660       if ( dlgType <= AddHyp )
1661       {
1662         myDlg->tab( dim )->setAvailableHyps( type, anAvailable );
1663         myDlg->tab( dim )->setExistingHyps( type, anExisting, defaulHypAvlbl );
1664       }
1665       // set current existing hypothesis
1666       if ( !curHyp->_is_nil() && !anExisting.isEmpty() )
1667         hypIndex = this->find( curHyp, myExistingHyps[ dim ][ type ]);
1668       else
1669         hypIndex = -1;
1670       if ( !isSubmesh && myToCreate && hypIndex < 0 && anExisting.count() == 1 ) {
1671         // none is yet selected => select the sole existing if it is not optional
1672         CORBA::String_var hypTypeName = myExistingHyps[ dim ][ type ].first().first->GetName();
1673         bool isOptional = true;
1674         if ( algoByDim[ dim ] &&
1675              SMESH::IsAvailableHypothesis( algoByDim[ dim ], hypTypeName.in(), isOptional ) &&
1676              !isOptional )
1677           hypIndex = 0;
1678       }
1679       setCurrentHyp( dim, dlgType, hypIndex );
1680     }
1681   }
1682 }
1683
1684 //================================================================================
1685 /*!
1686  * \brief Creates and selects hypothesis of hypotheses set
1687  * \param theSetName - The name of hypotheses set
1688  */
1689 //================================================================================
1690 void SMESHGUI_MeshOp::onHypoSet( const QString& theSetName )
1691 {
1692   myHypoSet = SMESH::GetHypothesesSet(theSetName);
1693   if (!myHypoSet)
1694     return;
1695
1696   // clear all hyps
1697   for (int dim = SMESH::DIM_0D; dim <= SMESH::DIM_3D; dim++) {
1698     setCurrentHyp(dim, Algo, -1);
1699     setCurrentHyp(dim, AddHyp, -1);
1700     setCurrentHyp(dim, MainHyp, -1);
1701   }
1702
1703   myHypoSet->init(true); //algorithms
1704   processSet();
1705   myHypoSet->init(false); //hypotheses
1706   processSet();
1707   myHypoSet = 0;
1708 }
1709
1710 //================================================================================
1711 /*!
1712  * \brief One step of hypothesis/algorithm list creation
1713  *
1714  * Creates a hypothesis or an algorithm for current item of internal list of names myHypoSet
1715  */
1716 //================================================================================
1717 void SMESHGUI_MeshOp::processSet()
1718 {
1719   myHypoSet->next();
1720   if( !myHypoSet->more() )
1721     return;
1722
1723   bool isAlgo = myHypoSet->isAlgo();
1724   QString aHypoTypeName = myHypoSet->current();
1725   HypothesisData* aHypData = SMESH::GetHypothesisData(aHypoTypeName);
1726   if (!aHypData)
1727   {
1728     processSet();
1729     return;
1730   }
1731
1732   int aDim = aHypData->Dim[0];
1733   // create or/and set
1734   if (isAlgo)
1735   {
1736     int index = myAvailableHypData[aDim][Algo].indexOf( aHypData );
1737     if ( index < 0 )
1738     {
1739       QStringList anAvailable;
1740       availableHyps( aDim, Algo, anAvailable, myAvailableHypData[aDim][Algo] );
1741       myDlg->tab( aDim )->setAvailableHyps( Algo, anAvailable );
1742       index = myAvailableHypData[aDim][Algo].indexOf( aHypData );
1743     }
1744     setCurrentHyp( aDim, Algo, index );
1745     onAlgoSelected( index, aDim );
1746     processSet();
1747   }
1748   else
1749   {
1750     bool mainHyp = true;
1751     QStringList anAvailable;
1752     availableHyps( aDim, MainHyp, anAvailable, myAvailableHypData[aDim][MainHyp] );
1753     myDlg->tab( aDim )->setAvailableHyps( MainHyp, anAvailable );
1754     int index = myAvailableHypData[aDim][MainHyp].indexOf( aHypData );
1755     if ( index < 0 )
1756     {
1757       mainHyp = false;
1758       index = myAvailableHypData[aDim][AddHyp].indexOf( aHypData );
1759     }
1760     if (index >= 0)
1761       createHypothesis(aDim, mainHyp ? MainHyp : AddHyp, aHypoTypeName);
1762     else
1763       processSet();
1764   }
1765 }
1766
1767 //================================================================================
1768 /*!
1769  * \brief Creates mesh
1770   * \param theMess - Output parameter intended for returning error message
1771   * \param theEntryList - List of entries of published objects
1772   * \retval bool  - TRUE if mesh is created, FALSE otherwise
1773  *
1774  * Creates mesh
1775  */
1776 //================================================================================
1777 bool SMESHGUI_MeshOp::createMesh( QString& theMess, QStringList& theEntryList )
1778 {
1779   theMess = "";
1780
1781   QStringList aList;
1782   myDlg->selectedObject( SMESHGUI_MeshDlg::Geom, aList );
1783   if ( aList.isEmpty() )
1784   {
1785     SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1786     if ( aSMESHGen->_is_nil() )
1787       return false;
1788
1789     SMESH::SMESH_Mesh_var aMeshVar= aSMESHGen->CreateEmptyMesh();
1790     if ( aMeshVar->_is_nil() )
1791       return false;
1792
1793     _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar.in() );
1794     if ( aMeshSO ) {
1795       SMESH::SetName( aMeshSO, myDlg->objectText( SMESHGUI_MeshDlg::Obj ) );
1796       theEntryList.append( aMeshSO->GetID().c_str() );
1797     }
1798     return true;
1799   }
1800   QString namePrefix;
1801   if ( aList.count() > 1 )
1802   {
1803     namePrefix = myDlg->objectText( SMESHGUI_MeshDlg::Obj );
1804     int i = namePrefix.length() - 1;
1805     while ( i > 0 && namePrefix[i].isDigit() )
1806       --i;
1807     if ( i < namePrefix.length() - 1 )
1808       namePrefix.chop( namePrefix.length() - 1 - i );
1809     else
1810       namePrefix += "_";
1811   }
1812   QStringList::Iterator it = aList.begin();
1813   for ( int i = 0; it!=aList.end(); it++, ++i )
1814   {
1815     QString aGeomEntry = *it;
1816     _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
1817     GEOM::GEOM_Object_var aGeomVar =
1818       GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1819
1820     SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1821     if ( aSMESHGen->_is_nil() )
1822       return false;
1823
1824     SUIT_OverrideCursor aWaitCursor;
1825
1826     // create mesh
1827     SMESH::SMESH_Mesh_var aMeshVar = aSMESHGen->CreateMesh( aGeomVar );
1828     if ( aMeshVar->_is_nil() )
1829       return false;
1830     _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar.in() );
1831     if ( aMeshSO ) {
1832       theEntryList.append( aMeshSO->GetID().c_str() );
1833       if ( i > 0 ) setDefaultName( namePrefix );
1834       SMESH::SetName( aMeshSO, myDlg->objectText( SMESHGUI_MeshDlg::Obj ) );
1835     }
1836
1837     for ( int aDim = SMESH::DIM_0D; aDim <= SMESH::DIM_3D; aDim++ )
1838     {
1839       if ( !isAccessibleDim( aDim )) continue;
1840
1841       // assign hypotheses
1842       for ( int dlgType = MainHyp; dlgType < nbDlgHypTypes(aDim); dlgType++ )
1843       {
1844         const int aHypIndex = currentHyp( aDim, dlgType );
1845         const int  aHypType = Min( dlgType, AddHyp );
1846         if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() )
1847         {
1848           SMESH::SMESH_Hypothesis_var aHypVar =
1849             myExistingHyps[ aDim ][ aHypType ][ aHypIndex ].first;
1850           if ( !aHypVar->_is_nil() )
1851             SMESH::AddHypothesisOnMesh( aMeshVar, aHypVar );
1852         }
1853       }
1854       // find or create algorithm
1855       SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
1856       if ( !anAlgoVar->_is_nil() )
1857         SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
1858     }
1859   }
1860   return true;
1861 }
1862
1863 //================================================================================
1864 /*!
1865  * \brief Creates sub-mesh
1866   * \param theMess - Output parameter intended for returning error message
1867   * \param theEntryList - List of entries of published objects
1868   * \retval bool  - TRUE if sub-mesh is created, FALSE otherwise
1869  *
1870  * Creates sub-mesh
1871  */
1872 //================================================================================
1873 bool SMESHGUI_MeshOp::createSubMesh( QString& theMess, QStringList& theEntryList )
1874 {
1875   theMess = "";
1876
1877   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1878   if ( aSMESHGen->_is_nil() )
1879     return false;
1880
1881   // get mesh object
1882   QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
1883   _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() );
1884   SMESH::SMESH_Mesh_var aMeshVar =
1885     SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
1886   if (aMeshVar->_is_nil())
1887     return false;
1888
1889   // GEOM shape of the main mesh
1890   GEOM::GEOM_Object_var mainGeom = aMeshVar->GetShapeToMesh();
1891
1892   // Name for the new sub-mesh
1893   QString aName = myDlg->objectText(SMESHGUI_MeshDlg::Obj);
1894
1895   // get geom object
1896   GEOM::GEOM_Object_var aGeomVar;
1897   QStringList aGEOMs;
1898   myDlg->selectedObject(SMESHGUI_MeshDlg::Geom, aGEOMs);
1899   if (aGEOMs.count() == 1)
1900   {
1901     //QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
1902     QString aGeomEntry = aGEOMs.first();
1903     _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.toLatin1().data() );
1904     aGeomVar = GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
1905   }
1906   else if (aGEOMs.count() > 1)
1907   {
1908     // create a GEOM group
1909     GEOM::GEOM_Gen_var geomGen = SMESH::GetGEOMGen();
1910     _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
1911     if (!geomGen->_is_nil() && aStudy) {
1912       GEOM::GEOM_IGroupOperations_wrap op =
1913         geomGen->GetIGroupOperations(aStudy->StudyId());
1914       if (!op->_is_nil()) {
1915         // check and add all selected GEOM objects: they must be
1916         // a sub-shapes of the main GEOM and must be of one type
1917         int iSubSh = 0;
1918         TopAbs_ShapeEnum aGroupType = TopAbs_SHAPE;
1919         GEOM::ListOfGO_var aSeq = new GEOM::ListOfGO;
1920         aSeq->length(aGEOMs.count());
1921         QStringList::const_iterator aSubShapesIter = aGEOMs.begin();
1922         for ( ; aSubShapesIter != aGEOMs.end(); aSubShapesIter++, iSubSh++) {
1923           QString aSubGeomEntry = (*aSubShapesIter);
1924           _PTR(SObject) pSubGeom = studyDS()->FindObjectID(aSubGeomEntry.toLatin1().data());
1925           GEOM::GEOM_Object_var aSubGeomVar =
1926             GEOM::GEOM_Object::_narrow(_CAST(SObject,pSubGeom)->GetObject());
1927           TopAbs_ShapeEnum aSubShapeType = (TopAbs_ShapeEnum)aSubGeomVar->GetShapeType();
1928           if (iSubSh == 0) {
1929             aGroupType = aSubShapeType;
1930           } else {
1931             if (aSubShapeType != aGroupType)
1932               aGroupType = TopAbs_SHAPE;
1933           }
1934           aSeq[iSubSh] = aSubGeomVar;
1935         }
1936         // create a group
1937         GEOM::GEOM_Object_wrap aGroupVar = op->CreateGroup(mainGeom, aGroupType);
1938         op->UnionList(aGroupVar, aSeq);
1939
1940         if (op->IsDone())
1941         {
1942           aGeomVar = GEOM::GEOM_Object::_duplicate( aGroupVar.in() );
1943
1944           // publish the GEOM group in study
1945           QString aNewGeomGroupName ("Auto_group_for_");
1946           aNewGeomGroupName += aName;
1947           SALOMEDS::Study_var aStudyVar = _CAST(Study, aStudy)->GetStudy();
1948           SALOMEDS::SObject_wrap aNewGroupSO =
1949             geomGen->AddInStudy( aStudyVar, aGeomVar,
1950                                  aNewGeomGroupName.toLatin1().data(), mainGeom);
1951         }
1952       }
1953     }
1954   }
1955   else {
1956   }
1957   if (aGeomVar->_is_nil())
1958     return false;
1959
1960   SUIT_OverrideCursor aWaitCursor;
1961
1962   // create sub-mesh
1963   SMESH::SMESH_subMesh_var aSubMeshVar = aMeshVar->GetSubMesh( aGeomVar, aName.toLatin1().data() );
1964   _PTR(SObject) aSubMeshSO = SMESH::FindSObject( aSubMeshVar.in() );
1965   if ( aSubMeshSO ) {
1966     SMESH::SetName( aSubMeshSO, aName.toLatin1().data() );
1967     theEntryList.append( aSubMeshSO->GetID().c_str() );
1968   }
1969
1970   for ( int aDim = SMESH::DIM_0D; aDim <= SMESH::DIM_3D; aDim++ )
1971   {
1972     if ( !isAccessibleDim( aDim )) continue;
1973
1974     // find or create algorithm
1975     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
1976     if ( !anAlgoVar->_is_nil() )
1977       SMESH::AddHypothesisOnSubMesh( aSubMeshVar, anAlgoVar );
1978     // assign hypotheses
1979     for ( int dlgType = MainHyp; dlgType < nbDlgHypTypes(aDim); dlgType++ )
1980     {
1981       const int aHypIndex = currentHyp( aDim, dlgType );
1982       const int  aHypType = Min( dlgType, AddHyp );
1983       if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() )
1984       {
1985         SMESH::SMESH_Hypothesis_var aHypVar =
1986           myExistingHyps[ aDim ][ aHypType ][ aHypIndex ].first;
1987         if ( !aHypVar->_is_nil() )
1988           SMESH::AddHypothesisOnSubMesh( aSubMeshVar, aHypVar );
1989       }
1990     }
1991   }
1992
1993   // deselect geometry: next submesh should be created on other sub-shape
1994   myDlg->clearSelection( SMESHGUI_MeshDlg::Geom );
1995   selectObject( _PTR(SObject)() );
1996   selectionDone();
1997
1998   checkSubMeshConcurrency( aMeshVar, aSubMeshVar, /*askUser=*/true );
1999
2000   return true;
2001 }
2002
2003 //================================================================================
2004 /*!
2005  * \brief Gets current hypothesis or algorithms
2006   * \param theDim - dimension of hypothesis or algorithm
2007   * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
2008   * \retval int - current hypothesis or algorithms
2009  *
2010  * Gets current hypothesis or algorithms
2011  */
2012 //================================================================================
2013 int SMESHGUI_MeshOp::currentHyp( const int theDim, const int theHypType ) const
2014 {
2015   return myDlg->tab( theDim )->currentHyp( theHypType ) - 1;
2016 }
2017
2018 //================================================================================
2019 /*!
2020  * \brief Checks if a hypothesis is selected
2021  */
2022 //================================================================================
2023
2024 bool SMESHGUI_MeshOp::isSelectedHyp( int theDim, int theHypType, int theIndex) const
2025 {
2026   if ( theHypType < AddHyp ) // only one hyp can be selected
2027     return currentHyp( theDim, theHypType ) == theIndex;
2028
2029   for ( int dlgHypType = AddHyp; dlgHypType < nbDlgHypTypes( theDim ); ++dlgHypType )
2030     if ( currentHyp( theDim, dlgHypType ) == theIndex )
2031       return true;
2032
2033   return false;
2034 }
2035
2036 //================================================================================
2037 /*!
2038  * \brief Returns nb of HypType's taking into account possible several
2039  *        selected additional hypotheses which are coded as additional HypType's.
2040  */
2041 //================================================================================
2042
2043 int SMESHGUI_MeshOp::nbDlgHypTypes( const int dim ) const
2044 {
2045   return NbHypTypes + myDlg->tab( dim )->nbAddHypTypes();
2046 }
2047
2048 //================================================================================
2049 /*!
2050  * \brief Returns true if hypotheses of given dim can be assigned
2051   * \param theDim - hypotheses dimension
2052   * \retval bool - result
2053  */
2054 //================================================================================
2055 bool SMESHGUI_MeshOp::isAccessibleDim( const int theDim ) const
2056 {
2057   return myDlg->isTabEnabled( theDim );
2058 }
2059
2060 //================================================================================
2061 /*!
2062  * \brief Sets current hypothesis or algorithms
2063   * \param theDim - dimension of hypothesis or algorithm
2064   * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
2065   * \param theIndex - Index of hypothesis
2066  *
2067  * Gets current hypothesis or algorithms
2068  */
2069 //================================================================================
2070 void SMESHGUI_MeshOp::setCurrentHyp( const int theDim,
2071                                      const int theHypType,
2072                                      const int theIndex )
2073 {
2074   myIgnoreAlgoSelection = true;
2075   myDlg->tab( theDim )->setCurrentHyp( theHypType, theIndex + 1 );
2076   myIgnoreAlgoSelection = false;
2077 }
2078
2079 //================================================================================
2080 /*!
2081  * \brief Generates default and sets mesh/submesh name
2082  *
2083  * Generates and sets default mesh/submesh name(Mesh_1, Mesh_2, etc.)
2084  */
2085 //================================================================================
2086 void SMESHGUI_MeshOp::setDefaultName( const QString& thePrefix ) const
2087 {
2088   QString aResName;
2089
2090   _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
2091   int i = 1;
2092
2093   QString aPrefix = thePrefix;
2094   if ( aPrefix.isEmpty() )
2095     aPrefix = tr( myIsMesh ? "SMESH_OBJECT_MESH" : "SMESH_SUBMESH" ) + "_";
2096
2097   _PTR(SObject) anObj;
2098   do
2099   {
2100     aResName = aPrefix + QString::number( i++ );
2101     anObj = aStudy->FindObject( aResName.toLatin1().data() );
2102   }
2103   while ( anObj );
2104
2105   QLineEdit* aControl = ( QLineEdit* )myDlg->objectWg(
2106     SMESHGUI_MeshDlg::Obj, SMESHGUI_MeshDlg::Control );
2107   aControl->setText( aResName );
2108 }
2109
2110 //================================================================================
2111 /*!
2112  * \brief Gets algorithm or creates it if necessary
2113   * \param theDim - specifies dimension of returned hypotheses/algorifms
2114   * \retval SMESH::SMESH_Hypothesis_var - algorithm
2115  *
2116  * Gets algorithm or creates it if necessary
2117  */
2118 //================================================================================
2119 SMESH::SMESH_Hypothesis_var SMESHGUI_MeshOp::getAlgo( const int theDim )
2120 {
2121   SMESH::SMESH_Hypothesis_var anAlgoVar;
2122
2123   // get type of the selected algo
2124   int aHypIndex = currentHyp( theDim, Algo );
2125   THypDataList& dataList = myAvailableHypData[ theDim ][ Algo ];
2126   if ( aHypIndex < 0 || aHypIndex >= dataList.count())
2127     return anAlgoVar;
2128   QString aHypName = dataList[ aHypIndex ]->TypeName;
2129
2130   // get existing algoritms
2131   _PTR(SObject) pObj = SMESH::GetActiveStudyDocument()->FindComponent("SMESH");
2132   QStringList tmp;
2133   existingHyps( theDim, Algo, pObj, tmp, myExistingHyps[ theDim ][ Algo ]);
2134
2135   // look for an existing algo of such a type
2136   THypList& aHypVarList = myExistingHyps[ theDim ][ Algo ];
2137   THypList::iterator anIter = aHypVarList.begin();
2138   for ( ; anIter != aHypVarList.end(); anIter++)
2139   {
2140     SMESH::SMESH_Hypothesis_var aHypVar = (*anIter).first;
2141     if ( !aHypVar->_is_nil() && aHypName == SMESH::toQStr( aHypVar->GetName() ))
2142     {
2143       anAlgoVar = aHypVar;
2144       break;
2145     }
2146   }
2147
2148   if (anAlgoVar->_is_nil())
2149   {
2150     HypothesisData* aHypData = SMESH::GetHypothesisData( aHypName );
2151     if (aHypData)
2152     {
2153       QString aClientLibName = aHypData->ClientLibName;
2154       if ( aClientLibName.isEmpty() )
2155       {
2156         // Call hypothesis creation server method (without GUI)
2157         SMESH::SMESH_Hypothesis_var aHyp =
2158           SMESH::CreateHypothesis(aHypName, aHypName, true);
2159         aHyp.out();
2160       }
2161       else
2162       {
2163         // Get hypotheses creator client (GUI)
2164         SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator(aHypName);
2165
2166         // Create algorithm
2167         if (aCreator)
2168           aCreator->create( true, aHypName, myDlg, 0, QString::null );
2169         else {
2170           SMESH::SMESH_Hypothesis_var aHyp =
2171             SMESH::CreateHypothesis(aHypName, aHypName, true);
2172           aHyp.out();
2173         }
2174       }
2175       QStringList tmpList;
2176       _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
2177       existingHyps( theDim, Algo, aFather, tmpList, myExistingHyps[ theDim ][ Algo ] );
2178     }
2179
2180     THypList& aNewHypVarList = myExistingHyps[ theDim ][ Algo ];
2181     for ( anIter = aNewHypVarList.begin(); anIter != aNewHypVarList.end(); ++anIter )
2182     {
2183       SMESH::SMESH_Hypothesis_var aHypVar = (*anIter).first;
2184       if ( !aHypVar->_is_nil() && aHypName == SMESH::toQStr( aHypVar->GetName() ))
2185       {
2186         anAlgoVar = aHypVar;
2187         break;
2188       }
2189     }
2190   }
2191
2192   return anAlgoVar._retn();
2193 }
2194
2195 //================================================================================
2196 /*!
2197  * \brief Reads parameters of an edited mesh/sub-mesh and assigns them to the dialog
2198  *
2199  * Called when mesh is edited only.
2200  */
2201 //================================================================================
2202 void SMESHGUI_MeshOp::readMesh()
2203 {
2204   QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
2205   _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
2206   if ( !pObj )
2207     return;
2208
2209   if (myIsOnGeometry) {
2210     // Get name of mesh if current object is sub-mesh
2211     SMESH::SMESH_subMesh_var aSubMeshVar =
2212       SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
2213     if ( !aSubMeshVar->_is_nil() )
2214     {
2215       SMESH::SMESH_Mesh_var aMeshVar =  aSubMeshVar->GetFather();
2216       if ( !aMeshVar->_is_nil() )
2217       {
2218         _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar );
2219         QString aMeshName = name( aMeshSO );
2220         myDlg->setObjectText( SMESHGUI_MeshDlg::Mesh, aMeshName );
2221       }
2222       myHasConcurrentSubBefore = checkSubMeshConcurrency( aMeshVar, aSubMeshVar );
2223     }
2224
2225     // Get name of geometry object
2226     CORBA::String_var name = SMESH::GetGeomName( pObj );
2227     if ( name.in() )
2228       myDlg->setObjectText( SMESHGUI_MeshDlg::Geom, name.in() );
2229   }
2230
2231   // Get hypotheses and algorithms assigned to the mesh/sub-mesh
2232   QStringList anExisting;
2233   const int lastDim = ( myIsOnGeometry ) ? SMESH::DIM_0D : SMESH::DIM_3D;
2234   bool algoFound = false;
2235   for ( int dim = SMESH::DIM_3D; dim >= lastDim; --dim )
2236   {
2237     // get algorithm
2238     existingHyps( dim, Algo, pObj, anExisting, myObjHyps[ dim ][ Algo ] );
2239     // find algo index among available ones
2240     int aHypIndex = -1;
2241     if ( myObjHyps[ dim ][ Algo ].count() > 0 )
2242     {
2243       SMESH::SMESH_Hypothesis_var aVar = myObjHyps[ dim ][ Algo ].first().first;
2244       HypothesisData* algoData = SMESH::GetHypothesisData( SMESH::toQStr( aVar->GetName() ));
2245       aHypIndex = myAvailableHypData[ dim ][ Algo ].indexOf ( algoData );
2246       //       if ( aHypIndex < 0 && algoData ) {
2247       //         // assigned algo is incompatible with other algorithms
2248       //         myAvailableHypData[ dim ][ Algo ].push_back( algoData );
2249       //         aHypIndex = myAvailableHypData[ dim ][ hypType ].count() - 1;
2250       //       }
2251       algoFound = ( aHypIndex > -1 );
2252     }
2253     setCurrentHyp( dim, Algo, aHypIndex );
2254     // set existing and available hypothesis according to the selected algo
2255     if ( aHypIndex > -1 || !algoFound )
2256       onAlgoSelected( aHypIndex, dim );
2257   }
2258
2259   // get hypotheses
2260   bool hypWithoutAlgo = false;
2261   for ( int dim = SMESH::DIM_3D; dim >= lastDim; --dim )
2262   {
2263     for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
2264     {
2265       // get hypotheses
2266       existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
2267       for ( int i = 0, nb = myObjHyps[ dim ][ hypType ].count(); i < nb; ++i )
2268       {
2269         // find index of required hypothesis among existing ones for this dimension and type
2270         int aHypIndex = find( myObjHyps[ dim ][ hypType ][ i ].first,
2271                               myExistingHyps[ dim ][ hypType ] );
2272         if ( aHypIndex < 0 ) {
2273           // assigned hypothesis is incompatible with the algorithm
2274           if ( currentHyp( dim, Algo ) < 0 )
2275           { // none algo selected; it is edition for sure, of submesh maybe
2276             hypWithoutAlgo = true;
2277             myExistingHyps[ dim ][ hypType ].push_back( myObjHyps[ dim ][ hypType ][ i ] );
2278             anExisting.push_back( myObjHyps[ dim ][ hypType ][ i ].second );
2279             aHypIndex = myExistingHyps[ dim ][ hypType ].count() - 1;
2280             myDlg->tab( dim )->setExistingHyps( hypType, anExisting );
2281           }
2282         }
2283         setCurrentHyp( dim, hypType + i, aHypIndex );
2284
2285         if ( hypType == MainHyp ) break; // only one main hyp allowed
2286       }
2287     }
2288   }
2289   // make available other hyps of same type as one without algo
2290   if ( hypWithoutAlgo )
2291     onAlgoSelected( currentHyp( 0, Algo ), 0 );
2292 }
2293
2294 //================================================================================
2295 /*!
2296  * \brief Gets name of object
2297  * \param theSO - SObject
2298  * \retval QString - name of object
2299  *
2300  * Gets name of object
2301  */
2302 //================================================================================
2303 QString SMESHGUI_MeshOp::name( _PTR(SObject) theSO ) const
2304 {
2305   QString aResName;
2306   if ( theSO )
2307   {
2308     _PTR(GenericAttribute) anAttr;
2309     _PTR(AttributeName)    aNameAttr;
2310     if ( theSO->FindAttribute( anAttr, "AttributeName" ) )
2311     {
2312       aNameAttr = anAttr;
2313       aResName = aNameAttr->Value().c_str();
2314     }
2315   }
2316   return aResName;
2317 }
2318
2319 //================================================================================
2320 /*!
2321  * \brief Finds hypothesis in input list
2322   * \param theHyp - hypothesis to be found
2323   * \param theHypList - input list of hypotheses
2324   * \retval int - index of hypothesis or -1 if it is not found
2325  *
2326  * Finds position of hypothesis in input list
2327  */
2328 //================================================================================
2329 int SMESHGUI_MeshOp::find( const SMESH::SMESH_Hypothesis_var& theHyp,
2330                            const THypList& theHypList ) const
2331 {
2332   int aRes = -1;
2333   if ( !theHyp->_is_nil() )
2334   {
2335     int i = 0;
2336     THypList::const_iterator anIter = theHypList.begin();
2337     for ( ; anIter != theHypList.end(); ++ anIter)
2338     {
2339       if ( theHyp->_is_equivalent( (*anIter).first ) )
2340       {
2341         aRes = i;
2342         break;
2343       }
2344       i++;
2345     }
2346   }
2347   return aRes;
2348 }
2349
2350 //================================================================================
2351 /*!
2352  * \brief Edits mesh or sub-mesh
2353   * \param theMess - Output parameter intended for returning error message
2354   * \retval bool  - TRUE if mesh is edited succesfully, FALSE otherwise
2355  *
2356  * Assigns new name hypotheses and algoriths to the mesh or sub-mesh
2357  */
2358 //================================================================================
2359 bool SMESHGUI_MeshOp::editMeshOrSubMesh( QString& theMess )
2360 {
2361   theMess = "";
2362
2363   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
2364   if ( aSMESHGen->_is_nil() )
2365     return false;
2366
2367   QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
2368   _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.toLatin1().data() );
2369   if ( !pObj )
2370     return false;
2371
2372   SUIT_OverrideCursor aWaitCursor;
2373
2374   // Set new name
2375   QString aName = myDlg->objectText( SMESHGUI_MeshDlg::Obj );
2376   SMESH::SetName( pObj, aName );
2377   int aDim = ( myIsOnGeometry ) ? SMESH::DIM_0D : SMESH::DIM_3D;
2378
2379   // First, remove old algos in order to avoid messages on algorithm hiding
2380   for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
2381   {
2382     if ( isAccessibleDim( dim ) && myObjHyps[ dim ][ Algo ].count() > 0 )
2383     {
2384       SMESH::SMESH_Hypothesis_var anOldAlgo = myObjHyps[ dim ][ Algo ].first().first;
2385       SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( dim );
2386       if ( anAlgoVar->_is_nil() || // no new algo selected or
2387            SMESH::toQStr(anOldAlgo->GetName()) != SMESH::toQStr(anAlgoVar->GetName())) // algo change
2388       {
2389         // remove old algorithm
2390         SMESH::RemoveHypothesisOrAlgorithmOnMesh ( pObj, myObjHyps[ dim ][ Algo ].first().first );
2391         myObjHyps[ dim ][ Algo ].clear();
2392       }
2393     }
2394   }
2395
2396   SALOMEDS_SObject* aSObject = _CAST(SObject, pObj);
2397   CORBA::Object_var anObject = aSObject->GetObject();
2398   SMESH::SMESH_Mesh_var       aMeshVar = SMESH::SMESH_Mesh::_narrow( anObject );
2399   SMESH::SMESH_subMesh_var aSubMeshVar = SMESH::SMESH_subMesh::_narrow( anObject );
2400   bool isMesh = !aMeshVar->_is_nil();
2401   if ( !isMesh && !aSubMeshVar->_is_nil() )
2402     aMeshVar = aSubMeshVar->GetFather();
2403
2404   // Assign new algorithms and hypotheses
2405   for ( int dim = aDim; dim <= SMESH::DIM_3D; dim++ )
2406   {
2407     if ( !isAccessibleDim( dim )) continue;
2408
2409     // find or create algorithm
2410     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( dim );
2411
2412     // assign new algorithm
2413     if ( !anAlgoVar->_is_nil() && // some algo selected and
2414          myObjHyps[ dim ][ Algo ].count() == 0 ) // no algo assigned
2415     {
2416       if ( isMesh )
2417         SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
2418       else if ( !aSubMeshVar->_is_nil() )
2419         SMESH::AddHypothesisOnSubMesh( aSubMeshVar, anAlgoVar );
2420
2421       myObjHyps[ dim ][ Algo ].append( THypItem( anAlgoVar, aName) );
2422     }
2423
2424     // remove deselected hypotheses
2425     for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
2426     {
2427       for ( int i = 0, nb = myObjHyps[ dim ][ hypType ].count(); i < nb; ++i )
2428       {
2429         SMESH::SMESH_Hypothesis_var hyp = myObjHyps[ dim ][ hypType ][ i ].first;
2430         int hypIndex = this->find( hyp, myExistingHyps[ dim ][ hypType ]);
2431         if ( !isSelectedHyp( dim, hypType, hypIndex ) && !hyp->_is_nil() )
2432         {
2433           SMESH::RemoveHypothesisOrAlgorithmOnMesh( pObj, hyp );
2434         }
2435       }
2436     }
2437     // assign newly selected hypotheses
2438     for ( int dlgType = MainHyp; dlgType < nbDlgHypTypes(dim); dlgType++ )
2439     {
2440       const int curIndex = currentHyp( dim, dlgType );
2441       const int  hypType = Min( dlgType, AddHyp );
2442       if ( curIndex >= 0 && curIndex < myExistingHyps[ dim ][ hypType ].count() )
2443       {
2444         SMESH::SMESH_Hypothesis_var hyp = myExistingHyps[ dim ][ hypType ][ curIndex ].first;
2445
2446         bool isAssigned = ( this->find( hyp, myObjHyps[ dim ][ hypType ]) >= 0 );
2447         if ( !isAssigned )
2448         {
2449           if ( isMesh )
2450             SMESH::AddHypothesisOnMesh (aMeshVar, hyp );
2451           else if ( !aSubMeshVar->_is_nil() )
2452             SMESH::AddHypothesisOnSubMesh ( aSubMeshVar, hyp );
2453         }
2454       }
2455       // reread all hypotheses of mesh
2456       QStringList anExisting;
2457       existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
2458     }
2459   }
2460
2461   myHasConcurrentSubBefore =
2462     checkSubMeshConcurrency( aMeshVar, aSubMeshVar, /*askUser=*/!myHasConcurrentSubBefore );
2463
2464   return true;
2465 }
2466
2467 //================================================================================
2468 /*!
2469  * \brief Checks if a concurrent sub-meshes appear as result of sub-mesh
2470  *        creation/edition and, if (askUser) , proposes the uses to set up a desired
2471  *        order of sub-mesh computation.
2472  *        Returns \c true if a sub-mesh concurrency detected.
2473  */
2474 //================================================================================
2475
2476 bool SMESHGUI_MeshOp::checkSubMeshConcurrency(SMESH::SMESH_Mesh_ptr    mesh,
2477                                               SMESH::SMESH_subMesh_ptr submesh,
2478                                               bool                     askUser)
2479 {
2480   if ( CORBA::is_nil( mesh ) || CORBA::is_nil( submesh ))
2481     return false;
2482
2483   bool isNewConcurrent = mesh->IsUnorderedSubMesh( submesh->GetId() );
2484   if ( isNewConcurrent && askUser )
2485   {
2486     int butID = SUIT_MessageBox::warning( myDlg->parentWidget(), tr( "SMESH_WARNING" ),
2487                                           tr("CONCURRENT_SUBMESH_APPEARS"),
2488                                           tr("SMESH_BUT_YES"), tr("SMESH_BUT_NO"));
2489     if ( butID == 0 )
2490     {
2491       _PTR(SObject) meshSO = SMESH::FindSObject( mesh );
2492       LightApp_SelectionMgr* aSelectionMgr = selectionMgr();
2493       if ( meshSO && aSelectionMgr )
2494       {
2495         myDlg->setEnabled( false ); // disactivate selection
2496         selectionMgr()->clearFilters();
2497         selectObject( meshSO );
2498         SMESHGUI::GetSMESHGUI()->OnGUIEvent( SMESHOp::OpMeshOrder ); // MESH_ORDER
2499         qApp->processEvents();
2500
2501         myDlg->setEnabled( true );
2502         int obj = myDlg->getActiveObject();
2503         onActivateObject( obj ); // restore filter
2504         if ( !myToCreate )
2505         {
2506           selectObject( SMESH::FindSObject( submesh ));
2507           selectionDone();
2508         }
2509       }
2510     }
2511   }
2512
2513   return isNewConcurrent;
2514 }
2515
2516 //================================================================================
2517 /*!
2518  * \brief Verifies whether given operator is valid for this one
2519  * \param theOtherOp - other operation
2520  * \return Returns TRUE if the given operator is valid for this one, FALSE otherwise
2521  *
2522  * method redefined from base class verifies whether given operator is valid for
2523  * this one (i.e. can be started "above" this operator). In current implementation method
2524  * retuns false if theOtherOp operation is not intended for deleting objects or mesh
2525  * elements.
2526  */
2527 //================================================================================
2528 bool SMESHGUI_MeshOp::isValid( SUIT_Operation* theOp ) const
2529 {
2530   return SMESHGUI_Operation::isValid( theOp ) && !theOp->inherits( "SMESHGUI_MeshOp" );
2531 }
2532
2533 //================================================================================
2534 /*!
2535  * \brief SLOT. Is called when the user selects a way of geometry selection
2536  * \param theByMesh - true if the user wants to find geometry by mesh element
2537  */
2538 //================================================================================
2539 void SMESHGUI_MeshOp::onGeomSelectionByMesh( bool theByMesh )
2540 {
2541   if ( theByMesh ) {
2542     if ( !myShapeByMeshOp ) {
2543       myShapeByMeshOp = new SMESHGUI_ShapeByMeshOp();
2544       connect(myShapeByMeshOp, SIGNAL(committed(SUIT_Operation*)),
2545               SLOT(onPublishShapeByMeshDlg(SUIT_Operation*)));
2546       connect(myShapeByMeshOp, SIGNAL(aborted(SUIT_Operation*)),
2547               SLOT(onCloseShapeByMeshDlg(SUIT_Operation*)));
2548     }
2549     // set mesh object to SMESHGUI_ShapeByMeshOp and start it
2550     QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
2551     if ( _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.toLatin1().data() )) {
2552       SMESH::SMESH_Mesh_var aMeshVar =
2553         SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
2554       if ( !aMeshVar->_is_nil() ) {
2555         myDlg->hide(); // stop processing selection
2556         myShapeByMeshOp->setModule( getSMESHGUI() );
2557         myShapeByMeshOp->setStudy( 0 ); // it's really necessary
2558         myShapeByMeshOp->SetMesh( aMeshVar );
2559         myShapeByMeshOp->start();
2560       }
2561     }
2562   }
2563 }
2564
2565 //================================================================================
2566 /*!
2567  * \brief SLOT. Is called when Ok is pressed in SMESHGUI_ShapeByMeshDlg
2568  */
2569 //================================================================================
2570 void SMESHGUI_MeshOp::onPublishShapeByMeshDlg(SUIT_Operation* op)
2571 {
2572   if ( myShapeByMeshOp == op ) {
2573     SMESHGUI::GetSMESHGUI()->getApp()->updateObjectBrowser(); //MZN: 24.11.2006  IPAL13980 - Object Browser update added
2574     myDlg->show();
2575     // Select a found geometry object
2576     GEOM::GEOM_Object_var aGeomVar = myShapeByMeshOp->GetShape();
2577     if ( !aGeomVar->_is_nil() )
2578     {
2579       QString ID = SMESH::toQStr( aGeomVar->GetStudyEntry() );
2580       if ( _PTR(SObject) aGeomSO = studyDS()->FindObjectID( ID.toLatin1().data() )) {
2581         selectObject( aGeomSO );
2582         selectionDone();
2583       }
2584     }
2585   }
2586 }
2587
2588 //================================================================================
2589 /*!
2590  * \brief SLOT. Is called when Close is pressed in SMESHGUI_ShapeByMeshDlg
2591  */
2592 //================================================================================
2593 void SMESHGUI_MeshOp::onCloseShapeByMeshDlg(SUIT_Operation* op)
2594 {
2595   if ( myShapeByMeshOp == op && myDlg ) {
2596     myDlg->show();
2597   }
2598 }
2599
2600 //================================================================================
2601 /*!
2602  * \brief Selects a SObject
2603  * \param theSObj - the SObject to select
2604  */
2605 //================================================================================
2606 void SMESHGUI_MeshOp::selectObject( _PTR(SObject) theSObj ) const
2607 {
2608   if ( LightApp_SelectionMgr* sm = selectionMgr() ) {
2609     SALOME_ListIO anIOList;
2610     if ( theSObj ) {
2611       Handle(SALOME_InteractiveObject) anIO = new SALOME_InteractiveObject
2612         ( theSObj->GetID().c_str(), "SMESH", theSObj->GetName().c_str() );
2613       anIOList.Append( anIO );
2614     }
2615     sm->setSelectedObjects( anIOList, false );
2616   }
2617 }
2618 //================================================================================
2619 /*!
2620  * \brief Create available list types of mesh
2621   * \param theTypeMesh - Output list of available types of mesh
2622  */
2623 //================================================================================
2624 void SMESHGUI_MeshOp::createMeshTypeList( QStringList& theTypeMesh)
2625 {
2626   theTypeMesh.clear();
2627   theTypeMesh.append( tr( "MT_ANY" ) );
2628   if ( myMaxShapeDim >= 2 || myMaxShapeDim == -1 )
2629   {
2630     theTypeMesh.append( tr( "MT_TRIANGULAR" ) );
2631     theTypeMesh.append( tr( "MT_QUADRILATERAL" ) );
2632   }
2633   if ( myMaxShapeDim == 3 || myMaxShapeDim == -1 )
2634   {
2635     theTypeMesh.append( tr( "MT_TETRAHEDRAL" ) );
2636     theTypeMesh.append( tr( "MT_HEXAHEDRAL" ) );
2637   }
2638
2639 }
2640 //================================================================================
2641 /*!
2642  * \brief Set available types of mesh
2643   * \param theTypeMesh - List of available types of mesh
2644  */
2645 //================================================================================
2646 void SMESHGUI_MeshOp::setAvailableMeshType( const QStringList& theTypeMesh )
2647 {
2648   myDlg->setAvailableMeshType( theTypeMesh );
2649 }
2650
2651 //================================================================================
2652 /*!
2653  * \brief SLOT. Is called when the user select type of mesh
2654   * \param theTabIndex - Index of current active tab
2655   * \param theIndex - Index of current type of mesh
2656  */
2657 //================================================================================
2658 void SMESHGUI_MeshOp::onAlgoSetByMeshType( const int theTabIndex, const int theIndex)
2659 {
2660   setFilteredAlgoData( theTabIndex, theIndex);
2661 }
2662
2663 //================================================================================
2664 /*!
2665  * \brief Set a filtered list of available algorithms by mesh type
2666   * \param theTabIndex - Index of current active tab
2667   * \param theIndex - Index of current type of mesh
2668  */
2669 //================================================================================
2670 void SMESHGUI_MeshOp::setFilteredAlgoData( const int theTabIndex, const int theIndex)
2671 {
2672   QStringList anAvailableAlgs;
2673   QString anCompareType = currentMeshTypeName( theIndex );
2674   int anCurrentAvailableAlgo = -1;
2675   bool isNone = true;
2676   int aDim = SMESH::DIM_3D;
2677   if ( theIndex == MT_TRIANGULAR || theIndex == MT_QUADRILATERAL)
2678     aDim = SMESH::DIM_2D;
2679   if ( anCompareType == "ANY" )
2680   {
2681     bool isReqDisBound = false;
2682     int aReqDim = SMESH::DIM_3D;
2683     for ( int dim = SMESH::DIM_3D; dim >= SMESH::DIM_2D; dim-- )
2684     {
2685       anCurrentAvailableAlgo = -1;
2686       isNone = currentHyp( dim, Algo ) < 0;
2687       //return current algo in current tab and set new algorithm list
2688       HypothesisData* algoCur;
2689       if ( !isNone && !myAvailableHypData[dim][Algo].empty() ) {
2690         algoCur = myAvailableHypData[dim][Algo].at( currentHyp( dim, Algo ) );
2691       }
2692       HypothesisData* prevAlgo = 0;
2693       HypothesisData* nextAlgo = 0;
2694       if ( dim == SMESH::DIM_2D ) {
2695         prevAlgo = hypData( SMESH::DIM_1D, Algo, currentHyp( SMESH::DIM_1D, Algo ) );
2696         if ( aDim == SMESH::DIM_3D )
2697           nextAlgo = hypData( SMESH::DIM_3D, Algo, currentHyp( SMESH::DIM_3D, Algo ) );
2698       }
2699       // retrieves a list of available algorithms from resources
2700       availableHyps( dim, Algo, anAvailableAlgs, myAvailableHypData[dim][Algo], prevAlgo, nextAlgo, anCompareType);
2701       anCurrentAvailableAlgo = myAvailableHypData[dim][Algo].indexOf( algoCur );
2702       myDlg->tab( dim )->setAvailableHyps( Algo, anAvailableAlgs );
2703       setCurrentHyp( dim, Algo, anCurrentAvailableAlgo );
2704       if ( anCurrentAvailableAlgo > -1 )
2705         isReqDisBound = algoCur->InputTypes.isEmpty();
2706       else if ( dim != SMESH::DIM_3D && currentHyp( SMESH::DIM_3D, Algo ) >= 0 )
2707         isReqDisBound = true;
2708       if ( isReqDisBound ) {
2709         aReqDim = dim;
2710         break;
2711       }
2712     }
2713     if ( !myIsOnGeometry )
2714       for ( int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++ ) {
2715         if ( i < SMESH::DIM_3D ) myDlg->disableTab( i );
2716         else                     myDlg->enableTab( i );
2717       }
2718     else
2719       for ( int i = SMESH::DIM_0D; i <= SMESH::DIM_3D; i++ ) {
2720         if ( i > myMaxShapeDim || ( isReqDisBound && i < aReqDim ) ) myDlg->disableTab( i );
2721         else                                                         myDlg->enableTab( i );
2722       }
2723     myDlg->setCurrentTab( theTabIndex );
2724   }
2725   else
2726   {
2727     HypothesisData* anCurrentAlgo;
2728     bool isReqDisBound = true;
2729     QString anCurrentCompareType = anCompareType;
2730     isNone = currentHyp( aDim, Algo ) < 0;
2731     if ( !isNone && !myAvailableHypData[aDim][Algo].empty() )
2732       isReqDisBound = myAvailableHypData[aDim][Algo].at( currentHyp( aDim, Algo ) )->InputTypes.isEmpty();
2733     for ( int dim = aDim; dim >= SMESH::DIM_2D; dim-- )
2734     {
2735       bool isNoneAlg = currentHyp( dim, Algo ) < 0;
2736       anCurrentAvailableAlgo = -1;
2737       HypothesisData* prevAlgo = 0;
2738       HypothesisData* nextAlgo = 0;
2739       if ( dim == SMESH::DIM_2D ) {
2740         prevAlgo = hypData( SMESH::DIM_1D, Algo, currentHyp( SMESH::DIM_1D, Algo ) );
2741         if ( aDim == SMESH::DIM_3D )
2742           nextAlgo = hypData( SMESH::DIM_3D, Algo, currentHyp( SMESH::DIM_3D, Algo ) );
2743       }
2744       // finding algorithm which is selected
2745       if ( !isNoneAlg ) {
2746         anCurrentAlgo = myAvailableHypData[dim][Algo].at( currentHyp( dim, Algo ) );
2747       }
2748       // retrieves a list of available algorithms from resources
2749       availableHyps( dim, Algo, anAvailableAlgs, myAvailableHypData[dim][Algo], prevAlgo, nextAlgo, anCurrentCompareType );
2750       // finding and adding algorithm depending on the type mesh
2751       anCurrentAvailableAlgo = myAvailableHypData[dim][Algo].indexOf( anCurrentAlgo );
2752       //set new algorithm list and select the current algorithm
2753       myDlg->tab( dim )->setAvailableHyps( Algo, anAvailableAlgs );
2754       anCurrentCompareType = ( anCompareType == "HEXA" || anCompareType == "QUAD" ) ? "QUAD" : "TRIA";
2755       setCurrentHyp( dim, Algo, anCurrentAvailableAlgo );
2756     }
2757
2758     if ( isNone || isReqDisBound ) {
2759       for ( int i = SMESH::DIM_0D; i <= myMaxShapeDim; i++ ) {
2760         if ( aDim != i ) {
2761           myDlg->disableTab( i );
2762         }
2763       }
2764     }
2765     else if ( !isNone ) {
2766       if ( aDim == SMESH::DIM_2D) {
2767         myDlg->disableTab( SMESH::DIM_3D );
2768         setCurrentHyp( SMESH::DIM_3D, Algo, -1);
2769       }
2770       for ( int i = myMaxShapeDim; i > SMESH::DIM_0D; i-- ) {
2771         bool isNoneAlg = currentHyp( i, Algo ) < 0;
2772         if ( !isNoneAlg )
2773           isReqDisBound = myAvailableHypData[i][Algo].at( currentHyp( i, Algo ) )->InputTypes.isEmpty();
2774         else
2775           isReqDisBound = true;
2776         if ( isReqDisBound && isNoneAlg ) {
2777           for (int j = i - 1; j >= SMESH::DIM_0D; j--) {
2778             if ( j < aDim && currentHyp( j+1, Algo ) < 0 ) {
2779               myDlg->disableTab( j );
2780               setCurrentHyp( j , Algo, -1 );
2781             }
2782           }
2783           break;
2784         }
2785         else if ( isNoneAlg ) {
2786           myDlg->disableTab( i );
2787         }
2788       }
2789     }
2790     myDlg->enableTab( aDim );
2791     myDlg->setCurrentTab( aDim );
2792   }
2793   THypDataList anAvailableAlgsData;
2794   QStringList aHypothesesSetsList = SMESH::GetHypothesesSets( aDim );
2795   QStringList aFilteredHypothesesSetsList;
2796   aFilteredHypothesesSetsList.clear();
2797   QStringList::const_iterator inHypoSetName = aHypothesesSetsList.begin();
2798   for ( ; inHypoSetName != aHypothesesSetsList.end(); ++inHypoSetName ) {
2799     HypothesesSet* currentHypoSet = SMESH::GetHypothesesSet( *inHypoSetName );
2800     bool isAvailable = false;
2801     currentHypoSet->init( true );
2802     while ( currentHypoSet->next(), currentHypoSet->more() ) {
2803       isAvailable = false;
2804       if ( HypothesisData* algoDataIn = SMESH::GetHypothesisData( currentHypoSet->current() )) {
2805         for (int i = SMESH::DIM_0D; i <= myMaxShapeDim; i++) {
2806           int anCurrentAvailableAlgo = myAvailableHypData[i][Algo].indexOf( algoDataIn );
2807           if ( anCurrentAvailableAlgo > -1 ) {
2808             isAvailable = true;
2809             break;
2810           }
2811         }
2812         if ( !isAvailable )
2813           break;
2814       }
2815     }
2816     if ( isAvailable )
2817       aFilteredHypothesesSetsList.append( *inHypoSetName );
2818   }
2819   myDlg->setHypoSets( aFilteredHypothesesSetsList );
2820 }
2821
2822 //================================================================================
2823 /*!
2824  * \brief Get current name types of mesh
2825   * \param theIndex - current index types of mesh
2826   * \retval QString - result
2827  */
2828 //================================================================================
2829 QString SMESHGUI_MeshOp::currentMeshTypeName( const int theIndex ) const
2830 {
2831   QString aMeshType = "";
2832   switch ( theIndex ) {
2833   case MT_ANY:
2834     aMeshType = "ANY";
2835     break;
2836   case MT_TRIANGULAR:
2837     aMeshType = "TRIA";
2838     break;
2839   case MT_QUADRILATERAL:
2840     aMeshType = "QUAD";
2841     break;
2842   case MT_TETRAHEDRAL:
2843     aMeshType = "TETRA";
2844     break;
2845   case MT_HEXAHEDRAL:
2846     aMeshType = "HEXA";
2847     break;
2848   default:;
2849   }
2850   return aMeshType;
2851 }
2852