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