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