Salome HOME
PAL10953. Use GUI to create hypothesis from a hypotheses set
[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       if ( !aHypData ) continue;
636       int aDim = aHypData->Dim[0];
637       // create or/and set
638       int index = -1;
639       if ( isAlgo )
640       {
641         QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses( isAlgo, aDim );
642         index = aHypTypeNameList.findIndex( aHypoTypeName );
643         if ( index < 0 ) continue;
644         setCurrentHyp ( aDim, aHypType, index );
645       }
646       else
647       {
648         // try to find an existing hypo
649         QValueList<SMESH::SMESH_Hypothesis_var> & aList = myExistingHyps[ aDim ][ aHypType ];
650         int iHyp = 0, nbHyp = aList.count();
651         for ( ; iHyp < nbHyp; ++iHyp )
652         {
653           SMESH::SMESH_Hypothesis_var aHyp = aList[ iHyp ];
654           if ( !aHyp->_is_nil() && aHypoTypeName == aHyp->GetName() ) {
655             index = iHyp;
656             break;
657           }
658         }
659         if ( index >= 0 ) // found
660         {
661           // select an algorithm
662           setCurrentHyp ( aDim, aHypType, index );
663         }
664         else
665         {
666           // create a hypothesis
667           QString aClientLibName = aHypData->ClientLibName;
668           if ( aClientLibName == "" ) {
669             // Call hypothesis creation server method (without GUI)
670             SMESH::CreateHypothesis( aHypoTypeName, aHypData->Label, isAlgo );
671           }
672           else {
673             // Get hypotheses creator client (GUI)
674             SMESHGUI_GenericHypothesisCreator* aCreator =
675               SMESH::GetHypothesisCreator( aHypoTypeName );
676             aCreator->CreateHypothesis( false, myDlg );
677           }
678           QStringList aNewHyps;
679           _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
680           existingHyps( aDim, aHypType, aFather, aNewHyps, aList );
681           if ( aList.count() > nbHyp )
682           {
683             for ( int i = nbHyp; i < aNewHyps.count(); i++ )
684               myDlg->tab( aDim )->addHyp( aHypType, aNewHyps[ i ] );
685           }
686         }
687       }
688     } // loop on hypos in the set
689   } // loop on algo/hypo
690 }
691
692 //================================================================================
693 /*!
694  * \brief Creates mesh
695   * \param theMess - Output parameter intended for returning error message
696   * \retval bool  - TRUE if mesh is created, FALSE otherwise
697  *
698  * Creates mesh
699  */
700 //================================================================================
701 bool SMESHGUI_MeshOp::createMesh( QString& theMess )
702 {
703   theMess = "";
704
705   QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
706   _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.latin1() );
707   GEOM::GEOM_Object_var aGeomVar =
708     GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
709
710   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
711   if ( aSMESHGen->_is_nil() )
712     return false;
713
714   SUIT_OverrideCursor aWaitCursor;
715
716   // create mesh
717   SMESH::SMESH_Mesh_var aMeshVar = aSMESHGen->CreateMesh( aGeomVar );
718   if ( aMeshVar->_is_nil() )
719     return false;
720   _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar.in() );
721   if ( aMeshSO )
722     SMESH::SetName( aMeshSO, myDlg->objectText( SMESHGUI_MeshDlg::Obj ).latin1() );
723
724   for ( int aDim = SMESH::DIM_1D; aDim <= SMESH::DIM_3D; aDim++ )
725   {
726     if ( !isAccessibleDim( aDim )) continue;
727
728     // assign hypotheses
729     for ( int aHypType = MainHyp; aHypType <= AddHyp; aHypType++ )
730     {
731       int aHypIndex = currentHyp( aDim, aHypType );
732       if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() )
733       {
734         SMESH::SMESH_Hypothesis_var aHypVar = myExistingHyps[ aDim ][ aHypType ][ aHypIndex ];
735         if ( !aHypVar->_is_nil() )
736           SMESH::AddHypothesisOnMesh( aMeshVar, aHypVar );
737       }
738     }
739     // find or create algorithm
740     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
741     if ( !anAlgoVar->_is_nil() )
742       SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
743   }
744   return true;
745 }
746
747 //================================================================================
748 /*!
749  * \brief Creates sub-mesh
750   * \param theMess - Output parameter intended for returning error message
751   * \retval bool  - TRUE if sub-mesh is created, FALSE otherwise
752  *
753  * Creates sub-mesh
754  */
755 //================================================================================
756 bool SMESHGUI_MeshOp::createSubMesh( QString& theMess )
757 {
758   theMess = "";
759
760   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
761   if ( aSMESHGen->_is_nil() )
762     return false;
763
764   // get mesh object
765   QString aMeshEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Mesh );
766   _PTR(SObject) pMesh = studyDS()->FindObjectID( aMeshEntry.latin1() );
767   SMESH::SMESH_Mesh_var aMeshVar =
768     SMESH::SMESH_Mesh::_narrow( _CAST( SObject,pMesh )->GetObject() );
769
770   // get geom object
771   QString aGeomEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Geom );
772   _PTR(SObject) pGeom = studyDS()->FindObjectID( aGeomEntry.latin1() );
773   GEOM::GEOM_Object_var aGeomVar =
774     GEOM::GEOM_Object::_narrow( _CAST( SObject,pGeom )->GetObject() );
775
776   SUIT_OverrideCursor aWaitCursor;
777
778   // create sub-mesh
779   QString aName = myDlg->objectText( SMESHGUI_MeshDlg::Obj );
780   SMESH::SMESH_subMesh_var aSubMeshVar = aMeshVar->GetSubMesh( aGeomVar, aName.latin1() );
781
782   for ( int aDim = SMESH::DIM_1D; aDim <= SMESH::DIM_3D; aDim++ )
783   {
784     if ( !isAccessibleDim( aDim )) continue;
785
786     // find or create algorithm
787     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( aDim );
788     if ( !anAlgoVar->_is_nil() )
789       SMESH::AddHypothesisOnSubMesh( aSubMeshVar, anAlgoVar );
790     // assign hypotheses
791     for ( int aHypType = MainHyp; aHypType <= AddHyp; aHypType++ )
792     {
793       int aHypIndex = currentHyp( aDim, aHypType );
794       if ( aHypIndex >= 0 && aHypIndex < myExistingHyps[ aDim ][ aHypType ].count() )
795       {
796         SMESH::SMESH_Hypothesis_var aHypVar =
797           myExistingHyps[ aDim ][ aHypType ][ aHypIndex ];
798         if ( !aHypVar->_is_nil() )
799           SMESH::AddHypothesisOnSubMesh( aSubMeshVar, aHypVar );
800       }
801     }
802   }
803   return true;
804 }
805
806 //================================================================================
807 /*!
808  * \brief Gets current hypothesis or algorithms
809   * \param theDim - dimension of hypothesis or algorithm
810   * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
811   * \retval int - current hypothesis or algorithms
812  *
813  * Gets current hypothesis or algorithms
814  */
815 //================================================================================
816 int SMESHGUI_MeshOp::currentHyp( const int theDim, const int theHypType ) const
817 {
818   return myDlg->tab( theDim )->currentHyp( theHypType ) - 1;
819 }
820
821 //================================================================================
822 /*!
823  * \brief Returns true if hypotheses of given dim can be assigned
824   * \param theDim - hypotheses dimension
825   * \retval bool - result
826  */
827 //================================================================================
828 bool SMESHGUI_MeshOp::isAccessibleDim( const int theDim) const
829 {
830   return myDlg->tab( theDim )->isEnabled();
831 }
832
833 //================================================================================
834 /*!
835  * \brief Sets current hypothesis or algorithms
836   * \param theDim - dimension of hypothesis or algorithm
837   * \param theHypType - Type of hypothesis (Algo, MainHyp, AddHyp)
838   * \param theIndex - Index of hypothesis
839  *
840  * Gets current hypothesis or algorithms
841  */
842 //================================================================================
843 void SMESHGUI_MeshOp::setCurrentHyp( const int theDim,
844                                      const int theHypType,
845                                      const int theIndex )
846 {
847   myDlg->tab( theDim )->setCurrentHyp( theHypType, theIndex + 1 );
848 }
849
850 //================================================================================
851 /*!
852  * \brief Generates default and sets mesh/submesh name
853  *
854  * Generates and sets default mesh/submesh name(Mesh_1, Mesh_2, etc.)
855  */
856 //================================================================================
857 void SMESHGUI_MeshOp::setDefaultName() const
858 {
859   QString aResName;
860
861   _PTR(Study) aStudy = SMESH::GetActiveStudyDocument();
862   int i = 1;
863   QString aPrefix = tr( myIsMesh ? "SMESH_OBJECT_MESH" : "SMESH_SUBMESH" ) + "_";
864   _PTR(SObject) anObj;
865   do
866   {
867     aResName = aPrefix + QString::number( i++ );
868     anObj = aStudy->FindObject( aResName.latin1() );
869   }
870   while ( anObj );
871
872   QLineEdit* aControl = ( QLineEdit* )myDlg->objectWg(
873     SMESHGUI_MeshDlg::Obj, SMESHGUI_MeshDlg::Control );
874   aControl->setText( aResName );
875 }
876
877 //================================================================================
878 /*!
879  * \brief Gets algorithm or creates it if necessary
880   * \param theDim - specifies dimension of returned hypotheses/algorifms
881   * \retval SMESH::SMESH_Hypothesis_var - algorithm
882  *
883  * Gets algorithm or creates it if necessary
884  */
885 //================================================================================
886 SMESH::SMESH_Hypothesis_var SMESHGUI_MeshOp::getAlgo( const int theDim )
887 {
888   SMESH::SMESH_Hypothesis_var anAlgoVar;
889   int aHypIndex = currentHyp( theDim, Algo );
890   QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses( true, theDim, false );
891   if ( aHypIndex < 0 || aHypIndex >= aHypTypeNameList.count() )
892     return anAlgoVar;
893   QString aHypName = aHypTypeNameList[ aHypIndex ];
894   QValueList<SMESH::SMESH_Hypothesis_var>& aHypVarList = myExistingHyps[ theDim ][ Algo ];
895   QValueList<SMESH::SMESH_Hypothesis_var>::iterator anIter;
896   for ( anIter = aHypVarList.begin(); anIter != aHypVarList.end(); anIter++ )
897   {
898     SMESH::SMESH_Hypothesis_var aHypVar = *anIter;
899     if ( !aHypVar->_is_nil() && aHypName == aHypVar->GetName() )
900     {
901       anAlgoVar = aHypVar;
902       break;
903     }
904   }
905   if ( anAlgoVar->_is_nil() )
906   {
907     HypothesisData* aHypData = SMESH::GetHypothesisData( aHypName );
908     if ( aHypData )
909     {
910       QString aClientLibName = aHypData->ClientLibName;
911       if ( aClientLibName == "" )
912         SMESH::CreateHypothesis( aHypName, aHypData->Label, true );
913       else
914       {
915         SMESHGUI_GenericHypothesisCreator* aCreator =
916           SMESH::GetHypothesisCreator( aHypName );
917         if ( aCreator )
918           aCreator->CreateHypothesis( true, myDlg );
919       }
920       QStringList tmpList;
921       _PTR(SComponent) aFather = SMESH::GetActiveStudyDocument()->FindComponent( "SMESH" );
922       existingHyps( theDim, Algo, aFather, tmpList, myExistingHyps[ theDim ][ Algo ] );
923     }
924
925     QValueList<SMESH::SMESH_Hypothesis_var>& aNewHypVarList = myExistingHyps[ theDim ][ Algo ];
926     for ( anIter = aNewHypVarList.begin(); anIter != aNewHypVarList.end(); ++anIter )
927     {
928       SMESH::SMESH_Hypothesis_var aHypVar = *anIter;
929       if ( !aHypVar->_is_nil() && aHypName == aHypVar->GetName() )
930       {
931         anAlgoVar = aHypVar;
932         break;
933       }
934     }
935   }
936
937   return anAlgoVar._retn();
938 }
939
940 //================================================================================
941 /*!
942  * \brief Reads parameters of edited mesh and assigns them to the dialog
943  *
944  * Reads parameters of edited mesh and assigns them to the dialog (called when
945  * mesh is edited only)
946  */
947 //================================================================================
948 void SMESHGUI_MeshOp::readMesh()
949 {
950   QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
951   _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.latin1() );
952   if ( !pObj )
953     return;
954
955   // Get name of mesh if current object is sub-mesh
956   SMESH::SMESH_subMesh_var aSubMeshVar =
957       SMESH::SMESH_subMesh::_narrow( _CAST( SObject,pObj )->GetObject() );
958   if ( !aSubMeshVar->_is_nil() )
959   {
960     SMESH::SMESH_Mesh_var aMeshVar =  aSubMeshVar->GetFather();
961     if ( !aMeshVar->_is_nil() )
962     {
963       _PTR(SObject) aMeshSO = SMESH::FindSObject( aMeshVar );
964       QString aMeshName = name( aMeshSO );
965       myDlg->setObjectText( SMESHGUI_MeshDlg::Mesh, aMeshName );
966     }
967   }
968
969   // Get name of geometry object
970   GEOM::GEOM_Object_var aGeomVar = SMESH::GetShapeOnMeshOrSubMesh( pObj );
971   if ( !aGeomVar->_is_nil() )
972   {
973     _PTR(SObject) aGeomSO = studyDS()->FindObjectID( aGeomVar->GetStudyEntry() );
974     QString aShapeName = name( aGeomSO );
975     myDlg->setObjectText( SMESHGUI_MeshDlg::Geom, aShapeName );
976   }
977
978   // Get hypotheses and algorithms assigned to the mesh/sub-mesh
979   for ( int dim = SMESH::DIM_1D; dim <= SMESH::DIM_3D; dim++ )
980   {
981     // get algorithm
982     QStringList anExisting;
983     int aHypIndex = -1;
984     existingHyps( dim, Algo, pObj, anExisting, myObjHyps[ dim ][ Algo ] );
985     if ( myObjHyps[ dim ][ Algo ].count() > 0 )
986     {
987       SMESH::SMESH_Hypothesis_var aVar = myObjHyps[ dim ][ Algo ].first();
988       QString aHypTypeName = aVar->GetName();
989
990       QStringList aHypTypeNameList = SMESH::GetAvailableHypotheses( true , dim, false );
991       for ( int i = 0, n = aHypTypeNameList.count(); i < n; i++ )
992         if ( aHypTypeName == aHypTypeNameList[ i ] )
993         {
994           aHypIndex = i;
995           break;
996         }
997     }
998     setCurrentHyp( dim, Algo, aHypIndex );
999
1000     // get hypotheses
1001     for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
1002     {
1003       // get hypotheses
1004       existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
1005       // find index of requered hypothesis among existing ones for this dimension
1006       // and hyp types
1007       int aHypIndex = -1;
1008       if ( myObjHyps[ dim ][ hypType ].count() > 0 )
1009         aHypIndex = find( myObjHyps[ dim ][ hypType ].first(),
1010                           myExistingHyps[ dim ][ hypType ] );
1011       setCurrentHyp( dim, hypType, aHypIndex );
1012     }
1013   }
1014 }
1015
1016 //================================================================================
1017 /*!
1018  * \brief Gets name of object
1019   * \param theSO - SObject
1020   * \retval QString - name of object
1021  *
1022  * Gets name of object
1023  */
1024 //================================================================================
1025 QString SMESHGUI_MeshOp::name( _PTR(SObject) theSO ) const
1026 {
1027   QString aResName;
1028   if ( theSO )
1029   {
1030     _PTR(GenericAttribute) anAttr;
1031     _PTR(AttributeName)    aNameAttr;
1032     if ( theSO->FindAttribute( anAttr, "AttributeName" ) )
1033     {
1034       aNameAttr = anAttr;
1035       aResName = aNameAttr->Value().c_str();
1036     }
1037   }
1038   return aResName;
1039 }
1040
1041 //================================================================================
1042 /*!
1043  * \brief Finds hypothesis in input list
1044   * \param theHyp - hypothesis to be found
1045   * \param theHypList - input list of hypotheses
1046   * \retval int - index of hypothesis or -1 if it is not found
1047  *
1048  * Finds position of hypothesis in input list
1049  */
1050 //================================================================================
1051 int SMESHGUI_MeshOp::find( const SMESH::SMESH_Hypothesis_var& theHyp,
1052                            const QValueList<SMESH::SMESH_Hypothesis_var>& theHypList ) const
1053 {
1054   int aRes = -1;
1055   if ( !theHyp->_is_nil() )
1056   {
1057     int i = 0;
1058     QValueList<SMESH::SMESH_Hypothesis_var>::const_iterator anIter;
1059     for ( anIter = theHypList.begin(); anIter != theHypList.end(); ++ anIter )
1060     {
1061       if ( theHyp->_is_equivalent( *anIter ) )
1062       {
1063         aRes = i;
1064         break;
1065       }
1066       i++;
1067     }
1068   }
1069   return aRes;
1070 }
1071
1072 //================================================================================
1073 /*!
1074  * \brief Edits mesh or sub-mesh
1075   * \param theMess - Output parameter intended for returning error message
1076   * \retval bool  - TRUE if mesh is edited succesfully, FALSE otherwise
1077  *
1078  * Assigns new name hypotheses and algoriths to the mesh or sub-mesh
1079  */
1080 //================================================================================
1081 bool SMESHGUI_MeshOp::editMeshOrSubMesh( QString& theMess )
1082 {
1083   theMess = "";
1084
1085   SMESH::SMESH_Gen_var aSMESHGen = SMESHGUI::GetSMESHGen();
1086   if ( aSMESHGen->_is_nil() )
1087     return false;
1088
1089   QString anObjEntry = myDlg->selectedObject( SMESHGUI_MeshDlg::Obj );
1090   _PTR(SObject) pObj = studyDS()->FindObjectID( anObjEntry.latin1() );
1091   if ( !pObj )
1092     return false;
1093
1094   SUIT_OverrideCursor aWaitCursor;
1095
1096   // Set new name
1097   SMESH::SetName( pObj, myDlg->objectText( SMESHGUI_MeshDlg::Obj ).latin1() );
1098
1099   // Assign new hypotheses and algorithms
1100   for ( int dim = SMESH::DIM_1D; dim <= SMESH::DIM_3D; dim++ )
1101   {
1102     if ( !isAccessibleDim( dim )) continue;
1103
1104     // find or create algorithm
1105     bool toDelete = false, toAdd = true;
1106     SMESH::SMESH_Hypothesis_var anAlgoVar = getAlgo( dim );
1107     if ( anAlgoVar->_is_nil() ) {
1108       toAdd = false;
1109     }
1110     if ( myObjHyps[ dim ][ Algo ].count() > 0 ) {
1111       SMESH::SMESH_Hypothesis_var anOldAlgo = myObjHyps[ dim ][ Algo ].first();
1112       if ( toAdd ) {
1113         if ( strcmp(anOldAlgo->GetName(), anAlgoVar->GetName()) == 0 ) {
1114           toAdd = false;
1115         } else {
1116           toDelete = true;
1117         }
1118       } else {
1119         toDelete = true;
1120       }
1121     }
1122     // remove old algorithm
1123     if ( toDelete )
1124       SMESH::RemoveHypothesisOrAlgorithmOnMesh
1125         ( pObj, myObjHyps[ dim ][ Algo ].first() );
1126
1127     // assign new algorithm
1128     if ( toAdd ) {
1129       SMESH::SMESH_Mesh_var aMeshVar =
1130         SMESH::SMESH_Mesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1131       bool isMesh = !aMeshVar->_is_nil();
1132       if ( isMesh ) {
1133         SMESH::AddHypothesisOnMesh( aMeshVar, anAlgoVar );
1134       } else {
1135         SMESH::SMESH_subMesh_var aVar =
1136           SMESH::SMESH_subMesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1137         if ( !aVar->_is_nil() )
1138           SMESH::AddHypothesisOnSubMesh( aVar, anAlgoVar );
1139       }
1140     }
1141
1142     // assign hypotheses
1143     for ( int hypType = MainHyp; hypType <= AddHyp; hypType++ )
1144     {
1145       int aNewHypIndex = currentHyp( dim, hypType );
1146       int anOldHypIndex = -1;
1147       if ( myObjHyps[ dim ][ hypType ].count() > 0 )
1148         anOldHypIndex = find( myObjHyps[ dim ][ hypType ].first(),
1149                               myExistingHyps[ dim ][ hypType ] );
1150       if ( aNewHypIndex != anOldHypIndex )
1151       {
1152         // remove old hypotheses
1153         if ( anOldHypIndex >= 0 )
1154           SMESH::RemoveHypothesisOrAlgorithmOnMesh(
1155             pObj, myExistingHyps[ dim ][ hypType ][ anOldHypIndex ] );
1156
1157         // assign new hypotheses
1158         if ( aNewHypIndex != -1 )
1159         {
1160           SMESH::SMESH_Mesh_var aMeshVar =
1161               SMESH::SMESH_Mesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1162           bool isMesh = !aMeshVar->_is_nil();
1163           if ( isMesh )
1164           {
1165             SMESH::AddHypothesisOnMesh(
1166               aMeshVar, myExistingHyps[ dim ][ hypType ][ aNewHypIndex ] );
1167           }
1168           else
1169           {
1170             SMESH::SMESH_subMesh_var aVar =
1171               SMESH::SMESH_subMesh::_narrow( _CAST(SObject,pObj)->GetObject() );
1172             if ( !aVar->_is_nil() )
1173               SMESH::AddHypothesisOnSubMesh(
1174                 aVar, myExistingHyps[ dim ][ hypType ][ aNewHypIndex ] );
1175           }
1176         }
1177         // reread all hypotheses of mesh if necessary
1178         QStringList anExisting;
1179         existingHyps( dim, hypType, pObj, anExisting, myObjHyps[ dim ][ hypType ] );
1180       }
1181     }
1182   }
1183
1184   return true;
1185 }
1186
1187 //================================================================================
1188 /*!
1189  * \brief Verifies whether given operator is valid for this one
1190   * \param theOtherOp - other operation
1191   * \return Returns TRUE if the given operator is valid for this one, FALSE otherwise
1192 *
1193 * method redefined from base class verifies whether given operator is valid for
1194 * this one (i.e. can be started "above" this operator). In current implementation method
1195 * retuns false if theOtherOp operation is not intended for deleting objects or mesh
1196 * elements.
1197 */
1198 //================================================================================
1199 bool SMESHGUI_MeshOp::isValid( SUIT_Operation* theOp ) const
1200 {
1201   return SMESHGUI_Operation::isValid( theOp ) && !theOp->inherits( "SMESHGUI_MeshOp" );
1202 }