Salome HOME
Implementation of the "0021239: EDF 1829 OCC: Bring to front selected objects" issue.
[modules/geom.git] / src / OBJECT / GEOM_AISShape.hxx
index 96ae886bade3b4664db20a8101460cc6f75dd53b..21e1c5a7e9831efd0e7a9051561c05acd0f53957 100644 (file)
@@ -1,32 +1,34 @@
-//  GEOM OBJECT : interactive object for Geometry entities visualization
+// Copyright (C) 2007-2011  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
 //
-//  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// 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
+//
+
+//  GEOM OBJECT : interactive object for Geometry entities visualization
 //  File   : GEOM_AISShape.hxx
 //  Module : GEOM
-
+//
 #ifndef _GEOM_AISShape_HeaderFile
 #define _GEOM_AISShape_HeaderFile
 
+#include "GEOM_OBJECT_defs.hxx"
+
 #ifndef _Standard_HeaderFile
 #include <Standard.hxx>
 #endif
 #include <Handle_Prs3d_Presentation.hxx>
 #endif
 
+#include <TCollection_AsciiString.hxx>
+
+#include <AIS_DisplayMode.hxx>
+
 class PrsMgr_PresentationManager3d;
 class Prs3d_Presentation;
 class SALOME_InteractiveObject;
 class TopoDS_Shape;
 
-#if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
-#define OBJECT_WNT_EXPORT __declspec( dllexport )
-#else
-#define OBJECT_WNT_EXPORT
-#endif
-class  OBJECT_WNT_EXPORT GEOM_AISShape : public SALOME_AISShape {
+class GEOM_OBJECT_EXPORT GEOM_AISShape : public SALOME_AISShape {
 
 public:
 
+    //! Enumeration of display modes
+    typedef enum {
+      //WireFrame,       //!< the same as AIS_WireFrame
+      //Shading,         //!< the same as AIS_Shaded
+      ShadingWithEdges = AIS_Shaded+1, //!< shading with edges
+      TexturedShape = ShadingWithEdges+1 //!< the same as AIS_ExactHLR
+    } DispMode;
+
     inline void* operator new(size_t,void* anAddress) 
       {
         return anAddress;
@@ -85,52 +94,64 @@ public:
 //      }
  // Methods PUBLIC
  // 
-       GEOM_AISShape(const TopoDS_Shape& shape, const Standard_CString aName);
-       Standard_Boolean hasIO() ;
-       void setIO(const Handle(SALOME_InteractiveObject)& name) ;
-       void setName(const Standard_CString aName) ;
-       Standard_CString getName() ;
-       Handle_SALOME_InteractiveObject getIO() ;
-       void highlightSubShapes(const TColStd_IndexedMapOfInteger& aIndexMap, const Standard_Boolean aHighlight );
-       ~GEOM_AISShape();
-
-       void SetTransparency(const Standard_Real aValue);
-       void SetShadingColor(const Quantity_Color &aCol);
-
-       virtual  void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
-                                     const Handle(Prs3d_Presentation)& aPresentation,
-                                     const Standard_Integer aMode = 0) ;
-
+        GEOM_AISShape(const TopoDS_Shape& shape, const Standard_CString aName);
+        Standard_Boolean hasIO() ;
+        void setIO(const Handle(SALOME_InteractiveObject)& name) ;
+        void setName(const Standard_CString aName) ;
+        Standard_CString getName() ;
+        Standard_Boolean isTopLevel();
+        void setTopLevel(Standard_Boolean);
+        Handle_SALOME_InteractiveObject getIO() ;
+        void highlightSubShapes(const TColStd_IndexedMapOfInteger& aIndexMap, const Standard_Boolean aHighlight );
+        ~GEOM_AISShape();
+
+        void SetTransparency(const Standard_Real aValue);
+        void SetShadingColor(const Quantity_Color &aCol);
+        void SetEdgesInShadingColor(const Quantity_Color &aCol);
+        void SetDisplayVectors(bool isShow);
+
+        virtual  void Compute(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
+                                      const Handle(Prs3d_Presentation)& aPresentation,
+                                      const Standard_Integer aMode = 0) ;
+
+        virtual  bool isShowVectors () { return myDisplayVectors; }
+        
  // Type management
  //
-       friend Handle_Standard_Type& GEOM_AISShape_Type_();
-       const Handle(Standard_Type)& DynamicType() const;
-       Standard_Boolean              IsKind(const Handle(Standard_Type)&) const;
+        friend Handle_Standard_Type& GEOM_AISShape_Type_();
+        const Handle(Standard_Type)& DynamicType() const;
+        Standard_Boolean             IsKind(const Handle(Standard_Type)&) const;
 
-protected:
-
- // Methods PROTECTED
- // 
-
-
- // Fields PROTECTED
- //
+        void storeIsoNumbers();
+        void restoreIsoNumbers();
+        void resetIsoNumbers();
 
+        void storeBoundaryColors();
 
-private: 
+       static Quantity_Color topLevelColor();
 
- // Methods PRIVATE
- // 
+protected: 
+  void shadingMode(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
+                  const Handle(Prs3d_Presentation)& aPrs,
+                  const Standard_Integer aMode);
 
+  void restoreBoundaryColors();
 
- // Fields PRIVATE
- //
-  Standard_CString myName;
   Quantity_Color myShadingColor;
-};
 
+  Quantity_Color myFreeBoundaryColor;
+  Quantity_Color myUnFreeBoundaryColor;
 
+  Quantity_Color myEdgesInShadingColor;
 
+  int            myUIsoNumber;
+  int            myVIsoNumber;
+
+private: 
+  TCollection_AsciiString myName;
+  bool                    myDisplayVectors;
+  Standard_Boolean        myTopLevel;
+};
 
 
 // other inline functions and methods (like "C++: function call" methods)