Salome HOME
Fix of transparency on Mandriva2010: it didn't worked because of the returned 'testRe...
[modules/geom.git] / src / GEOMFiltersSelection / GEOM_FaceFilter.cxx
index aefda178f40f3a5231d753ea062243bd5d5bb985..244cd61168cf0667b4e8141798d005b92dc9747f 100644 (file)
-using namespace std;
-//  File      : GEOM_FaceFilter.cxx
-//  Created   : Fri Dec 07 09:57:24 2001
-//  Author    : Nicolas REJNERI
-//  Project   : SALOME
-//  Module    : GEOM
-//  Copyright : Open CASCADE
-//  $Header$
+//  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
+//
+//  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+//  This library is free software; you can redistribute it and/or
+//  modify it under the terms of the GNU Lesser General Public
+//  License as published by the Free Software Foundation; either
+//  version 2.1 of the License.
+//
+//  This library is distributed in the hope that it will be useful,
+//  but WITHOUT ANY WARRANTY; without even the implied warranty of
+//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+//  Lesser General Public License for more details.
+//
+//  You should have received a copy of the GNU Lesser General Public
+//  License along with this library; if not, write to the Free Software
+//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
-#include "GEOM_FaceFilter.ixx"
-#include "GEOM_Client.hxx"
+#include "GEOM_FaceFilter.h"
 
-#include "SALOME_InteractiveObject.hxx"
-#include "GEOM_InteractiveObject.hxx"
-#include "GEOM_ShapeTypeFilter.hxx"
-#include "SALOME_TypeFilter.hxx"
-
-#include "utilities.h"
-#include "QAD_Application.h"
-#include "QAD_Desktop.h"
-#include "QAD_Study.h"
-
-// Open CASCADE Includes
 #include <BRepAdaptor_Surface.hxx>
 #include <TopoDS_Face.hxx>
-#include <TopoDS_Shape.hxx>
 #include <TopoDS.hxx>
-#include <TopAbs.hxx>
-
+#include <StdSelect_TypeOfFace.hxx>
 
-static GEOM_Client  ShapeReader;
-
-/*!
-  enumeration TypeOfFace is AnyFace,Plane,Cylinder,Sphere,Torus,Revol,Cone;
-*/
-GEOM_FaceFilter::GEOM_FaceFilter(const StdSelect_TypeOfFace Face,
-                                GEOM::GEOM_Gen_ptr geom) 
+//=======================================================================
+// function : GEOM_FaceFilter
+// purpose  : 
+//=======================================================================
+GEOM_FaceFilter::GEOM_FaceFilter( SalomeApp_Study* study, const int kind )
+: GEOM_SelectionFilter( study ),
+myKind( kind )
 {
-  myKind = Face;
-  myComponentGeom = GEOM::GEOM_Gen::_narrow(geom);
+  add( TopAbs_FACE );
 }
 
-Standard_Boolean GEOM_FaceFilter::IsOk(const Handle(SALOME_InteractiveObject)& anObj) const 
+//=======================================================================
+// function : ~GEOM_SelectionFilter
+// purpose  : 
+//=======================================================================
+GEOM_FaceFilter::~GEOM_FaceFilter()
 {
-  Handle(SALOME_TypeFilter) GeomFilter = new SALOME_TypeFilter( "GEOM" );
-  if ( !GeomFilter->IsOk(anObj) ) 
-    return false;
-
-  Handle(GEOM_ShapeTypeFilter) GeomShapeTypeFilter = new GEOM_ShapeTypeFilter( TopAbs_FACE, myComponentGeom );
-  if ( !GeomShapeTypeFilter->IsOk(anObj) ) 
-    return false;
+}
 
-  if ( anObj->hasEntry() ) {
-    QAD_Study* ActiveStudy = QAD_Application::getDesktop()->getActiveStudy();
-    SALOMEDS::Study_var aStudy = ActiveStudy->getStudyDocument();
-    SALOMEDS::SObject_var obj = aStudy->FindObjectID( anObj->getEntry() );
-    SALOMEDS::GenericAttribute_var anAttr;
-    SALOMEDS::AttributeIOR_var     anIOR;
-    if ( !obj->_is_nil() ) {
-       if (obj->FindAttribute(anAttr, "AttributeIOR")) {
-         anIOR = SALOMEDS::AttributeIOR::_narrow(anAttr);
-        GEOM::GEOM_Shape_var aShape = myComponentGeom->GetIORFromString( anIOR->Value() );  
-        if ( aShape->_is_nil() )
-          return false;
-     
-        TopoDS_Shape    Shape = ShapeReader.GetShape( myComponentGeom, aShape );
-        if ( Shape.IsNull() )
-          return false;
-        
-        switch (myKind) {
-        case StdSelect_AnyFace:
-          return Standard_True;
-        case StdSelect_Plane:
-          {
-            BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-            return (surf.GetType() == GeomAbs_Plane);
-          }
-        case StdSelect_Cylinder:
-          {
-            BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-            return (surf.GetType() == GeomAbs_Cylinder);
-          }
-        case StdSelect_Sphere: 
-          {
-            BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-            return (surf.GetType() == GeomAbs_Sphere);      
-          }
-        case StdSelect_Torus: 
-          {
-            BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-            return ( surf.GetType() == GeomAbs_Torus);      
-          }
-        case StdSelect_Revol: 
-          {
-            BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-            return ( surf.GetType() == GeomAbs_Cylinder || 
-                     surf.GetType() == GeomAbs_Cone     ||
-                     surf.GetType() == GeomAbs_Torus    ||
-                     surf.GetType() == GeomAbs_Sphere    || 
-                     surf.GetType() == GeomAbs_SurfaceOfRevolution ); 
-          }
-        case StdSelect_Cone: // en attendant la liberation du cdl, on l'utilise pour Cone
-          {
-            BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-            return (surf.GetType() == GeomAbs_Cone);      
-          }     
-        }
-       }
-    }
-  }
-    
-  if ( anObj->IsInstance(STANDARD_TYPE(GEOM_InteractiveObject)) ) {
-    Handle(GEOM_InteractiveObject) GObject =
-      Handle(GEOM_InteractiveObject)::DownCast(anObj);
-    
-    GEOM::GEOM_Shape_var aShape = myComponentGeom->GetIORFromString( GObject->getIOR() );  
-    if ( aShape->_is_nil() )
-      return false;
-    
-    TopoDS_Shape    Shape = ShapeReader.GetShape( myComponentGeom, aShape );
-    if ( Shape.IsNull() )
-      return false;
-    
-    switch (myKind) {
-    case StdSelect_AnyFace:
-      return Standard_True;
-    case StdSelect_Plane:
-      {
-       BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-       return (surf.GetType() == GeomAbs_Plane);
-      }
-    case StdSelect_Cylinder:
-      {
-       BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-       return (surf.GetType() == GeomAbs_Cylinder);
-      }
-    case StdSelect_Sphere: 
-      {
-       BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-       return (surf.GetType() == GeomAbs_Sphere);      
-      }
-    case StdSelect_Torus: 
-      {
-       BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-       return ( surf.GetType() == GeomAbs_Torus);      
-      }
-    case StdSelect_Revol: 
-      {
-       BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-       return ( surf.GetType() == GeomAbs_Cylinder || 
-                surf.GetType() == GeomAbs_Cone     ||
-                surf.GetType() == GeomAbs_Torus    ||
-                surf.GetType() == GeomAbs_Sphere         || 
-                surf.GetType() == GeomAbs_SurfaceOfRevolution ); 
-      }
-    case StdSelect_Cone: // en attendant la liberation du cdl, on l'utilise pour Cone
-      {
-       BRepAdaptor_Surface surf(TopoDS::Face(Shape));
-       return (surf.GetType() == GeomAbs_Cone);      
-      }         
+//=======================================================================
+// function : isShapeOk
+// purpose  : 
+//=======================================================================
+bool GEOM_FaceFilter::isShapeOk( const TopoDS_Shape& theShape ) const
+{
+  if ( !theShape.IsNull() && theShape.ShapeType() == TopAbs_FACE )
+  {
+    BRepAdaptor_Surface aSurf( TopoDS::Face( theShape ) );
+    GeomAbs_SurfaceType aType = aSurf.GetType();
+        
+    switch ( myKind ) 
+    {
+    case StdSelect_AnyFace:   return Standard_True;
+    case StdSelect_Plane:     return ( aType == GeomAbs_Plane );
+    case StdSelect_Cylinder:  return ( aType == GeomAbs_Cylinder);
+    case StdSelect_Sphere:    return ( aType == GeomAbs_Sphere);      
+    case StdSelect_Torus:     return ( aType == GeomAbs_Torus);      
+    case StdSelect_Revol:     return ( aType == GeomAbs_Cylinder  || 
+                                       aType == GeomAbs_Cone      ||
+                                       aType == GeomAbs_Torus     ||
+                                       aType == GeomAbs_Sphere    || 
+                                       aType == GeomAbs_SurfaceOfRevolution ); 
+    case StdSelect_Cone:      return ( aType == GeomAbs_Cone);      
     }
   }
   return false;
 }
+