Salome HOME
Update of CheckDone
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Selection.cxx
1 // Copyright (C) 2007-2024  CEA, EDF, 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_Application.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 )
79   {
80     for( int i=0, n=count(); i<n; i++ ) {
81       myTypes.append( typeName( type( entry( i ) ) ) );
82       myControls.append( controlMode( i ) );
83     }
84   }
85 }
86
87 //=======================================================================
88 //function : processOwner
89 //purpose  : 
90 //=======================================================================
91 bool SMESHGUI_Selection::processOwner( const LightApp_DataOwner* ow )
92 {
93   const LightApp_SVTKDataOwner* owner =
94     dynamic_cast<const LightApp_SVTKDataOwner*> ( ow );
95   if( owner ) {
96     myActors.append( dynamic_cast<SMESH_Actor*>( owner->GetActor() ) );
97   }
98   else if ( ow ) { // SVTK selection disabled
99     QString entry = ow->entry();
100     myActors.append( SMESH::FindActorByEntry( entry.toStdString().c_str() ));
101   }
102   else {
103     myActors.append( 0 );
104   }
105   return true;
106 }
107
108 //=======================================================================
109 //function : parameter
110 //purpose  : 
111 //=======================================================================
112 QVariant SMESHGUI_Selection::parameter( const int ind, const QString& p ) const
113 {
114   QVariant val;
115   if      ( p=="client" )               val = QVariant( LightApp_Selection::parameter( p ) );
116   else if ( p=="type" )                 val = QVariant( myTypes[ind] );
117   else if ( p=="hasActor" )             val = QVariant( getActor( ind ) != 0 );
118   else if ( p=="elemTypes" )            val = QVariant( elemTypes( ind, false ) );
119   else if ( p=="objElemTypes" )         val = QVariant( elemTypes( ind, true ) );
120   else if ( p=="isAutoColor" )          val = QVariant( isAutoColor( ind ) );
121   else if ( p=="numberOfNodes" )        val = QVariant( numberOfNodes( ind ) );
122   else if ( p=="dim" )                  val = QVariant( dim( ind ) );
123   else if ( p=="labeledTypes" )         val = QVariant( labeledTypes( ind ) );
124   else if ( p=="shrinkMode" )           val = QVariant( shrinkMode( ind ) );
125   else if ( p=="entityMode" )           val = QVariant( entityMode( ind ) );
126   else if ( p=="isNumFunctor" )         val = QVariant( isNumFunctor( ind ) );
127   else if ( p=="displayMode" )          val = QVariant( displayMode( ind ) );
128   else if ( p=="hasAlgo" )              val = QVariant( hasAlgo( ind ) );
129   else if ( p=="hasErrors" )            val = QVariant( hasErrors( ind ) );
130   else if ( p=="isComputable" )         val = QVariant( isComputable( ind ) );
131   else if ( p=="isPreComputable" )      val = QVariant( isPreComputable( ind ) );
132   else if ( p=="hasGeomReference" )     val = QVariant( hasGeomReference( ind ) );
133   else if ( p=="isEditableHyp" )        val = QVariant( isEditableHyp( ind ) );
134   else if ( p=="isImported" )           val = QVariant( isImported( ind ) );
135   else if ( p=="facesOrientationMode" ) val = QVariant( facesOrientationMode( ind ) );
136   else if ( p=="groupType" )            val = QVariant( groupType( ind ) );
137   else if ( p=="isQuadratic" )          val = QVariant( isQuadratic( ind ) );
138   else if ( p=="quadratic2DMode")       val = QVariant( quadratic2DMode( ind ) );
139   else if ( p=="isDistributionVisible") val = QVariant( isDistributionVisible( ind ) );
140   else if ( p=="isScalarBarVisible")    val = QVariant( isScalarBarVisible( ind ) );
141   else if ( p=="hasChildren")           val = QVariant( hasChildren( ind ) );
142   else if ( p=="nbChildren")            val = QVariant( nbChildren( ind ) );
143   else if ( p=="isContainer")           val = QVariant( isContainer( ind ) );
144   else if ( p=="guiState")              val = QVariant( guiState() );
145   else if ( p=="canBreakLink")          val = QVariant( canBreakLink(ind) );
146
147   if ( val.isValid() )
148     return val;
149   else
150     return LightApp_Selection::parameter( ind, p );
151 }
152
153 //=======================================================================
154 //function : parameter
155 //purpose  :
156 //=======================================================================
157 QVariant SMESHGUI_Selection::parameter( const QString& p ) const
158 {
159   QVariant val;
160   if ( p=="controlMode" ) val = QVariant( controlMode() );
161
162   if ( val.isValid() )
163     return val;
164   else
165     return LightApp_Selection::parameter( p );
166 }
167
168 //=======================================================================
169 //function : getVtkOwner
170 //purpose  :
171 //=======================================================================
172
173 SMESH_Actor* SMESHGUI_Selection::getActor( int ind ) const
174 {
175   if( ind >= 0 && ind < count() )
176     return myActors.isEmpty() ? 0 : myActors.at( ind );
177   else
178     return 0;
179 }
180
181 //=======================================================================
182 //function : elemTypes
183 //purpose  : may return {'Elem0d' 'Edge' 'Face' 'Volume' 'BallElem'} at most
184 //=======================================================================
185
186 QList<QVariant> SMESHGUI_Selection::elemTypes( int ind, bool fromObj ) const
187 {
188   QList<QVariant> types;
189   SMESH_Actor* actor = getActor( ind );
190   if ( actor ) {
191     TVisualObjPtr object = actor->GetObject();
192     if ( object ) {
193       if ( object->GetNbEntities( SMDSAbs_Edge ))      types.append( "Edge" );
194       if ( object->GetNbEntities( SMDSAbs_Face ))      types.append( "Face" );
195       if ( object->GetNbEntities( SMDSAbs_Volume ))    types.append( "Volume" );
196       if ( object->GetNbEntities( SMDSAbs_0DElement )) types.append( "Elem0d" );
197       if ( object->GetNbEntities( SMDSAbs_Ball ))      types.append( "BallElem" );
198     }
199   }
200   else if ( fromObj )
201   {
202     if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
203     {
204       _PTR(SObject) sobj = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().data() );
205       CORBA::Object_var obj = SMESH::SObjectToObject( sobj );
206       SMESH::SMESH_IDSource_var idSrc = SMESH::SMESH_IDSource::_narrow( obj );
207       if ( !CORBA::is_nil( idSrc ) )
208       {
209         SMESH::array_of_ElementType_var typeVar = idSrc->GetTypes();
210         for ( CORBA::ULong i = 0; i < typeVar->length(); ++i )
211           switch ( typeVar[i] ) {
212           case SMESH::EDGE:   types.append( "Edge" );     break;
213           case SMESH::FACE:   types.append( "Face" );     break;
214           case SMESH::VOLUME: types.append( "Volume" );   break;
215           case SMESH::ELEM0D: types.append( "Elem0d" );   break;
216           case SMESH::BALL:   types.append( "BallElem" ); break;
217           case SMESH::ALL:
218           case SMESH::NODE:
219           case SMESH::NB_ELEMENT_TYPES: break;
220           }
221       }
222     }
223   }
224   return types;
225 }
226
227 //=======================================================================
228 //function : labeledTypes
229 //purpose  : may return {'Point' 'Cell'} at most
230 //=======================================================================
231
232 QList<QVariant> SMESHGUI_Selection::labeledTypes( int ind ) const
233 {
234   QList<QVariant> types;
235   SMESH_Actor* actor = getActor( ind );
236   if ( actor ) {
237     if ( actor->GetPointsLabeled()) types.append( "Point" );
238     if ( actor->GetCellsLabeled())  types.append( "Cell" );
239   }
240   return types;
241 }
242
243 //=======================================================================
244 //function : displayMode
245 //purpose  : return SMESH_Actor::EReperesent
246 //=======================================================================
247
248 QString SMESHGUI_Selection::displayMode( int ind ) const
249 {
250   SMESH_Actor* actor = getActor( ind );
251   if ( actor ) {
252     switch( actor->GetRepresentation() ) {
253     case SMESH_Actor::eEdge:    return "eEdge";
254     case SMESH_Actor::eSurface: return "eSurface";
255     case SMESH_Actor::ePoint:   return "ePoint";
256     default: break;
257     }
258   }
259   return "Unknown";
260 }
261
262 //=======================================================================
263 //function : isQuadratic
264 //purpose  : return true if the mesh has quadratic/bi-quadratic type
265 //=======================================================================
266
267 bool SMESHGUI_Selection::isQuadratic( int ind ) const
268 {
269   _PTR(SObject) so = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().data() );
270   if ( !so )
271     return false;
272   SMESH::SMESH_IDSource_var idSource =  SMESH::SObjectToInterface<SMESH::SMESH_IDSource>( so );
273   if ( idSource->_is_nil() )
274     return false;
275   SMESHGUI_ConvToQuadOp::MeshDestinationType meshTgtType = SMESHGUI_ConvToQuadOp::DestinationMesh( idSource );
276   if ( meshTgtType & SMESHGUI_ConvToQuadOp::Linear )
277     return true;
278   return false;
279 }
280
281 //=======================================================================
282 //function : quadratic2DMode
283 //purpose  : return SMESH_Actor::EQuadratic2DRepresentation
284 //=======================================================================
285 QString SMESHGUI_Selection::quadratic2DMode( int ind ) const
286 {
287   SMESH_Actor* actor = getActor( ind );
288   if ( actor ) {
289     switch( actor->GetQuadratic2DRepresentation() ) {
290     case SMESH_Actor::eLines: return "eLines";
291     case SMESH_Actor::eArcs:  return "eArcs";
292     default: break;
293     }
294   }
295   return "Unknown";
296 }
297
298 //=======================================================================
299 //function : isDistributionVisible
300 //purpose  : Visible/Invisible distribution of the ScalarBar Actor
301 //=======================================================================
302
303 bool SMESHGUI_Selection::isDistributionVisible(int ind) const {
304   SMESH_Actor* actor = getActor( ind );
305   return (actor && actor->GetScalarBarActor() && actor->GetScalarBarActor()->GetDistributionVisibility());
306
307
308 //=======================================================================
309 //function : isScalarBarVisible
310 //purpose  : Visible/Invisible Scalar Bar
311 //=======================================================================
312
313 bool SMESHGUI_Selection::isScalarBarVisible(int ind) const {
314   SMESH_Actor* actor = getActor( ind );
315   return (actor && actor->GetScalarBarActor() && actor->GetScalarBarActor()->GetVisibility());
316 }
317
318 //=======================================================================
319 //function : shrinkMode
320 //purpose  : return either 'IsSrunk', 'IsNotShrunk' or 'IsNotShrinkable'
321 //=======================================================================
322
323 QString SMESHGUI_Selection::shrinkMode( int ind ) const
324 {
325   SMESH_Actor* actor = getActor( ind );
326   if ( actor && actor->IsShrunkable() ) {
327     return actor->IsShrunk() ? "IsShrunk" : "IsNotShrunk";
328   }
329   return "IsNotShrinkable";
330 }
331
332 //=======================================================================
333 //function : entityMode
334 //purpose  : may return {'Elem0d' 'Edge' 'Face' 'Volume' 'BallElem' } at most
335 //=======================================================================
336
337 QList<QVariant> SMESHGUI_Selection::entityMode( int ind ) const
338 {
339   QList<QVariant> types;
340   SMESH_Actor* actor = getActor( ind );
341   if ( actor ) {
342     unsigned int aMode = actor->GetEntityMode();
343     if ( aMode & SMESH_Actor::eVolumes    ) types.append( "Volume" );
344     if ( aMode & SMESH_Actor::eFaces      ) types.append( "Face"   );
345     if ( aMode & SMESH_Actor::eEdges      ) types.append( "Edge"   );
346     if ( aMode & SMESH_Actor::e0DElements ) types.append( "Elem0d" );
347     if ( aMode & SMESH_Actor::eBallElem )   types.append( "BallElem" );
348   }
349   return types;
350 }
351
352 //=======================================================================
353 //function : controlMode
354 //purpose  : return SMESH_Actor::eControl
355 //=======================================================================
356
357 QString SMESHGUI_Selection::controlMode( int ind ) const
358 {
359   SMESH_Actor* actor = getActor( ind );
360   QString mode = "eNone";
361   if ( actor ) {
362     switch( actor->GetControlMode() ) {
363     case SMESH_Actor::eLength:                mode = "eLength";                break;
364     case SMESH_Actor::eLength2D:              mode = "eLength2D";              break;
365     case SMESH_Actor::eDeflection2D:          mode = "eDeflection2D";          break;
366     case SMESH_Actor::eFreeEdges:             mode = "eFreeEdges";             break;
367     case SMESH_Actor::eFreeNodes:             mode = "eFreeNodes";             break;
368     case SMESH_Actor::eFreeBorders:           mode = "eFreeBorders";           break;
369     case SMESH_Actor::eFreeFaces:             mode = "eFreeFaces";             break;
370     case SMESH_Actor::eMultiConnection:       mode = "eMultiConnection";       break;
371     case SMESH_Actor::eMultiConnection2D:     mode = "eMultiConnection2D";     break;
372     case SMESH_Actor::eArea:                  mode = "eArea";                  break;
373     case SMESH_Actor::eVolume3D:              mode = "eVolume3D";              break;
374     case SMESH_Actor::eScaledJacobian:        mode = "eScaledJacobian";        break;
375     case SMESH_Actor::eMaxElementLength2D:    mode = "eMaxElementLength2D";    break;
376     case SMESH_Actor::eMaxElementLength3D:    mode = "eMaxElementLength3D";    break;
377     case SMESH_Actor::eTaper:                 mode = "eTaper";                 break;
378     case SMESH_Actor::eAspectRatio:           mode = "eAspectRatio";           break;
379     case SMESH_Actor::eAspectRatio3D:         mode = "eAspectRatio3D";         break;
380     case SMESH_Actor::eWarping3D:             mode = "eWarping3D";             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     case SMESH_Actor::eCustomControl:         mode = "eCustomControl";         break;
393     default:break;
394     }
395   }
396   return mode;
397 }
398
399 //=======================================================================
400 //function : controlMode
401 //purpose  : gets global control mode; return SMESH_Actor::eControl
402 //=======================================================================
403 QString SMESHGUI_Selection::controlMode() const
404 {
405   if( myControls.count() > 0 ) {
406     QString mode = myControls[0];
407     for( int ind = 1; ind < myControls.count(); ind++ ) {
408       if( mode != myControls[ind] )
409         return "eMixed"; // different controls used for different actors
410     }
411     return mode;
412   }
413   return "eNone";
414 }
415
416 //=======================================================================
417 //function : isNumFunctor
418 //purpose  : return true if a given actor is shown using a numeric functor
419 //=======================================================================
420
421 bool SMESHGUI_Selection::isNumFunctor( int ind ) const
422 {
423   bool result = false;
424   SMESH_Actor* actor = getActor( ind );
425   if ( actor ) {
426     switch( actor->GetControlMode() ) {
427     case SMESH_Actor::eLength:
428     case SMESH_Actor::eLength2D:
429     case SMESH_Actor::eDeflection2D:
430     case SMESH_Actor::eMultiConnection:
431     case SMESH_Actor::eMultiConnection2D:
432     case SMESH_Actor::eArea:
433     case SMESH_Actor::eVolume3D:
434     case SMESH_Actor::eScaledJacobian:
435     case SMESH_Actor::eMaxElementLength2D:
436     case SMESH_Actor::eMaxElementLength3D:
437     case SMESH_Actor::eTaper:
438     case SMESH_Actor::eAspectRatio:
439     case SMESH_Actor::eAspectRatio3D:
440     case SMESH_Actor::eMinimumAngle:
441     case SMESH_Actor::eWarping:
442     case SMESH_Actor::eWarping3D:
443     case SMESH_Actor::eSkew:
444       result = true;
445       break;
446     default:
447       break;
448     }
449   }
450   return result;
451 }
452
453 //=======================================================================
454 //function : facesOrientationMode
455 //purpose  :
456 //=======================================================================
457
458 QString SMESHGUI_Selection::facesOrientationMode( int ind ) const
459 {
460   SMESH_Actor* actor = getActor( ind );
461   if ( actor ) {
462     return actor->GetFacesOriented() ? "IsOriented" : "IsNotOriented";
463   }
464   return "Unknown";
465 }
466
467 //=======================================================================
468 //function : isAutoColor
469 //purpose  : 
470 //=======================================================================
471
472 bool SMESHGUI_Selection::isAutoColor( int ind ) const
473 {
474   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
475   {
476     _PTR(SObject) sobj = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().data() );
477     CORBA::Object_var obj = SMESH::SObjectToObject( sobj );
478
479     if ( !CORBA::is_nil( obj ) ) {
480       SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( obj );
481       if ( !CORBA::is_nil( mesh ) )
482         return mesh->GetAutoColor();
483     }
484   }
485   return false;
486 }
487
488 //=======================================================================
489 //function : numberOfNodes
490 //purpose  : this method is actually used to check if an object is empty or not
491 //=======================================================================
492
493 int SMESHGUI_Selection::numberOfNodes( int ind ) const
494 {
495   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
496   {
497     _PTR(SObject) sobj = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().data() );
498     CORBA::Object_var obj = SMESH::SObjectToObject( sobj );
499
500     if ( !CORBA::is_nil( obj ) ) {
501       SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( obj );
502       if ( !CORBA::is_nil( mesh ) )
503         return mesh->NbNodes();
504       SMESH::SMESH_subMesh_var aSubMeshObj = SMESH::SMESH_subMesh::_narrow( obj );
505       if ( !CORBA::is_nil( aSubMeshObj ) )
506         return aSubMeshObj->GetNumberOfNodes(true);
507       SMESH::SMESH_GroupBase_var aGroupObj = SMESH::SMESH_GroupBase::_narrow( obj );
508       if ( !CORBA::is_nil( aGroupObj ) )
509         return aGroupObj->IsEmpty() ? 0 : 1; // aGroupObj->Size();
510     }
511   }
512   return 0;
513 }
514
515 //================================================================================
516 /*!
517  * \brief return dimension of elements of the selected object
518  *
519  *  \retval int - 0 for 0D elements, -1 for an empty object (the rest as usual)
520  */
521 //================================================================================
522
523 int SMESHGUI_Selection::dim( int ind ) const
524 {
525   int dim = -1;
526   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
527   {
528     _PTR(SObject) sobj = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().data() );
529     CORBA::Object_var obj = SMESH::SObjectToObject( sobj );
530
531     if ( !CORBA::is_nil( obj ) ) {
532       SMESH::SMESH_IDSource_var idSrc = SMESH::SMESH_IDSource::_narrow( obj );
533       if ( !CORBA::is_nil( idSrc ) )
534       {
535         SMESH::array_of_ElementType_var types = idSrc->GetTypes();
536         for ( size_t i = 0; i < types->length(); ++ i) {
537           switch ( types[i] ) {
538           case SMESH::EDGE  : dim = std::max( dim, 1 ); break;
539           case SMESH::FACE  : dim = std::max( dim, 2 ); break;
540           case SMESH::VOLUME: dim = std::max( dim, 3 ); break;
541           case SMESH::ELEM0D: dim = std::max( dim, 0 ); break;
542           case SMESH::BALL  : dim = std::max( dim, 0 ); break;
543           default: break;
544           }
545         }
546       }
547     }
548   }
549   return dim;
550 }
551
552 //=======================================================================
553 //function : hasAlgo
554 //purpose  : return true for a ready-to-compute [sub-]mesh
555 //=======================================================================
556
557 bool SMESHGUI_Selection::hasAlgo( int ind ) const
558 {
559   if ( ind >= 0 && ind < myTypes.count() && ( myTypes[ind] == "Mesh" ||
560                                               myTypes[ind].startsWith("Mesh " )))
561   {
562     QMap<int,int> modeMap;
563     _PTR(SObject) meshSO = SMESH::getStudy()->FindObjectID( entry( ind ).toStdString() );
564
565     SMESHGUI_PrecomputeOp::getAssignedAlgos( meshSO, modeMap );
566     return modeMap.size() > 0;
567   }
568   return false;
569 }
570
571
572 //=======================================================================
573 //function : hasAlgo
574 //purpose  : return true if a mesh was computed with errors
575 //=======================================================================
576
577 bool SMESHGUI_Selection::hasErrors( int ind ) const
578 {
579   if ( ind >= 0 && ind < myTypes.count() && ( myTypes[ind] == "Mesh"))
580   {
581     _PTR(SObject)       meshSO = SMESH::getStudy()->FindObjectID( entry( ind ).toStdString() );
582     CORBA::Object_var      obj = SMESH::SObjectToObject( meshSO );
583     SMESH::SMESH_Mesh_var mesh = SMESH::SMESH_Mesh::_narrow( obj );
584     if ( !CORBA::is_nil( mesh ) )
585     {
586       SMESH::SMESH_Gen_var   gen = SMESHGUI::GetSMESHGUI()->GetSMESHGen();
587       GEOM::GEOM_Object_var geom = mesh->GetShapeToMesh();
588       SMESH::compute_error_array_var compErrors = gen->GetComputeErrors( mesh, geom );
589       return compErrors->length();
590     }
591   }
592   return false;
593 }
594
595 //=======================================================================
596 //function : isComputable
597 //purpose  : Return true if a [sub-]mesh does not have "computed" icon
598 //=======================================================================
599
600 bool SMESHGUI_Selection::isComputable( int ind ) const
601 {
602   if ( ind >= 0 && ind < myTypes.count() && ( myTypes[ind] == "Mesh" ||
603                                               myTypes[ind].startsWith("Mesh " )))
604   {
605     _PTR(GenericAttribute) attr;
606     if ( _PTR(SObject) meshSO = SMESH::getStudy()->FindObjectID( entry( ind ).toStdString() ))
607       if ( meshSO->FindAttribute( attr, "AttributePixMap" ))
608       {
609         _PTR(AttributePixMap) pixmap = attr;
610         return ( pixmap->GetPixMap() != "ICON_SMESH_TREE_MESH" );
611       }
612   }
613   return false;
614 }
615
616 //=======================================================================
617 //function : isPreComputable
618 //purpose  : returns true for a mesh with algorithms
619 //=======================================================================
620
621 bool SMESHGUI_Selection::isPreComputable( int ind ) const
622 {
623   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] == "Mesh" )
624   {
625     int maxDim = dim( ind );
626     if ( maxDim < 2 ) // we can preview 1D or 2D
627     {
628       QMap<int,int> modeMap;
629       _PTR(SObject) pMesh = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().data() );
630       SMESHGUI_PrecomputeOp::getAssignedAlgos( pMesh, modeMap );
631       if ( modeMap.size() > 1 )
632         return (( modeMap.contains( SMESH::DIM_3D )) ||
633                 ( modeMap.contains( SMESH::DIM_2D ) && maxDim < 1 ));
634     }
635   }
636   return false;
637 }
638
639 //=======================================================================
640 //function : hasGeomReference
641 //purpose  : returns true for a mesh or sub-mesh on geometry
642 //=======================================================================
643
644 bool SMESHGUI_Selection::hasGeomReference( int ind ) const
645 {
646   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
647   {
648     _PTR(SObject) so = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().data() );
649     GEOM::GEOM_Object_var shape = SMESH::GetShapeOnMeshOrSubMesh( so );
650     return !shape->_is_nil();
651   }
652   return false;
653 }
654
655 //=======================================================================
656 //function : canBreakLink
657 //purpose  : returns true if selected object is a Shaper object and it can break link
658 //=======================================================================
659
660 bool SMESHGUI_Selection::canBreakLink( int ind ) const
661 {
662   if ( ind >= 0 && isReference(ind) ) {
663     QString aEntry = objectInfo(ind, OI_RefEntry).toString();
664     if (!aEntry.isEmpty()) {
665       _PTR(SObject) aSObject = SMESH::getStudy()->FindObjectID( aEntry.toStdString());
666       if (aSObject) {
667         _PTR(SObject) aFatherObj = aSObject->GetFather();
668         if (aFatherObj) {
669           _PTR(SComponent) aComponent = aFatherObj->GetFatherComponent();
670           if (aComponent && aComponent->ComponentDataType() == "SMESH") {
671             QString aObjEntry = entry(ind);
672             _PTR(SObject) aGeomSObject = SMESH::getStudy()->FindObjectID(aObjEntry.toStdString());
673             GEOM::GEOM_Object_var aObject = SMESH::SObjectToInterface<GEOM::GEOM_Object>(aGeomSObject);
674             if (!aObject->_is_nil())
675               return aObject->IsParametrical();
676           }
677         }
678       }
679     }
680   }
681   return false;
682 }
683
684 //=======================================================================
685 //function : isEditableHyp
686 //purpose  : 
687 //=======================================================================
688
689 bool SMESHGUI_Selection::isEditableHyp( int ind ) const
690 {
691   bool isEditable = true;
692   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] == "Hypothesis" )
693   {
694     _PTR(SObject) so = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().data() );
695     SMESH::SMESH_Hypothesis_var hyp = SMESH::SObjectToInterface<SMESH::SMESH_Hypothesis>( so );
696     if ( !hyp->_is_nil() )
697     {
698       isEditable = hyp->HasParameters();
699     }
700   }
701   return isEditable;
702 }
703
704 //=======================================================================
705 //function : isVisible
706 //purpose  : 
707 //=======================================================================
708
709 bool SMESHGUI_Selection::isVisible( int ind ) const
710 {
711   if ( ind >= 0 && ind < myTypes.count() && myTypes[ind] != "Unknown" )
712   {
713     SMESH_Actor* actor = SMESH::FindActorByEntry( entry( ind ).toUtf8().data() );
714     if ( actor && actor->hasIO() ) {
715       if ( SVTK_ViewWindow* aViewWindow = SMESH::GetCurrentVtkView() )
716         return aViewWindow->isVisible( actor->getIO() );
717     }
718   }
719   return false;
720 }
721
722 //=======================================================================
723 //function : hasChildren
724 //purpose  : 
725 //=======================================================================
726
727 bool SMESHGUI_Selection::hasChildren( int ind ) const
728 {
729   if ( ind >= 0 )
730   {
731     _PTR(SObject) sobj = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().data() );
732     if ( sobj ) 
733       return SMESH::getStudy()->GetUseCaseBuilder()->HasChildren( sobj );
734   }
735   return false;
736 }
737
738 //=======================================================================
739 //function : hasChildren
740 //purpose  : 
741 //=======================================================================
742
743 int SMESHGUI_Selection::nbChildren( int ind ) const
744 {
745   int nb = 0;
746   if ( ind >= 0 )
747   {
748     _PTR(Study) study = SMESH::getStudy();
749     _PTR(SObject) sobj = study->FindObjectID( entry( ind ).toUtf8().data() );
750     if ( sobj && study->GetUseCaseBuilder()->IsUseCaseNode( sobj ) ) {
751       _PTR(UseCaseIterator) it = study->GetUseCaseBuilder()->GetUseCaseIterator( sobj );
752       for ( it->Init( false ); it->More(); it->Next() ) nb++;
753     }
754   }
755   return nb;
756 }
757
758 //=======================================================================
759 //function : isContainer
760 //purpose  : 
761 //=======================================================================
762
763 bool SMESHGUI_Selection::isContainer( int ind ) const
764 {
765   return ind >= 0 && ind < myTypes.count() && myTypes[ind] == "Unknown";
766 }
767
768 //=======================================================================
769 //function : type
770 //purpose  : 
771 //=======================================================================
772
773 int SMESHGUI_Selection::type( const QString& entry )
774 {
775   int res = -1;
776   _PTR(SObject) obj = SalomeApp_Application::getStudy()->FindObjectID( entry.toUtf8().data() );
777   if ( obj ) {
778     _PTR(SObject) ref;
779     if ( obj->ReferencedObject( ref ) )
780       obj = ref;
781
782     _PTR(SObject) objFather = obj->GetFather();
783     _PTR(SComponent) objComponent = obj->GetFatherComponent();
784
785     if ( objComponent->ComponentDataType() == "SMESH" ) {
786       if ( objComponent->GetIOR() == obj->GetIOR() ) {
787         res = SMESH::COMPONENT;
788       }
789       else {
790         int aLevel = obj->Depth() - objComponent->Depth(),
791           aFTag = objFather->Tag(),
792           anOTag = obj->Tag();
793
794         switch ( aLevel )
795         {
796         case 1:
797           if ( anOTag >= SMESH::Tag_FirstMeshRoot )
798             res = SMESH::MESH;
799           break;
800         case 2:
801           switch ( aFTag )
802           {
803           case SMESH::Tag_HypothesisRoot: res = SMESH::HYPOTHESIS; break;
804           case SMESH::Tag_AlgorithmsRoot: res = SMESH::ALGORITHM;  break;
805           default: break;
806           }
807           break;
808         case 3:
809           switch ( aFTag )
810           {
811           case SMESH::Tag_SubMeshOnVertex:   res = SMESH::SUBMESH_VERTEX;   break;
812           case SMESH::Tag_SubMeshOnEdge:     res = SMESH::SUBMESH_EDGE;     break;
813           case SMESH::Tag_SubMeshOnFace:     res = SMESH::SUBMESH_FACE;     break;
814           case SMESH::Tag_SubMeshOnSolid:    res = SMESH::SUBMESH_SOLID;    break;
815           case SMESH::Tag_SubMeshOnCompound: res = SMESH::SUBMESH_COMPOUND; break;
816           default:
817             if ( aFTag >= SMESH::Tag_FirstGroup) res = SMESH::GROUP;
818             else                                 res = SMESH::SUBMESH;
819             break;
820           }
821           break;
822         }
823       }
824     }
825   }
826   return res;
827 }
828
829 //=======================================================================
830 //function : typeName
831 //purpose  : 
832 //=======================================================================
833
834 QString SMESHGUI_Selection::typeName( const int t )
835 {
836   QString res = "Unknown";
837   switch( t )
838   {
839   case SMESH::HYPOTHESIS:
840     res = "Hypothesis"; break;
841   case SMESH::ALGORITHM:
842     res = "Algorithm"; break;
843   case SMESH::MESH:
844     res = "Mesh"; break;
845   case SMESH::SUBMESH:
846     res = "SubMesh"; break;
847   case SMESH::MESHorSUBMESH:
848     res = "Mesh or submesh"; break;
849   case SMESH::SUBMESH_VERTEX:
850     res = "Mesh vertex"; break;
851   case SMESH::SUBMESH_EDGE:
852     res = "Mesh edge"; break;
853   case SMESH::SUBMESH_FACE:
854     res = "Mesh face"; break;
855   case SMESH::SUBMESH_SOLID:
856     res = "Mesh solid"; break;
857   case SMESH::SUBMESH_COMPOUND:
858     res = "Mesh compound"; break;
859   case SMESH::GROUP:
860     res = "Group"; break;
861   case SMESH::COMPONENT:
862     res = "Component"; break;
863   default:
864      break;
865   }
866   return res;
867 }
868
869 bool SMESHGUI_Selection::isImported( const int ind ) const
870 {
871   bool res = false;
872   _PTR(SObject) sobj = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().constData() );
873   if ( sobj )
874   {
875     SMESH::SMESH_Mesh_var aMesh = SMESH::SMESH_Mesh::_narrow( SMESH::SObjectToObject( sobj ) );
876     if( !aMesh->_is_nil() )
877     {
878       SMESH::MedFileInfo_var inf = aMesh->GetMEDFileInfo();
879       res = strlen( (char*)inf->fileName ) > 0;
880     }
881   }
882   return res;
883 }
884
885 //=======================================================================
886 //function : guiState
887 //purpose  : 
888 //=======================================================================
889
890 int SMESHGUI_Selection::guiState()
891 {
892   return SMESHGUI::GetSMESHGUI() ? SMESHGUI::GetSMESHGUI()->GetState() : -1;
893 }
894
895 //=======================================================================
896 //function : groupType
897 //purpose  : 
898 //=======================================================================
899
900 QString SMESHGUI_Selection::groupType( int ind ) const
901 {
902   _PTR(SObject) sobj = SMESH::getStudy()->FindObjectID( entry( ind ).toUtf8().constData() );
903   if ( sobj )
904   {
905     SMESH::SMESH_Group_var g = SMESH::SObjectToInterface<SMESH::SMESH_Group>( sobj );
906     if ( !CORBA::is_nil( g ) )
907       return "Group";
908     SMESH::SMESH_GroupOnGeom_var gog = SMESH::SObjectToInterface<SMESH::SMESH_GroupOnGeom>( sobj );
909     if( !CORBA::is_nil( gog ) )
910       return "GroupOnGeom";
911     SMESH::SMESH_GroupOnFilter_var gof = SMESH::SObjectToInterface<SMESH::SMESH_GroupOnFilter>( sobj );
912     if ( !CORBA::is_nil( gof ) )
913       return "GroupOnFilter";
914   }
915   return "";
916 }