Salome HOME
9c5f9bed5bb0811e2bb6c985954ce8842801412d
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MeshOp.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 /**
21 *  SMESH SMESHGUI
22 *
23 *  Copyright (C) 2005  CEA/DEN, EDF R&D
24 *
25 *
26 *
27 *  File   : SMESHGUI_MeshOp.h
28 *  Author : Sergey LITONIN
29 *  Module : SMESHGUI
30 */
31
32 #include "SMESHGUI_MeshOp.h"
33 #include "SMESHGUI_MeshDlg.h"
34 #include "SMESH_TypeFilter.hxx"
35 #include "SMESHGUI.h"
36
37 #include "SMESHGUI_HypothesesUtils.h"
38 #include "SMESHGUI_Hypotheses.h"
39 #include "SMESHGUI_Utils.h"
40 #include "SMESHGUI_GEOMGenUtils.h"
41
42 #include "SMESH_TypeFilter.hxx"
43 #include "SMESH_NumberFilter.hxx"
44
45 #include "GEOM_SelectionFilter.h"
46
47 #include "SalomeApp_Tools.h"
48 #include "SALOMEDSClient_Study.hxx"
49 #include "SALOMEDSClient_AttributeIOR.hxx"
50 #include "SALOMEDSClient_AttributeName.hxx"
51 #include "SALOMEDS_SComponent.hxx"
52 #include "SALOMEDS_SObject.hxx"
53
54
55 #include "LightApp_SelectionMgr.h"
56 #include "LightApp_UpdateFlags.h"
57 #include "SUIT_MessageBox.h"
58 #include "SUIT_Desktop.h"
59 #include "SUIT_OverrideCursor.h"
60
61 #include "GEOMBase.h"
62
63 #include "utilities.h"
64
65 #include <qstringlist.h>
66 #include <qlineedit.h>
67
68 #include <TopoDS_Shape.hxx>
69 #include <TopExp_Explorer.hxx>
70
71 //================================================================================
72 /*!
73  * \brief Constructor
74   * \param theToCreate - if this parameter is true then operation is used for creation,
75   * for editing otherwise
76  *
77  * Initialize operation
78 */
79 //================================================================================
80 SMESHGUI_MeshOp::SMESHGUI_MeshOp( const bool theToCreate, const bool theIsMesh )
81 : SMESHGUI_SelectionOp(),
82   myToCreate( theToCreate ),
83   myIsMesh( theIsMesh ),
84   myDlg( 0 )
85 {
86 }
87
88 //================================================================================
89 /*!
90  * \brief Destructor
91 */
92 //================================================================================
93 SMESHGUI_MeshOp::~SMESHGUI_MeshOp()
94 {
95   if( myDlg )
96     delete myDlg;
97 }
98
99 //================================================================================
100 /*!
101  * \brief Gets dialog of this operation
102   * \retval LightApp_Dialog* - pointer to dialog of this operation
103 */
104 //================================================================================
105 LightApp_Dialog* SMESHGUI_MeshOp::dlg() const
106 {
107   return myDlg;
108 }
109
110 //================================================================================
111 /*!
112  * \brief Creates or edits mesh
113   * \retval bool - TRUE if operation is performed successfully, FALSE otherwise
114  *
115  * Virtual slot redefined from the base class called when "Apply" button is clicked
116  * creates or edits mesh
117  */
118 //================================================================================
119 bool SMESHGUI_MeshOp::onApply()
120 {
121   if( isStudyLocked() )
122     return false;
123
124   QString aMess;
125   if ( !isValid( aMess ) )
126   {
127     if ( aMess != "" )
128       SUIT_MessageBox::warn1( myDlg,
129         tr( "SMESH_WRN_WARNING" ), aMess, tr( "SMESH_BUT_OK" ) );
130     return false;
131   }
132
133   bool aResult = false;
134   aMess = "";
135   try
136   {
137     if ( myToCreate && myIsMesh )
138       aResult = createMesh( aMess );
139     if ( myToCreate && !myIsMesh )
140       aResult = createSubMesh( aMess );
141     else if ( !myToCreate )
142       aResult = editMeshOrSubMesh( aMess );
143     if ( aResult )
144       update( UF_ObjBrowser | UF_Model );
145   }
146   catch ( const SALOME::SALOME_Exception& S_ex )
147   {
148     SalomeApp_Tools::QtCatchCorbaException( S_ex );
149     aResult = false;
150   }
151   catch ( ... )
152   {
153     aResult = false;
154   }
155
156   if ( aResult )
157   {
158     if ( myToCreate )
159       setDefaultName();
160   }
161   else
162   {
163     if ( aMess == "" )
164       aMess = tr( "SMESH_OPERATION_FAILED" );
165     SUIT_MessageBox::warn1( myDlg,
166       tr( "SMESH_ERROR" ), aMess, tr( "SMESH_BUT_OK" ) );
167   }
168
169   return aResult;
170 }
171
172 //================================================================================
173 /*!
174  * \brief Creates dialog if necessary and shows it
175  *
176  * Virtual method redefined from base class called when operation is started creates
177  * dialog if necessary and shows it, activates selection
178  */
179 //================================================================================
180 void SMESHGUI_MeshOp::startOperation()
181 {
182   if( !myDlg )
183   {
184     myDlg = new SMESHGUI_MeshDlg( myToCreate, myIsMesh );
185     for ( int i = SMESH::DIM_1D; i <= SMESH::DIM_3D; i++ )
186     {
187       connect( myDlg->tab( i ), SIGNAL( createHyp( const int, const int ) ),
188               this, SLOT( onCreateHyp( const int, const int) ) );
189       connect( myDlg->tab( i ), SIGNAL( editHyp( const int, const int ) ),
190               this, SLOT( onEditHyp( const int, const int) ) );
191     }
192     connect( myDlg, SIGNAL( hypoSet( const QString& )), SLOT( onHypoSet( const QString& )));
193   }
194   SMESHGUI_SelectionOp::startOperation();
195
196   // iterate through dimensions and get available and existing algoritms and hypotheses,
197   // set them to the dialog
198   int i, j;
199   _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
200   for ( i = SMESH::DIM_1D; i <= SMESH::DIM_3D; i++ )
201   {
202     SMESHGUI_MeshTab* aTab = myDlg->tab( i );
203     QStringList anAvailable, anExisting;
204     for ( j = Algo; j <= AddHyp; j++ )
205     {
206       availableHyps( i, j, anAvailable );
207       existingHyps( i, j, aFather, anExisting, myExistingHyps[ i ][ j ] );
208
209       aTab->setAvailableHyps( j, anAvailable );
210       aTab->setExistingHyps( j, anExisting );
211     }
212   }
213   if ( myToCreate )
214   {
215     setDefaultName();
216     myDlg->activateObject( myIsMesh ? SMESHGUI_MeshDlg::Geom : SMESHGUI_MeshDlg::Mesh );
217   }
218   else
219     myDlg->activateObject( SMESHGUI_MeshDlg::Obj );
220
221   myDlg->setHypoSets( SMESH::GetHypothesesSets() );
222
223   selectionDone();
224
225   myDlg->setCurrentTab( SMESH::DIM_1D );
226   myDlg->show();
227 }
228
229 //================================================================================
230 /*!
231  * \brief Creates selection filter
232   * \param theId - identifier of current selection widget
233   * \retval SUIT_SelectionFilter* - pointer to the created filter or null
234  *
235  * Creates selection filter in accordance with identifier of current selection widget
236  */
237 //================================================================================
238 SUIT_SelectionFilter* SMESHGUI_MeshOp::createFilter( const int theId ) const
239 {
240   if ( theId == SMESHGUI_MeshDlg::Geom )
241   {
242 //     TColStd_MapOfInteger allTypesMap;
243 //     for ( int i = 0; i < 10; i++ )
244 //       allTypesMap.Add( i );
245 //     return new SMESH_NumberFilter( "GEOM", TopAbs_SHAPE, 0, allTypesMap );
246     return new GEOM_SelectionFilter( (SalomeApp_Study*)study(), true );
247   }
248   else if ( theId == SMESHGUI_MeshDlg::Obj && !myToCreate )
249     return new SMESH_TypeFilter( MESHorSUBMESH );
250   else if ( theId == SMESHGUI_MeshDlg::Mesh )
251     return new SMESH_TypeFilter( MESH );
252   else
253     return 0;
254 }
255
256 //================================================================================
257 /*!
258  * \brief Updates dialog's look and feel
259  *
260  * Virtual method redefined from the base class updates dialog's look and feel
261  */
262 //================================================================================
263 void SMESHGUI_MeshOp::selectionDone()
264 {
265   SMESHGUI_SelectionOp::selectionDone();
266
267   if ( !myToCreate )
268   {
269     try
270     {
271       QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
272       _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.latin1() );
273       if ( pObj != 0 )
274       {
275         SMESH::SMESH_subMesh_var aVar =
276           SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
277         myDlg->setObjectShown( SMESHGUI_MeshDlg::Mesh, !aVar->_is_nil() );
278         myDlg->objectWg( SMESHGUI_MeshDlg::Mesh, SMESHGUI_MeshDlg::Btn )->hide();
279         myDlg->updateGeometry();
280         myDlg->adjustSize();
281         readMesh();
282       }
283       else
284         myDlg->reset();
285     }
286     catch ( const SALOME::SALOME_Exception& S_ex )
287     {
288       SalomeApp_Tools::QtCatchCorbaException( S_ex );
289     }
290     catch ( ... )
291     {
292     }
293   }
294
295   // Enable tabs according to shape dimension
296
297   int shapeDim = 3;
298   try
299   {
300     GEOM::GEOM_Object_var aGeomVar;
301     QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
302     _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.latin1() );
303     if ( pGeom ) {
304       aGeomVar = GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
305     }
306     else {
307       QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
308       _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.latin1() );
309       aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
310     }
311     if ( !aGeomVar->_is_nil() ) {
312       shapeDim = 0;
313       switch ( aGeomVar->GetShapeType() ) {
314       case GEOM::SOLID:
315       case GEOM::SHELL:  shapeDim = 3; break;
316       case GEOM::FACE:   shapeDim = 2; break;
317       case GEOM::WIRE:   
318       case GEOM::EDGE:   shapeDim = 1; break;
319       case GEOM::VERTEX: shapeDim = 0; break;
320       default:
321         TopoDS_Shape aShape;
322         if ( GEOMBase::GetShape(aGeomVar, aShape)) {
323           TopExp_Explorer exp( aShape, TopAbs_SHELL );
324           if ( exp.More() )
325             shapeDim = 3;
326           else if ( exp.Init( aShape, TopAbs_FACE ), exp.More() )
327             shapeDim = 2;
328           else if ( exp.Init( aShape, TopAbs_EDGE ), exp.More() )
329             shapeDim = 1;
330           else
331             shapeDim = 0;
332         }
333       }
334     }
335   }
336   catch ( const SALOME::SALOME_Exception& S_ex )
337   {
338     SalomeApp_Tools::QtCatchCorbaException( S_ex );
339   }
340   catch ( ... )
341   {
342   }
343   myDlg->setMaxHypoDim( shapeDim );
344 }
345
346 //================================================================================
347 /*!
348  * \brief Verifies validity of input data
349   * \param theMess - Output parameter intended for returning error message
350   * \retval bool  - TRUE if input data is valid, false otherwise
351  *
352  * Verifies validity of input data. This method is called when "Apply" or "OK" button
353  * is pressed before mesh creation or editing.
354  */
355 //================================================================================
356 bool SMESHGUI_MeshOp::isValid( QString& theMess ) const
357 {
358   // Selected object to be  edited
359   if ( !myToCreate && myDlg->selectedObject( SMESHGUI_MeshDlg::Obj ) == "" )
360   {
361     theMess = tr( "THERE_IS_NO_OBJECT_FOR_EDITING" );
362     return false;
363   }
364
365   // Name
366   QString aMeshName = myDlg->objectText( SMESHGUI_MeshDlg::Obj );
367   aMeshName = aMeshName.stripWhiteSpace();
368   if ( aMeshName == "" )
369   {
370     theMess = myIsMesh ? tr( "NAME_OF_MESH_IS_EMPTY" ) : tr( "NAME_OF_SUBMESH_IS_EMPTY" );
371     return false;
372   }
373
374   // Geom
375   if ( myToCreate )
376   {
377     QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
378     if ( aGeomEntry == "" )
379     {
380       theMess = tr( "GEOMETRY_OBJECT_IS_NOT_DEFINED" );
381       return false;
382     }
383     _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.latin1() );
384     if ( !pGeom || GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() )->_is_nil() )
385     {
386       theMess = tr( "GEOMETRY_OBJECT_IS_NULL" );
387       return false;
388     }
389
390     // Mesh
391     if ( !myIsMesh ) // i.e sub-mesh creation,
392     {
393       QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
394       if ( aMeshEntry == "" )
395       {
396         theMess = tr( "MESH_IS_NOT_DEFINED" );
397         return false;
398       }
399       _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.latin1() );
400       if ( !pMesh || SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() )->_is_nil() )
401       {
402         theMess = tr( "MESH_IS_NULL" );
403         return false;
404       }
405     }
406   }
407   return true;
408 }
409
410 //================================================================================
411 /*!
412  * \brief Gets available hypotheses or algorithms
413   * \param theDim - specifies dimension of returned hypotheses/algorifms
414   * \param theHypType - specifies whether algorims or hypotheses or additional ones
415   * are retrieved (possible values are in HypType enumeration)
416   * \param theHyps - Output list of hypotheses' names
417  *
418  * Gets available hypotheses or algorithm in accordance with input parameters
419  */
420 //================================================================================
421 void SMESHGUI_MeshOp::availableHyps( const int theDim,
422                                      const int theHypType,
423                                      QStringList& theHyps ) const
424 {
425   theHyps.clear();
426   QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses(
427     theHypType == Algo , theDim, theHypType == AddHyp );
428   QStringList::const_iterator anIter;
429   for ( anIter = aHypTypeNameList.begin(); anIter != aHypTypeNameList.end(); ++anIter )
430   {
431     HypothesisData* aData = SMESH::GetHypothesisData( *anIter );
432     theHyps.append( aData->Label );
433   }
434 }
435
436 //================================================================================
437 /*!
438  * \brief Gets existing hypotheses or algorithms
439   * \param theDim - specifies dimension of returned hypotheses/algorifms
440   * \param theHypType - specifies whether algorims or hypotheses or additional ones
441   * are retrieved (possible values are in HypType enumeration)
442   * \param theFather - start object for finding ( may be component, mesh, or sub-mesh )
443   * \param theHyps - output list of names.
444   * \param theHypVars - output list of variables.
445  *
446  * Gets existing (i.e. already created) hypotheses or algorithm in accordance with
447  * input parameters
448  */
449 //================================================================================
450 void SMESHGUI_MeshOp::existingHyps( const int theDim,
451                                     const int theHypType,
452                                     _PTR(SObject) theFather,
453                                     QStringList& theHyps,
454                                     QValueList<SMESH::SMESH_Hypothesis_var>& theHypVars )
455 {
456   // Clear hypoheses list
457   theHyps.clear();
458   theHypVars.clear();
459
460   if ( !theFather )
461     return;
462
463   _PTR(SObject)          aHypRoot;
464   _PTR(GenericAttribute) anAttr;
465   _PTR(AttributeName)    aName;
466   _PTR(AttributeIOR)     anIOR;
467
468   bool isMesh = !_CAST( SComponent, theFather );
469   int aPart = -1;
470   if ( isMesh )
471     aPart = theHypType == Algo ? 3 : 2;
472   else
473     aPart = theHypType == Algo ? 2 : 1;
474
475   if ( theFather->FindSubObject( aPart, aHypRoot ) )
476   {
477     _PTR(ChildIterator) anIter =
478       SMESH::GetActiveStudyDocument()->NewChildIterator( aHypRoot );
479     for (; anIter->More(); anIter->Next() )
480     {
481       _PTR(SObject) anObj = anIter->Value();
482       if ( isMesh ) // i.e. mesh or submesh
483       {
484         _PTR(SObject) aRefObj;
485         if ( anObj->ReferencedObject( aRefObj ) )
486           anObj = aRefObj;
487         else
488           continue;
489       }
490       if ( anObj->FindAttribute( anAttr, "AttributeName" ) )
491       {
492         aName = anAttr;
493         CORBA::Object_var aVar = _CAST(SObject,anObj)->GetObject();
494         if ( !CORBA::is_nil( aVar ) )
495         {
496           SMESH::SMESH_Hypothesis_var aHypVar = SMESH::SMESH_Hypothesis::_narrow( aVar );
497           if ( !aHypVar->_is_nil() )
498           {
499             QString aHypType( aHypVar->GetName() );
500             HypothesisData* aData = SMESH::GetHypothesisData( aHypType );
501             if ( ( theDim == -1 || aData->Dim.contains( theDim ) ) &&
502                  ( theHypType == AddHyp ) == aData->IsAux )
503             {
504               theHyps.append( aName->Value().c_str() );
505               theHypVars.append( aHypVar );
506             }
507           }
508         }
509       }
510     }
511   }
512 }
513
514 //================================================================================
515 /*!
516  * \brief Calls plugin methods for hypothesis creation
517   * \param theHypType - specifies whether main hypotheses or additional ones
518   * are created
519   * \param theIndex - index of type of hypothesis to be cerated
520  *
521  * Speicfies dimension of hypothesis to be created (using sender() method), specifies
522  * its type and calls plugin methods for hypothesis creation
523  */
524 //================================================================================
525 void SMESHGUI_MeshOp::onCreateHyp( const int theHypType, const int theIndex )
526 {
527   // Speicfies dimension of hypothesis to be created
528   const QObject* aSender = sender();
529   int aDim = -1;
530   for ( int i = SMESH::DIM_1D; i <= SMESH::DIM_3D; i++ )
531     if ( aSender == myDlg->tab( i ) )
532       aDim = i;
533   if ( aDim == -1 )
534     return;
535
536   // Speicfies type of hypothesis to be created
537   QStringList aHypTypeNames = SMESH::GetAvailableHypotheses( false , aDim, theHypType == AddHyp );
538   if ( theIndex < 0 || theIndex >= aHypTypeNames.count() )
539     return;
540
541   QString aHypTypeName = aHypTypeNames[ theIndex ];
542   HypothesisData* aData = SMESH::GetHypothesisData( aHypTypeName.latin1() );
543   if ( aData == 0 )
544     return;
545
546   QString aClientLibName = aData->ClientLibName;
547   QStringList anOldHyps;
548   _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
549   existingHyps( aDim, theHypType, aFather, anOldHyps, myExistingHyps[ aDim ][ theHypType ] );
550
551   if ( aClientLibName == "" )
552   {
553     // Call hypothesis creation server method (without GUI)
554     QString aHypName = aData->Label;
555     SMESH::CreateHypothesis( aHypTypeName, aHypName, false );
556   }
557   else
558   {
559     // Get hypotheses creator client (GUI)
560     SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator( aHypTypeName );
561
562     // Create hypothesis
563     aCreator->CreateHypothesis( false, myDlg );
564   }
565
566   QStringList aNewHyps;
567   aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
568   existingHyps( aDim, theHypType, aFather, aNewHyps, myExistingHyps[ aDim ][ theHypType ] );
569   if ( aNewHyps.count() > anOldHyps.count() )
570   {
571     for ( int i = anOldHyps.count(); i < aNewHyps.count(); i++ )
572       myDlg->tab( aDim )->addHyp( theHypType, aNewHyps[ i ] );
573   }
574 }
575
576 //================================================================================
577 /*!
578  * \brief Calls plugin methods for hypothesis editing
579   * \param theHypType - specifies whether main hypothesis or additional one
580   * is edited
581   * \param theIndex - index of existing hypothesis
582  *
583  * Calls plugin methods for hypothesis editing
584  */
585 //================================================================================
586 void SMESHGUI_MeshOp::onEditHyp( const int theHypType, const int theIndex )
587 {
588   // Speicfies dimension of hypothesis to be created
589   const QObject* aSender = sender();
590   int aDim = -1;
591   for ( int i = SMESH::DIM_1D; i <= SMESH::DIM_3D; i++ )
592     if ( aSender == myDlg->tab( i ) )
593       aDim = i;
594   if ( aDim == -1 )
595     return;
596
597   QValueList<SMESH::SMESH_Hypothesis_var> aList = myExistingHyps[ aDim ][ theHypType ];
598   SMESH::SMESH_Hypothesis_var aHyp = aList[ theIndex - 1 ];
599   if ( aHyp->_is_nil() )
600     return;
601
602   char* aTypeName = aHyp->GetName();
603   SMESHGUI_GenericHypothesisCreator* aCreator = SMESH::GetHypothesisCreator( aTypeName );
604   if ( aCreator )
605     aCreator->EditHypothesis( aHyp );
606 }
607
608 //================================================================================
609 /*!
610  * \brief Creates and selects hypothesis of hypotheses set 
611   * \param theSetName - The name of hypotheses set
612  */
613 //================================================================================
614
615 void SMESHGUI_MeshOp::onHypoSet( const QString& theSetName )
616 {
617   HypothesesSet* aHypoSet = SMESH::GetHypothesesSet( theSetName );
618   if ( !aHypoSet ) return;
619
620   for ( int aHypType = Algo; aHypType < AddHyp; aHypType++ )
621   {
622     bool isAlgo = (aHypType == Algo);
623
624     // clear all hyps
625     for ( int dim = SMESH::DIM_1D; dim <= SMESH::DIM_3D; dim++ )
626       setCurrentHyp( dim, aHypType, -1 );
627
628     // set hyps from the set
629     
630     QStringList* aHypoList = isAlgo ? & aHypoSet->AlgoList : & aHypoSet->HypoList;
631     for ( int i = 0, n = aHypoList->count(); i < n; i++ )
632     {
633       const QString& aHypoTypeName = (*aHypoList)[ i ];
634       HypothesisData* aHypData = SMESH::GetHypothesisData( aHypoTypeName );
635       int aDim = aHypData->Dim[0];
636       // create or/and set
637       int index = -1;
638       if ( isAlgo )
639       {
640         QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses( isAlgo, aDim );
641         index = aHypTypeNameList.findIndex( aHypoTypeName );
642         if ( index < 0 ) continue;
643         setCurrentHyp ( aDim, aHypType, index );
644       }
645       else
646       {
647         // try to find an existing hypo
648         QValueList<SMESH::SMESH_Hypothesis_var> & aList = myExistingHyps[ aDim ][ aHypType ];
649         int iHyp = 0, nbHyp = aList.count();
650         for ( ; iHyp < nbHyp; ++iHyp )
651         {
652           SMESH::SMESH_Hypothesis_var aHyp = aList[ iHyp ];
653           if ( !aHyp->_is_nil() && aHypoTypeName == aHyp->GetName() ) {
654             index = iHyp;
655             break;
656           }
657         }
658         if ( index >= 0 ) // found
659         {
660           setCurrentHyp ( aDim, aHypType, index );
661         }
662         else
663         {
664           // silently create a hypothesis
665           SMESH::CreateHypothesis( aHypoTypeName, aHypData->Label, isAlgo );
666           QStringList aNewHyps;
667           _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
668           existingHyps( aDim, aHypType, aFather, aNewHyps, aList );
669           if ( aList.count() > nbHyp )
670           {
671             for ( int i = nbHyp; i < aNewHyps.count(); i++ )
672               myDlg->tab( aDim )->addHyp( aHypType, aNewHyps[ i ] );
673           }
674         }
675       }
676     } // loop on hypos in the set
677   } // loop on algo/hypo
678 }
679
680 //================================================================================
681 /*!
682  * \brief Creates mesh
683   * \param theMess - Output parameter intended for returning error message
684   * \retval bool  - TRUE if mesh is created, FALSE otherwise
685  *
686  * Creates mesh
687  */
688 //================================================================================
689 bool SMESHGUI_MeshOp::createMesh( QString& theMess )
690 {
691   theMess = "";
692
693   QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
694   _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.latin1() );
695   GEOM::GEOM_Object_var aGeomVar =
696     GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
697
698   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
699   if ( aSMESHGen->_is_nil() )
700     return false;
701
702   SUIT_OverrideCursor aWaitCursor;
703
704   // create mesh
705   SMESH::SMESH_Mesh_var aMeshVar = aSMESHGen->CreateMesh( aGeomVar );
706   if ( aMeshVar->_is_nil() )
707     return false;
708   _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar.in() );
709   if ( aMeshSO )
710     SMESH::SetName( aMeshSO, myDlg->objectText( SMESHGUI_MeshDlg::Obj ).latin1() );
711
712   for ( int aDim = SMESH::DIM_1D; aDim <= SMESH::DIM_3D; aDim++ )
713   {
714     if ( !isAccessibleDim( aDim )) continue;
715
716     // assign hypotheses
717     for ( int aHypType = MainHyp; aHypType <= AddHyp; aHypType++ )
718     {
719       int aHypIndex = currentHyp( aDim, aHypType );
720       if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() )
721       {
722         SMESH::SMESH_Hypothesis_var aHypVar = myExistingHyps[ aDim ][ aHypType ][ aHypIndex ];
723         if ( !aHypVar->_is_nil() )
724           SMESH::AddHypothesisOnMesh( aMeshVar, aHypVar );
725       }
726     }
727     // find or create algorithm
728     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
729     if ( !anAlgoVar->_is_nil() )
730       SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
731   }
732   return true;
733 }
734
735 //================================================================================
736 /*!
737  * \brief Creates sub-mesh
738   * \param theMess - Output parameter intended for returning error message
739   * \retval bool  - TRUE if sub-mesh is created, FALSE otherwise
740  *
741  * Creates sub-mesh
742  */
743 //================================================================================
744 bool SMESHGUI_MeshOp::createSubMesh( QString& theMess )
745 {
746   theMess = "";
747
748   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
749   if ( aSMESHGen->_is_nil() )
750     return false;
751
752   // get mesh object
753   QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
754   _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.latin1() );
755   SMESH::SMESH_Mesh_var aMeshVar =
756     SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
757
758   // get geom object
759   QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
760   _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.latin1() );
761   GEOM::GEOM_Object_var aGeomVar =
762     GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
763
764   SUIT_OverrideCursor aWaitCursor;
765
766   // create sub-mesh
767   QString aName = myDlg->objectText( SMESHGUI_MeshDlg::Obj );
768   SMESH::SMESH_subMesh_var aSubMeshVar = aMeshVar->GetSubMesh( aGeomVar, aName.latin1() );
769
770   for ( int aDim = SMESH::DIM_1D; aDim <= SMESH::DIM_3D; aDim++ )
771   {
772     if ( !isAccessibleDim( aDim )) continue;
773
774     // find or create algorithm
775     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
776     if ( !anAlgoVar->_is_nil() )
777       SMESH::AddHypothesisOnSubMesh( aSubMeshVar, anAlgoVar );
778     // assign hypotheses
779     for ( int aHypType = MainHyp; aHypType <= AddHyp; aHypType++ )
780     {
781       int aHypIndex = currentHyp( aDim, aHypType );
782       if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() )
783       {
784         SMESH::SMESH_Hypothesis_var aHypVar =
785           myExistingHyps[ aDim ][ aHypType ][ aHypIndex ];
786         if ( !aHypVar->_is_nil() )
787           SMESH::AddHypothesisOnSubMesh( aSubMeshVar, aHypVar );
788       }
789     }
790   }
791   return true;
792 }
793
794 //================================================================================
795 /*!
796  * \brief Gets current hypothesis or algorithms
797   * \param theDim - dimension of hypothesis or algorithm
798   * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
799   * \retval int - current hypothesis or algorithms
800  *
801  * Gets current hypothesis or algorithms
802  */
803 //================================================================================
804 int SMESHGUI_MeshOp::currentHyp( const int theDim, const int theHypType ) const
805 {
806   return myDlg->tab( theDim )->currentHyp( theHypType ) - 1;
807 }
808
809 //================================================================================
810 /*!
811  * \brief Returns true if hypotheses of given dim can be assigned
812   * \param theDim - hypotheses dimension
813   * \retval bool - result
814  */
815 //================================================================================
816 bool SMESHGUI_MeshOp::isAccessibleDim( const int theDim) const
817 {
818   return myDlg->tab( theDim )->isEnabled();
819 }
820
821 //================================================================================
822 /*!
823  * \brief Sets current hypothesis or algorithms
824   * \param theDim - dimension of hypothesis or algorithm
825   * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
826   * \param theIndex - Index of hypothesis
827  *
828  * Gets current hypothesis or algorithms
829  */
830 //================================================================================
831 void SMESHGUI_MeshOp::setCurrentHyp( const int theDim,
832                                      const int theHypType,
833                                      const int theIndex )
834 {
835   myDlg->tab( theDim )->setCurrentHyp( theHypType, theIndex + 1 );
836 }
837
838 //================================================================================
839 /*!
840  * \brief Generates default and sets mesh/submesh name
841  *
842  * Generates and sets default mesh/submesh name(Mesh_1, Mesh_2, etc.)
843  */
844 //================================================================================
845 void SMESHGUI_MeshOp::setDefaultName() const
846 {
847   QString aResName;
848
849   _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
850   int i = 1;
851   QString aPrefix = tr( myIsMesh ? "SMESH_OBJECT_MESH" : "SMESH_SUBMESH" ) + "_";
852   _PTR(SObject) anObj;
853   do
854   {
855     aResName = aPrefix + QString::number( i++ );
856     anObj = aStudy->FindObject( aResName.latin1() );
857   }
858   while ( anObj );
859
860   QLineEdit* aControl = ( QLineEdit* )myDlg->objectWg(
861     SMESHGUI_MeshDlg::Obj, SMESHGUI_MeshDlg::Control );
862   aControl->setText( aResName );
863 }
864
865 //================================================================================
866 /*!
867  * \brief Gets algorithm or creates it if necessary
868   * \param theDim - specifies dimension of returned hypotheses/algorifms
869   * \retval SMESH::SMESH_Hypothesis_var - algorithm
870  *
871  * Gets algorithm or creates it if necessary
872  */
873 //================================================================================
874 SMESH::SMESH_Hypothesis_var SMESHGUI_MeshOp::getAlgo( const int theDim )
875 {
876   SMESH::SMESH_Hypothesis_var anAlgoVar;
877   int aHypIndex = currentHyp( theDim, Algo );
878   QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses( true, theDim, false );
879   if ( aHypIndex < 0 || aHypIndex >= aHypTypeNameList.count() )
880     return anAlgoVar;
881   QString aHypName = aHypTypeNameList[ aHypIndex ];
882   QValueList<SMESH::SMESH_Hypothesis_var>& aHypVarList = myExistingHyps[ theDim ][ Algo ];
883   QValueList<SMESH::SMESH_Hypothesis_var>::iterator anIter;
884   for ( anIter = aHypVarList.begin(); anIter != aHypVarList.end(); anIter++ )
885   {
886     SMESH::SMESH_Hypothesis_var aHypVar = *anIter;
887     if ( !aHypVar->_is_nil() && aHypName == aHypVar->GetName() )
888     {
889       anAlgoVar = aHypVar;
890       break;
891     }
892   }
893   if ( anAlgoVar->_is_nil() )
894   {
895     HypothesisData* aHypData = SMESH::GetHypothesisData( aHypName );
896     if ( aHypData )
897     {
898       QString aClientLibName = aHypData->ClientLibName;
899       if ( aClientLibName == "" )
900         SMESH::CreateHypothesis( aHypName, aHypData->Label, true );
901       else
902       {
903         SMESHGUI_GenericHypothesisCreator* aCreator =
904           SMESH::GetHypothesisCreator( aHypName );
905         if ( aCreator )
906           aCreator->CreateHypothesis( true, myDlg );
907       }
908       QStringList tmpList;
909       _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
910       existingHyps( theDim, Algo, aFather, tmpList, myExistingHyps[ theDim ][ Algo ] );
911     }
912
913     QValueList<SMESH::SMESH_Hypothesis_var>& aNewHypVarList = myExistingHyps[ theDim ][ Algo ];
914     for ( anIter = aNewHypVarList.begin(); anIter != aNewHypVarList.end(); ++anIter )
915     {
916       SMESH::SMESH_Hypothesis_var aHypVar = *anIter;
917       if ( !aHypVar->_is_nil() && aHypName == aHypVar->GetName() )
918       {
919         anAlgoVar = aHypVar;
920         break;
921       }
922     }
923   }
924
925   return anAlgoVar._retn();
926 }
927
928 //================================================================================
929 /*!
930  * \brief Reads parameters of edited mesh and assigns them to the dialog
931  *
932  * Reads parameters of edited mesh and assigns them to the dialog (called when
933  * mesh is edited only)
934  */
935 //================================================================================
936 void SMESHGUI_MeshOp::readMesh()
937 {
938   QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
939   _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.latin1() );
940   if ( !pObj )
941     return;
942
943   // Get name of mesh if current object is sub-mesh
944   SMESH::SMESH_subMesh_var aSubMeshVar =
945       SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
946   if ( !aSubMeshVar->_is_nil() )
947   {
948     SMESH::SMESH_Mesh_var aMeshVar =  aSubMeshVar->GetFather();
949     if ( !aMeshVar->_is_nil() )
950     {
951       _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar );
952       QString aMeshName = name( aMeshSO );
953       myDlg->setObjectText( SMESHGUI_MeshDlg::Mesh, aMeshName );
954     }
955   }
956
957   // Get name of geometry object
958   GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
959   if ( !aGeomVar->_is_nil() )
960   {
961     _PTR(SObject) aGeomSO = studyDS()->FindObjectID( aGeomVar->GetStudyEntry() );
962     QString aShapeName = name( aGeomSO );
963     myDlg->setObjectText( SMESHGUI_MeshDlg::Geom, aShapeName );
964   }
965
966   // Get hypotheses and algorithms assigned to the mesh/sub-mesh
967   for ( int dim = SMESH::DIM_1D; dim <= SMESH::DIM_3D; dim++ )
968   {
969     // get algorithm
970     QStringList anExisting;
971     int aHypIndex = -1;
972     existingHyps( dim, Algo, pObj, anExisting, myObjHyps[ dim ][ Algo ] );
973     if ( myObjHyps[ dim ][ Algo ].count() > 0 )
974     {
975       SMESH::SMESH_Hypothesis_var aVar = myObjHyps[ dim ][ Algo ].first();
976       QString aHypTypeName = aVar->GetName();
977
978       QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses( true , dim, false );
979       for ( int i = 0, n = aHypTypeNameList.count(); i < n; i++ )
980         if ( aHypTypeName == aHypTypeNameList[ i ] )
981         {
982           aHypIndex = i;
983           break;
984         }
985     }
986     setCurrentHyp( dim, Algo, aHypIndex );
987
988     // get hypotheses
989     for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
990     {
991       // get hypotheses
992       existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
993       // find index of requered hypothesis among existing ones for this dimension
994       // and hyp types
995       int aHypIndex = -1;
996       if ( myObjHyps[ dim ][ hypType ].count() > 0 )
997         aHypIndex = find( myObjHyps[ dim ][ hypType ].first(),
998                           myExistingHyps[ dim ][ hypType ] );
999       setCurrentHyp( dim, hypType, aHypIndex );
1000     }
1001   }
1002 }
1003
1004 //================================================================================
1005 /*!
1006  * \brief Gets name of object
1007   * \param theSO - SObject
1008   * \retval QString - name of object
1009  *
1010  * Gets name of object
1011  */
1012 //================================================================================
1013 QString SMESHGUI_MeshOp::name( _PTR(SObject) theSO ) const
1014 {
1015   QString aResName;
1016   if ( theSO )
1017   {
1018     _PTR(GenericAttribute) anAttr;
1019     _PTR(AttributeName)    aNameAttr;
1020     if ( theSO->FindAttribute( anAttr, "AttributeName" ) )
1021     {
1022       aNameAttr = anAttr;
1023       aResName = aNameAttr->Value().c_str();
1024     }
1025   }
1026   return aResName;
1027 }
1028
1029 //================================================================================
1030 /*!
1031  * \brief Finds hypothesis in input list
1032   * \param theHyp - hypothesis to be found
1033   * \param theHypList - input list of hypotheses
1034   * \retval int - index of hypothesis or -1 if it is not found
1035  *
1036  * Finds position of hypothesis in input list
1037  */
1038 //================================================================================
1039 int SMESHGUI_MeshOp::find( const SMESH::SMESH_Hypothesis_var& theHyp,
1040                            const QValueList<SMESH::SMESH_Hypothesis_var>& theHypList ) const
1041 {
1042   int aRes = -1;
1043   if ( !theHyp->_is_nil() )
1044   {
1045     int i = 0;
1046     QValueList<SMESH::SMESH_Hypothesis_var>::const_iterator anIter;
1047     for ( anIter = theHypList.begin(); anIter != theHypList.end(); ++ anIter )
1048     {
1049       if ( theHyp->_is_equivalent( *anIter ) )
1050       {
1051         aRes = i;
1052         break;
1053       }
1054       i++;
1055     }
1056   }
1057   return aRes;
1058 }
1059
1060 //================================================================================
1061 /*!
1062  * \brief Edits mesh or sub-mesh
1063   * \param theMess - Output parameter intended for returning error message
1064   * \retval bool  - TRUE if mesh is edited succesfully, FALSE otherwise
1065  *
1066  * Assigns new name hypotheses and algoriths to the mesh or sub-mesh
1067  */
1068 //================================================================================
1069 bool SMESHGUI_MeshOp::editMeshOrSubMesh( QString& theMess )
1070 {
1071   theMess = "";
1072
1073   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1074   if ( aSMESHGen->_is_nil() )
1075     return false;
1076
1077   QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1078   _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.latin1() );
1079   if ( !pObj )
1080     return false;
1081
1082   SUIT_OverrideCursor aWaitCursor;
1083
1084   // Set new name
1085   SMESH::SetName( pObj, myDlg->objectText( SMESHGUI_MeshDlg::Obj ).latin1() );
1086
1087   // Assign new hypotheses and algorithms
1088   for ( int dim = SMESH::DIM_1D; dim <= SMESH::DIM_3D; dim++ )
1089   {
1090     if ( !isAccessibleDim( dim )) continue;
1091
1092     // find or create algorithm
1093     bool toDelete = false, toAdd = true;
1094     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( dim );
1095     if ( anAlgoVar->_is_nil() ) {
1096       toAdd = false;
1097     }
1098     if ( myObjHyps[ dim ][ Algo ].count() > 0 ) {
1099       SMESH::SMESH_Hypothesis_var anOldAlgo = myObjHyps[ dim ][ Algo ].first();
1100       if ( toAdd ) {
1101         if ( strcmp(anOldAlgo->GetName(), anAlgoVar->GetName()) == 0 ) {
1102           toAdd = false;
1103         } else {
1104           toDelete = true;
1105         }
1106       } else {
1107         toDelete = true;
1108       }
1109     }
1110     // remove old algorithm
1111     if ( toDelete )
1112       SMESH::RemoveHypothesisOrAlgorithmOnMesh
1113         ( pObj, myObjHyps[ dim ][ Algo ].first() );
1114
1115     // assign new algorithm
1116     if ( toAdd ) {
1117       SMESH::SMESH_Mesh_var aMeshVar =
1118         SMESH::SMESH_Mesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1119       bool isMesh = !aMeshVar->_is_nil();
1120       if ( isMesh ) {
1121         SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
1122       } else {
1123         SMESH::SMESH_subMesh_var aVar =
1124           SMESH::SMESH_subMesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1125         if ( !aVar->_is_nil() )
1126           SMESH::AddHypothesisOnSubMesh( aVar, anAlgoVar );
1127       }
1128     }
1129
1130     // assign hypotheses
1131     for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
1132     {
1133       int aNewHypIndex = currentHyp( dim, hypType );
1134       int anOldHypIndex = -1;
1135       if ( myObjHyps[ dim ][ hypType ].count() > 0 )
1136         anOldHypIndex = find( myObjHyps[ dim ][ hypType ].first(),
1137                               myExistingHyps[ dim ][ hypType ] );
1138       if ( aNewHypIndex != anOldHypIndex )
1139       {
1140         // remove old hypotheses
1141         if ( anOldHypIndex >= 0 )
1142           SMESH::RemoveHypothesisOrAlgorithmOnMesh(
1143             pObj, myExistingHyps[ dim ][ hypType ][ anOldHypIndex ] );
1144
1145         // assign new hypotheses
1146         if ( aNewHypIndex != -1 )
1147         {
1148           SMESH::SMESH_Mesh_var aMeshVar =
1149               SMESH::SMESH_Mesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1150           bool isMesh = !aMeshVar->_is_nil();
1151           if ( isMesh )
1152           {
1153             SMESH::AddHypothesisOnMesh(
1154               aMeshVar, myExistingHyps[ dim ][ hypType ][ aNewHypIndex ] );
1155           }
1156           else
1157           {
1158             SMESH::SMESH_subMesh_var aVar =
1159               SMESH::SMESH_subMesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1160             if ( !aVar->_is_nil() )
1161               SMESH::AddHypothesisOnSubMesh(
1162                 aVar, myExistingHyps[ dim ][ hypType ][ aNewHypIndex ] );
1163           }
1164         }
1165         // reread all hypotheses of mesh if necessary
1166         QStringList anExisting;
1167         existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
1168       }
1169     }
1170   }
1171
1172   return true;
1173 }
1174
1175 //================================================================================
1176 /*!
1177  * \brief Verifies whether given operator is valid for this one
1178   * \param theOtherOp - other operation
1179   * \return Returns TRUE if the given operator is valid for this one, FALSE otherwise
1180 *
1181 * method redefined from base class verifies whether given operator is valid for
1182 * this one (i.e. can be started "above" this operator). In current implementation method
1183 * retuns false if theOtherOp operation is not intended for deleting objects or mesh
1184 * elements.
1185 */
1186 //================================================================================
1187 bool SMESHGUI_MeshOp::isValid( SUIT_Operation* theOp ) const
1188 {
1189   return SMESHGUI_Operation::isValid( theOp ) && !theOp->inherits( "SMESHGUI_MeshOp" );
1190 }