Salome HOME
5eb6dba66ad7937257c028548868e702a7c86aa9
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Selection.cxx
1 // Copyright (C) 2007-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // SMESH SMESHGUI_Selection
24 // File   : SMESHGUI_Selection.cxx
25 // Author : Alexander SOLOVYOV, Open CASCADE S.A.S.
26 //
27
28 // SMESH includes
29 #include "SMESHGUI_Selection.h"
30
31 #include "SMESHGUI.h"
32 #include "SMESHGUI_ComputeDlg.h"
33 #include "SMESHGUI_ConvToQuadOp.h"
34 #include "SMESHGUI_GEOMGenUtils.h"
35 #include "SMESHGUI_Utils.h"
36 #include "SMESHGUI_VTKUtils.h"
37
38 #include <SMESH_Type.h>
39 #include <SMESH_Actor.h>
40 #include <SMESH_ScalarBarActor.h>
41
42 // SALOME GUI includes
43 #include <SalomeApp_Study.h>
44 #include <LightApp_VTKSelector.h>
45 #include <SVTK_ViewWindow.h>
46
47 // IDL includes
48 #include <SALOMEconfig.h>
49 #include CORBA_CLIENT_HEADER(SMESH_Gen)
50 #include CORBA_CLIENT_HEADER(SMESH_Mesh)
51 #include CORBA_CLIENT_HEADER(SMESH_Group)
52
53 //=======================================================================
54 //function : SMESHGUI_Selection
55 //purpose  : 
56 //=======================================================================
57 SMESHGUI_Selection::SMESHGUI_Selection()
58 : LightApp_Selection()
59 {
60 }
61
62 //=======================================================================
63 //function : ~SMESHGUI_Selection
64 //purpose  : 
65 //=======================================================================
66 SMESHGUI_Selection::~SMESHGUI_Selection()
67 {
68 }
69
70 //=======================================================================
71 //function : init
72 //purpose  : 
73 //=======================================================================
74 void SMESHGUI_Selection::init( const QString& client, LightApp_SelectionMgr* mgr )
75 {
76   LightApp_Selection::init( client, mgr );
77
78   if( mgr && study() )
79   {
80     SalomeApp_Study* aSStudy = dynamic_cast<SalomeApp_Study*>(study());
81     if (!aSStudy)
82       return;
83     _PTR(Study) aStudy = aSStudy->studyDS();
84
85     for( int i=0, n=count(); i<n; i++ ) {
86       myTypes.append( typeName( type( entry( i ), aStudy ) ) );
87       myControls.append( controlMode( i ) );
88     }
89   }
90 }
91
92 //=======================================================================
93 //function : processOwner
94 //purpose  : 
95 //=======================================================================
96 bool SMESHGUI_Selection::processOwner( const LightApp_DataOwner* ow )
97 {
98   const LightApp_SVTKDataOwner* owner =
99     dynamic_cast<const LightApp_SVTKDataOwner*> ( ow );
100   if( owner ) {
101     myActors.append( dynamic_cast<SMESH_Actor*>( owner->GetActor() ) );
102   }
103   else if ( ow ) { // SVTK selection disabled
104     QString entry = ow->entry();
105     myActors.append( SMESH::FindActorByEntry( entry.toStdString().c_str() ));
106   }
107   else {
108     myActors.append( 0 );
109   }
110   return true;
111 }
112
113 //=======================================================================
114 //function : parameter
115 //purpose  : 
116 //=======================================================================
117 QVariant SMESHGUI_Selection::parameter( const int ind, const QString& p ) const
118 {
119   QVariant val;
120   if      ( p=="client" )               val = QVariant( LightApp_Selection::parameter( p ) );
121   else if ( p=="type" )                 val = QVariant( myTypes[ind] );
122   else if ( p=="hasActor" )             val = QVariant( getActor( ind ) != 0 );
123   else if ( p=="elemTypes" )            val = QVariant( elemTypes( ind, false ) );
124   else if ( p=="objElemTypes" )         val = QVariant( elemTypes( ind, true ) );
125   else if ( p=="isAutoColor" )          val = QVariant( isAutoColor( ind ) );
126   else if ( p=="numberOfNodes" )        val = QVariant( numberOfNodes( ind ) );
127   else if ( p=="dim" )                  val = QVariant( dim( ind ) );
128   else if ( p=="labeledTypes" )         val = QVariant( labeledTypes( ind ) );
129   else if ( p=="shrinkMode" )           val = QVariant( shrinkMode( ind ) );
130   else if ( p=="entityMode" )           val = QVariant( entityMode( ind ) );
131   else if ( p=="isNumFunctor" )         val = QVariant( isNumFunctor( ind ) );
132   else if ( p=="displayMode" )          val = QVariant( displayMode( ind ) );
133   else if ( p=="isComputable" )         val = QVariant( isComputable( ind ) );
134   else if ( p=="isPreComputable" )      val = QVariant( isPreComputable( ind ) );
135   else if ( p=="hasGeomReference" )     val = QVariant( hasGeomReference( ind ) );
136   else if ( p=="isEditableHyp" )        val = QVariant( isEditableHyp( ind ) );
137   else if ( p=="isImported" )           val = QVariant( isImported( ind ) );
138   else if ( p=="facesOrientationMode" ) val = QVariant( facesOrientationMode( ind ) );
139   else if ( p=="groupType" )            val = QVariant( groupType( ind ) );
140   else if ( p=="isQuadratic" )          val = QVariant( isQuadratic( ind ) );
141   else if ( p=="quadratic2DMode")       val = QVariant( quadratic2DMode( ind ) );
142   else if ( p=="isDistributionVisible") val = QVariant( isDistributionVisible( ind ) );
143   else if ( p=="isScalarBarVisible")    val = QVariant( isScalarBarVisible( ind ) );
144   else if ( p=="hasChildren")           val = QVariant( hasChildren( ind ) );
145   else if ( p=="nbChildren")            val = QVariant( nbChildren( ind ) );
146   else if ( p=="isContainer")           val = QVariant( isContainer( ind ) );
147   else if ( p=="guiState")              val = QVariant( guiState() );
148
149   if ( val.isValid() )
150     return val;
151   else
152     return LightApp_Selection::parameter( ind, p );
153 }
154
155 //=======================================================================
156 //function : parameter
157 //purpose  :
158 //=======================================================================
159 QVariant SMESHGUI_Selection::parameter( const QString& p ) const
160 {
161   QVariant val;
162   if ( p=="controlMode" ) val = QVariant( controlMode() );
163
164   if ( val.isValid() )
165     return val;
166   else
167     return LightApp_Selection::parameter( p );
168 }
169
170 //=======================================================================
171 //function : getVtkOwner
172 //purpose  :
173 //=======================================================================
174
175 SMESH_Actor* SMESHGUI_Selection::getActor( int ind ) const
176 {
177   if( ind >= 0 && ind < count() )
178     return myActors.isEmpty() ? 0 : myActors.at( ind );
179   else
180     return 0;
181 }
182
183 //=======================================================================
184 //function : elemTypes
185 //purpose  : may return {'Elem0d' 'Edge' 'Face' 'Volume' 'BallElem'} at most
186 //=======================================================================
187
188 QList<QVariant> SMESHGUI_Selection::elemTypes( int ind, bool fromObj ) const
189 {
190   QList<QVariant> types;
191   SMESH_Actor* actor = getActor( ind );
192   if ( actor ) {
193     TVisualObjPtr object = actor->GetObject();
194     if ( object ) {
195       if ( object->GetNbEntities( SMDSAbs_Edge ))      types.append( "Edge" );
196       if ( object->GetNbEntities( SMDSAbs_Face ))      types.append( "Face" );
197       if ( object->GetNbEntities( SMDSAbs_Volume ))    types.append( "Volume" );
198       if ( object->GetNbEntities( SMDSAbs_0DElement )) types.append( "Elem0d" );
199       if ( object->GetNbEntities( SMDSAbs_Ball ))      types.append( "BallElem" );
200     }
201   }
202   else if ( fromObj )
203   {
204     if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
205     {
206       _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
207       CORBA::Object_var obj = SMESH::SObjectToObject( sobj, SMESH::GetActiveStudyDocument() );
208       SMESH::SMESH_IDSource_var idSrc = SMESH::SMESH_IDSource::_narrow( obj );
209       if ( !CORBA::is_nil( idSrc ) )
210       {
211         SMESH::array_of_ElementType_var typeVar = idSrc->GetTypes();
212         for ( CORBA::ULong i = 0; i < typeVar->length(); ++i )
213           switch ( typeVar[i] ) {
214           case SMESH::EDGE:   types.append( "Edge" );     break;
215           case SMESH::FACE:   types.append( "Face" );     break;
216           case SMESH::VOLUME: types.append( "Volume" );   break;
217           case SMESH::ELEM0D: types.append( "Elem0d" );   break;
218           case SMESH::BALL:   types.append( "BallElem" ); break;
219           case SMESH::ALL:
220           case SMESH::NODE:
221           case SMESH::NB_ELEMENT_TYPES: break;
222           }
223       }
224     }
225   }
226   return types;
227 }
228
229 //=======================================================================
230 //function : labeledTypes
231 //purpose  : may return {'Point' 'Cell'} at most
232 //=======================================================================
233
234 QList<QVariant> SMESHGUI_Selection::labeledTypes( int ind ) const
235 {
236   QList<QVariant> types;
237   SMESH_Actor* actor = getActor( ind );
238   if ( actor ) {
239     if ( actor->GetPointsLabeled()) types.append( "Point" );
240     if ( actor->GetCellsLabeled())  types.append( "Cell" );
241   }
242   return types;
243 }
244
245 //=======================================================================
246 //function : displayMode
247 //purpose  : return SMESH_Actor::EReperesent
248 //=======================================================================
249
250 QString SMESHGUI_Selection::displayMode( int ind ) const
251 {
252   SMESH_Actor* actor = getActor( ind );
253   if ( actor ) {
254     switch( actor->GetRepresentation() ) {
255     case SMESH_Actor::eEdge:    return "eEdge";
256     case SMESH_Actor::eSurface: return "eSurface";
257     case SMESH_Actor::ePoint:   return "ePoint";
258     default: break;
259     }
260   }
261   return "Unknown";
262 }
263
264 //=======================================================================
265 //function : isQuadratic
266 //purpose  : return true if the mesh has quadratic/bi-quadratic type
267 //=======================================================================
268
269 bool SMESHGUI_Selection::isQuadratic( int ind ) const
270 {
271   _PTR(SObject) so = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
272   if ( !so )
273     return false;
274   SMESH::SMESH_IDSource_var idSource =  SMESH::SObjectToInterface<SMESH::SMESH_IDSource>( so );
275   if ( idSource->_is_nil() )
276     return false;
277   SMESHGUI_ConvToQuadOp::MeshDestinationType meshTgtType = SMESHGUI_ConvToQuadOp::DestinationMesh( idSource );
278   if ( meshTgtType & SMESHGUI_ConvToQuadOp::Linear )
279     return true;
280   return false;
281 }
282
283 //=======================================================================
284 //function : quadratic2DMode
285 //purpose  : return SMESH_Actor::EQuadratic2DRepresentation
286 //=======================================================================
287 QString SMESHGUI_Selection::quadratic2DMode( int ind ) const
288 {
289   SMESH_Actor* actor = getActor( ind );
290   if ( actor ) {
291     switch( actor->GetQuadratic2DRepresentation() ) {
292     case SMESH_Actor::eLines: return "eLines";
293     case SMESH_Actor::eArcs:  return "eArcs";
294     default: break;
295     }
296   }
297   return "Unknown";
298 }
299
300 //=======================================================================
301 //function : isDistributionVisible
302 //purpose  : Visible/Invisible distribution of the ScalarBar Actor
303 //=======================================================================
304
305 bool SMESHGUI_Selection::isDistributionVisible(int ind) const {
306   SMESH_Actor* actor = getActor( ind );
307   return (actor && actor->GetScalarBarActor() && actor->GetScalarBarActor()->GetDistributionVisibility());
308
309
310 //=======================================================================
311 //function : isScalarBarVisible
312 //purpose  : Visible/Invisible Scalar Bar
313 //=======================================================================
314
315 bool SMESHGUI_Selection::isScalarBarVisible(int ind) const {
316   SMESH_Actor* actor = getActor( ind );
317   return (actor && actor->GetScalarBarActor() && actor->GetScalarBarActor()->GetVisibility());
318 }
319
320 //=======================================================================
321 //function : shrinkMode
322 //purpose  : return either 'IsSrunk', 'IsNotShrunk' or 'IsNotShrinkable'
323 //=======================================================================
324
325 QString SMESHGUI_Selection::shrinkMode( int ind ) const
326 {
327   SMESH_Actor* actor = getActor( ind );
328   if ( actor && actor->IsShrunkable() ) {
329     return actor->IsShrunk() ? "IsShrunk" : "IsNotShrunk";
330   }
331   return "IsNotShrinkable";
332 }
333
334 //=======================================================================
335 //function : entityMode
336 //purpose  : may return {'Elem0d' 'Edge' 'Face' 'Volume' 'BallElem' } at most
337 //=======================================================================
338
339 QList<QVariant> SMESHGUI_Selection::entityMode( int ind ) const
340 {
341   QList<QVariant> types;
342   SMESH_Actor* actor = getActor( ind );
343   if ( actor ) {
344     unsigned int aMode = actor->GetEntityMode();
345     if ( aMode & SMESH_Actor::eVolumes    ) types.append( "Volume" );
346     if ( aMode & SMESH_Actor::eFaces      ) types.append( "Face"   );
347     if ( aMode & SMESH_Actor::eEdges      ) types.append( "Edge"   );
348     if ( aMode & SMESH_Actor::e0DElements ) types.append( "Elem0d" );
349     if ( aMode & SMESH_Actor::eBallElem )   types.append( "BallElem" );
350   }
351   return types;
352 }
353
354 //=======================================================================
355 //function : controlMode
356 //purpose  : return SMESH_Actor::eControl
357 //=======================================================================
358
359 QString SMESHGUI_Selection::controlMode( int ind ) const
360 {
361   SMESH_Actor* actor = getActor( ind );
362   QString mode = "eNone";
363   if ( actor ) {
364     switch( actor->GetControlMode() ) {
365     case SMESH_Actor::eLength:                mode = "eLength";                break;
366     case SMESH_Actor::eLength2D:              mode = "eLength2D";              break;
367     case SMESH_Actor::eDeflection2D:          mode = "eDeflection2D";          break;
368     case SMESH_Actor::eFreeEdges:             mode = "eFreeEdges";             break;
369     case SMESH_Actor::eFreeNodes:             mode = "eFreeNodes";             break;
370     case SMESH_Actor::eFreeBorders:           mode = "eFreeBorders";           break;
371     case SMESH_Actor::eFreeFaces:             mode = "eFreeFaces";             break;
372     case SMESH_Actor::eMultiConnection:       mode = "eMultiConnection";       break;
373     case SMESH_Actor::eMultiConnection2D:     mode = "eMultiConnection2D";     break;
374     case SMESH_Actor::eArea:                  mode = "eArea";                  break;
375     case SMESH_Actor::eVolume3D:              mode = "eVolume3D";              break;
376     case SMESH_Actor::eMaxElementLength2D:    mode = "eMaxElementLength2D";    break;
377     case SMESH_Actor::eMaxElementLength3D:    mode = "eMaxElementLength3D";    break;
378     case SMESH_Actor::eTaper:                 mode = "eTaper";                 break;
379     case SMESH_Actor::eAspectRatio:           mode = "eAspectRatio";           break;
380     case SMESH_Actor::eAspectRatio3D:         mode = "eAspectRatio3D";         break;
381     case SMESH_Actor::eMinimumAngle:          mode = "eMinimumAngle";          break;
382     case SMESH_Actor::eWarping:               mode = "eWarping";               break;
383     case SMESH_Actor::eSkew:                  mode = "eSkew";                  break;
384     case SMESH_Actor::eBareBorderFace:        mode = "eBareBorderFace";        break;
385     case SMESH_Actor::eBareBorderVolume:      mode = "eBareBorderVolume";      break;
386     case SMESH_Actor::eOverConstrainedFace:   mode = "eOverConstrainedFace";   break;
387     case SMESH_Actor::eOverConstrainedVolume: mode = "eOverConstrainedVolume"; break;
388     case SMESH_Actor::eCoincidentNodes:       mode = "eCoincidentNodes";       break;
389     case SMESH_Actor::eCoincidentElems1D:     mode = "eCoincidentElems1D";     break;
390     case SMESH_Actor::eCoincidentElems2D:     mode = "eCoincidentElems2D";     break;
391     case SMESH_Actor::eCoincidentElems3D:     mode = "eCoincidentElems3D";     break;
392     default:break;
393     }
394   }
395   return mode;
396 }
397
398 //=======================================================================
399 //function : controlMode
400 //purpose  : gets global control mode; return SMESH_Actor::eControl
401 //=======================================================================
402 QString SMESHGUI_Selection::controlMode() const
403 {
404   if( myControls.count() > 0 ) {
405     QString mode = myControls[0];
406     for( int ind = 1; ind < myControls.count(); ind++ ) {
407       if( mode != myControls[ind] )
408         return "eMixed"; // different controls used for different actors
409     }
410     return mode;
411   }
412   return "eNone";
413 }
414
415 //=======================================================================
416 //function : isNumFunctor
417 //purpose  : return true if a given actor is shown using a numeric functor
418 //=======================================================================
419
420 bool SMESHGUI_Selection::isNumFunctor( int ind ) const
421 {
422   bool result = false;
423   SMESH_Actor* actor = getActor( ind );
424   if ( actor ) {
425     switch( actor->GetControlMode() ) {
426     case SMESH_Actor::eLength:
427     case SMESH_Actor::eLength2D:
428     case SMESH_Actor::eDeflection2D:
429     case SMESH_Actor::eMultiConnection:
430     case SMESH_Actor::eMultiConnection2D:
431     case SMESH_Actor::eArea:
432     case SMESH_Actor::eVolume3D:
433     case SMESH_Actor::eMaxElementLength2D:
434     case SMESH_Actor::eMaxElementLength3D:
435     case SMESH_Actor::eTaper:
436     case SMESH_Actor::eAspectRatio:
437     case SMESH_Actor::eAspectRatio3D:
438     case SMESH_Actor::eMinimumAngle:
439     case SMESH_Actor::eWarping:
440     case SMESH_Actor::eSkew:
441       result = true;
442       break;
443     default:
444       break;
445     }
446   }
447   return result;
448 }
449
450 //=======================================================================
451 //function : facesOrientationMode
452 //purpose  :
453 //=======================================================================
454
455 QString SMESHGUI_Selection::facesOrientationMode( int ind ) const
456 {
457   SMESH_Actor* actor = getActor( ind );
458   if ( actor ) {
459     return actor->GetFacesOriented() ? "IsOriented" : "IsNotOriented";
460   }
461   return "Unknown";
462 }
463
464 //=======================================================================
465 //function : isAutoColor
466 //purpose  : 
467 //=======================================================================
468
469 bool SMESHGUI_Selection::isAutoColor( int ind ) const
470 {
471   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
472   {
473     _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
474     CORBA::Object_var      obj = SMESH::SObjectToObject( sobj, SMESH::GetActiveStudyDocument() );
475     SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( obj );
476     if ( !CORBA::is_nil( mesh ) )
477       return mesh->GetAutoColor();
478   }
479   return false;
480 }
481
482 //=======================================================================
483 //function : numberOfNodes
484 //purpose  : this method is actually used to check if an object is empty or not
485 //=======================================================================
486
487 int SMESHGUI_Selection::numberOfNodes( int ind ) const
488 {
489   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
490   {
491     _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
492     CORBA::Object_var obj = SMESH::SObjectToObject( sobj, SMESH::GetActiveStudyDocument() );
493
494     if ( !CORBA::is_nil( obj ) ) {
495       SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( obj );
496       if ( !CORBA::is_nil( mesh ) )
497         return mesh->NbNodes();
498       SMESH::SMESH_subMesh_var aSubMeshObj = SMESH::SMESH_subMesh::_narrow( obj );
499       if ( !CORBA::is_nil( aSubMeshObj ) )
500         return aSubMeshObj->GetNumberOfNodes(true);
501       SMESH::SMESH_GroupBase_var aGroupObj = SMESH::SMESH_GroupBase::_narrow( obj );
502       if ( !CORBA::is_nil( aGroupObj ) )
503         return aGroupObj->IsEmpty() ? 0 : 1; // aGroupObj->Size();
504     }
505   }
506   return 0;
507 }
508
509 //================================================================================
510 /*!
511  * \brief return dimension of elements of the selected object
512  *
513  *  \retval int - 0 for 0D elements, -1 for an empty object (the rest as usual)
514  */
515 //================================================================================
516
517 int SMESHGUI_Selection::dim( int ind ) const
518 {
519   int dim = -1;
520   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
521   {
522     _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
523     CORBA::Object_var obj = SMESH::SObjectToObject( sobj, SMESH::GetActiveStudyDocument() );
524
525     if ( !CORBA::is_nil( obj ) ) {
526       SMESH::SMESH_IDSource_var idSrc = SMESH::SMESH_IDSource::_narrow( obj );
527       if ( !CORBA::is_nil( idSrc ) )
528       {
529         SMESH::array_of_ElementType_var types = idSrc->GetTypes();
530         for ( size_t i = 0; i < types->length(); ++ i) {
531           switch ( types[i] ) {
532           case SMESH::EDGE  : dim = std::max( dim, 1 ); break;
533           case SMESH::FACE  : dim = std::max( dim, 2 ); break;
534           case SMESH::VOLUME: dim = std::max( dim, 3 ); break;
535           case SMESH::ELEM0D: dim = std::max( dim, 0 ); break;
536           case SMESH::BALL  : dim = std::max( dim, 0 ); break;
537           default: break;
538           }
539         }
540       }
541     }
542   }
543   return dim;
544 }
545
546 //=======================================================================
547 //function : isComputable
548 //purpose  : return true for a ready-to-compute mesh
549 //=======================================================================
550
551 bool SMESHGUI_Selection::isComputable( int ind ) const
552 {
553   if ( ind >= 0 && ind < myTypes.count() && ( myTypes[ind] == "Mesh" ||
554                                               myTypes[ind].startsWith("Mesh " )))
555   {
556     QMap<int,int> modeMap;
557     _PTR(SObject) meshSO = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
558
559     _PTR(SComponent) component = meshSO->GetFatherComponent();
560     if ( meshSO->Depth() - component->Depth() > 1 ) // sub-mesh, get a mesh
561       while ( meshSO->Depth() - component->Depth() > 1 )
562         meshSO = meshSO->GetFather();
563
564     SMESHGUI_PrecomputeOp::getAssignedAlgos( meshSO, modeMap );
565     return modeMap.size() > 0;
566   }
567   return false;
568 }
569
570 //=======================================================================
571 //function : isPreComputable
572 //purpose  : returns true for a mesh with algorithms
573 //=======================================================================
574
575 bool SMESHGUI_Selection::isPreComputable( int ind ) const
576 {
577   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] == "Mesh" )
578   {
579     int maxDim = dim( ind );
580     if ( maxDim < 2 ) // we can preview 1D or 2D
581     {
582       QMap<int,int> modeMap;
583       _PTR(SObject) pMesh = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
584       SMESHGUI_PrecomputeOp::getAssignedAlgos( pMesh, modeMap );
585       if ( modeMap.size() > 1 )
586         return (( modeMap.contains( SMESH::DIM_3D )) ||
587                 ( modeMap.contains( SMESH::DIM_2D ) && maxDim < 1 ));
588     }
589   }
590   return false;
591 }
592
593 //=======================================================================
594 //function : hasGeomReference
595 //purpose  : returns true for a mesh or sub-mesh on geometry
596 //=======================================================================
597
598 bool SMESHGUI_Selection::hasGeomReference( int ind ) const
599 {
600   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
601   {
602     _PTR(SObject) so = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
603     GEOM::GEOM_Object_var shape = SMESH::GetShapeOnMeshOrSubMesh( so );
604     return !shape->_is_nil();
605   }
606   return false;
607 }
608
609 //=======================================================================
610 //function : isEditableHyp
611 //purpose  : 
612 //=======================================================================
613
614 bool SMESHGUI_Selection::isEditableHyp( int ind ) const
615 {
616   bool isEditable = true;
617   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] == "Hypothesis" )
618   {
619     _PTR(SObject) so = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
620     SMESH::SMESH_Hypothesis_var hyp = SMESH::SObjectToInterface<SMESH::SMESH_Hypothesis>( so );
621     if ( !hyp->_is_nil() )
622     {
623       isEditable = hyp->HasParameters();
624     }
625   }
626   return isEditable;
627 }
628
629 //=======================================================================
630 //function : isVisible
631 //purpose  : 
632 //=======================================================================
633
634 bool SMESHGUI_Selection::isVisible( int ind ) const
635 {
636   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
637   {
638     SMESH_Actor* actor = SMESH::FindActorByEntry( entry( ind ).toLatin1().data() );
639     if ( actor && actor->hasIO() ) {
640       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetCurrentVtkView() )
641         return aViewWindow->isVisible( actor->getIO() );
642     }
643   }
644   return false;
645 }
646
647 //=======================================================================
648 //function : hasChildren
649 //purpose  : 
650 //=======================================================================
651
652 bool SMESHGUI_Selection::hasChildren( int ind ) const
653 {
654   if ( ind >= 0 )
655   {
656     _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
657     if ( sobj ) 
658       return SMESH::GetActiveStudyDocument()->GetUseCaseBuilder()->HasChildren( sobj );
659   }
660   return false;
661 }
662
663 //=======================================================================
664 //function : hasChildren
665 //purpose  : 
666 //=======================================================================
667
668 int SMESHGUI_Selection::nbChildren( int ind ) const
669 {
670   int nb = 0;
671   if ( ind >= 0 )
672   {
673     _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().data() );
674     if ( sobj && sobj->GetStudy()->GetUseCaseBuilder()->IsUseCaseNode( sobj ) ) {
675       _PTR(UseCaseIterator) it = sobj->GetStudy()->GetUseCaseBuilder()->GetUseCaseIterator( sobj ); 
676       for ( it->Init( false ); it->More(); it->Next() ) nb++;
677     }
678   }
679   return nb;
680 }
681
682 //=======================================================================
683 //function : isContainer
684 //purpose  : 
685 //=======================================================================
686
687 bool SMESHGUI_Selection::isContainer( int ind ) const
688 {
689   return ind >= 0 && ind < myTypes.count() && myTypes[ind] == "Unknown";
690 }
691
692 //=======================================================================
693 //function : type
694 //purpose  : 
695 //=======================================================================
696
697 int SMESHGUI_Selection::type( const QString& entry, _PTR(Study) study )
698 {
699   int res = -1;
700   _PTR(SObject) obj = study->FindObjectID( entry.toLatin1().data() );
701   if ( obj ) {
702     _PTR(SObject) ref;
703     if ( obj->ReferencedObject( ref ) )
704       obj = ref;
705
706     _PTR(SObject) objFather = obj->GetFather();
707     _PTR(SComponent) objComponent = obj->GetFatherComponent();
708
709     if ( objComponent->ComponentDataType() == "SMESH" ) {
710       if ( objComponent->GetIOR() == obj->GetIOR() ) {
711         res = SMESH::COMPONENT;
712       }
713       else {
714         int aLevel = obj->Depth() - objComponent->Depth(),
715           aFTag = objFather->Tag(),
716           anOTag = obj->Tag();
717
718         switch ( aLevel )
719         {
720         case 1:
721           if ( anOTag >= SMESH::Tag_FirstMeshRoot )
722             res = SMESH::MESH;
723           break;
724         case 2:
725           switch ( aFTag )
726           {
727           case SMESH::Tag_HypothesisRoot: res = SMESH::HYPOTHESIS; break;
728           case SMESH::Tag_AlgorithmsRoot: res = SMESH::ALGORITHM;  break;
729           default: break;
730           }
731           break;
732         case 3:
733           switch ( aFTag )
734           {
735           case SMESH::Tag_SubMeshOnVertex:   res = SMESH::SUBMESH_VERTEX;   break;
736           case SMESH::Tag_SubMeshOnEdge:     res = SMESH::SUBMESH_EDGE;     break;
737           case SMESH::Tag_SubMeshOnFace:     res = SMESH::SUBMESH_FACE;     break;
738           case SMESH::Tag_SubMeshOnSolid:    res = SMESH::SUBMESH_SOLID;    break;
739           case SMESH::Tag_SubMeshOnCompound: res = SMESH::SUBMESH_COMPOUND; break;
740           default:
741             if ( aFTag >= SMESH::Tag_FirstGroup) res = SMESH::GROUP;
742             else                                 res = SMESH::SUBMESH;
743             break;
744           }
745           break;
746         }
747       }
748     }
749   }
750   return res;
751 }
752
753 //=======================================================================
754 //function : typeName
755 //purpose  : 
756 //=======================================================================
757
758 QString SMESHGUI_Selection::typeName( const int t )
759 {
760   QString res = "Unknown";
761   switch( t )
762   {
763   case SMESH::HYPOTHESIS:
764     res = "Hypothesis"; break;
765   case SMESH::ALGORITHM:
766     res = "Algorithm"; break;
767   case SMESH::MESH:
768     res = "Mesh"; break;
769   case SMESH::SUBMESH:
770     res = "SubMesh"; break;
771   case SMESH::MESHorSUBMESH:
772     res = "Mesh or submesh"; break;
773   case SMESH::SUBMESH_VERTEX:
774     res = "Mesh vertex"; break;
775   case SMESH::SUBMESH_EDGE:
776     res = "Mesh edge"; break;
777   case SMESH::SUBMESH_FACE:
778     res = "Mesh face"; break;
779   case SMESH::SUBMESH_SOLID:
780     res = "Mesh solid"; break;
781   case SMESH::SUBMESH_COMPOUND:
782     res = "Mesh compound"; break;
783   case SMESH::GROUP:
784     res = "Group"; break;
785   case SMESH::COMPONENT:
786     res = "Component"; break;
787   default:
788      break;
789   }
790   return res;
791 }
792
793 bool SMESHGUI_Selection::isImported( const int ind ) const
794 {
795   bool res = false;
796   _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().constData() );
797   if ( sobj )
798   {
799     SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_narrow( SMESH::SObjectToObject( sobj ) );
800     if( !aMesh->_is_nil() )
801     {
802       SMESH::MedFileInfo_var inf = aMesh->GetMEDFileInfo();
803       res = strlen( (char*)inf->fileName ) > 0;
804     }
805   }
806   return res;
807 }
808
809 //=======================================================================
810 //function : guiState
811 //purpose  : 
812 //=======================================================================
813
814 int SMESHGUI_Selection::guiState()
815 {
816   return SMESHGUI::GetSMESHGUI() ? SMESHGUI::GetSMESHGUI()->GetState() : -1;
817 }
818
819 //=======================================================================
820 //function : groupType
821 //purpose  : 
822 //=======================================================================
823
824 QString SMESHGUI_Selection::groupType( int ind ) const
825 {
826   _PTR(SObject) sobj = SMESH::GetActiveStudyDocument()->FindObjectID( entry( ind ).toLatin1().constData() );
827   if ( sobj )
828   {
829     SMESH::SMESH_Group_var g = SMESH::SObjectToInterface<SMESH::SMESH_Group>( sobj );
830     if ( !CORBA::is_nil( g ) )
831       return "Group";
832     SMESH::SMESH_GroupOnGeom_var gog = SMESH::SObjectToInterface<SMESH::SMESH_GroupOnGeom>( sobj );
833     if( !CORBA::is_nil( gog ) )
834       return "GroupOnGeom";
835     SMESH::SMESH_GroupOnFilter_var gof = SMESH::SObjectToInterface<SMESH::SMESH_GroupOnFilter>( sobj );
836     if ( !CORBA::is_nil( gof ) )
837       return "GroupOnFilter";
838   }
839   return "";
840 }