]> SALOME platform Git repositories - modules/geom.git/blobdiff - src/OBJECT/GEOM_AISShape.hxx
Salome HOME
0021672: [CEA 565] Dump Study from script
[modules/geom.git] / src / OBJECT / GEOM_AISShape.hxx
index fb8edfbfa14fb98d45d7bd1a566684a9b08e456b..4dfe2c9a199ce23a9a41d221f0b491a7eee2a6f1 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2012  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
@@ -57,6 +57,9 @@
 
 #include <TCollection_AsciiString.hxx>
 
+#include <AIS_DisplayMode.hxx>
+#include <Graphic3d_MaterialAspect.hxx>
+
 class PrsMgr_PresentationManager3d;
 class Prs3d_Presentation;
 class SALOME_InteractiveObject;
@@ -66,6 +69,14 @@ 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;
@@ -89,12 +100,15 @@ public:
         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,
@@ -109,12 +123,37 @@ public:
         const Handle(Standard_Type)& DynamicType() const;
         Standard_Boolean             IsKind(const Handle(Standard_Type)&) const;
 
+        void storeIsoNumbers();
+        void restoreIsoNumbers();
+        void resetIsoNumbers();
+
+        void storeBoundaryColors();
+
+       static Quantity_Color topLevelColor();
+
 protected: 
+  void shadingMode(const Handle(PrsMgr_PresentationManager3d)& aPresentationManager,
+                  const Handle(Prs3d_Presentation)& aPrs,
+                  const Standard_Integer aMode);
+
+  void restoreBoundaryColors();
+
   Quantity_Color myShadingColor;
 
+  Quantity_Color myFreeBoundaryColor;
+  Quantity_Color myUnFreeBoundaryColor;
+
+  Quantity_Color myEdgesInShadingColor;
+
+  int            myUIsoNumber;
+  int            myVIsoNumber;
+
 private: 
   TCollection_AsciiString myName;
-  bool                    myDisplayVectors;
+  bool                     myDisplayVectors;
+  Standard_Boolean         myTopLevel;
+  Graphic3d_MaterialAspect myCurrentMaterial;
+
 };