Salome HOME
updated copyright message
[modules/shaper.git] / src / PartSet / PartSet_PreviewPlanes.h
old mode 100755 (executable)
new mode 100644 (file)
index d64f10f..cb82de9
@@ -1,8 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:        PartSet_PreviewPlanes.h
-// Created:     22 Mar 2016
-// Author:      Natalia ERMOLAEVA
+// Copyright (C) 2014-2023  CEA/DEN, EDF R&D
+//
+// 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, or (at your option) any later version.
+//
+// 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
+//
 
 #ifndef PartSet_PreviewPlanes_H
 #define PartSet_PreviewPlanes_H
 
 class ModuleBase_IWorkshop;
 
-/// the plane edge width
-#define SKETCH_WIDTH        "4"
-/// face of the square-face displayed for selection of general plane
-#define PLANE_SIZE          "200"
-
 /**
 * \class PartSet_PreviewPlanes
 * \ingroup Modules
@@ -38,11 +46,20 @@ public:
   /// \return boolean value
   static bool hasVisualizedBodies(ModuleBase_IWorkshop* theWorkshop);
 
-  /// Returns if the preview was displayed
+  /// Returns true if there is at least one Sketch visualized in the viewer
   /// \param theWorkshop the application workshop
   /// \return boolean value
+  static bool hasVisualizedSketch(ModuleBase_IWorkshop* theWorkshop);
+
+  /// Returns if the preview was displayed
+  /// \return boolean value
   bool isPreviewDisplayed() const { return myPreviewDisplayed; }
 
+  /// Returns true if the shape is one of the preview shapes
+  /// \param theShape a shape to be checked
+  /// \return boolean value
+  bool isPreviewShape(std::shared_ptr<GeomAPI_Shape> theShape);
+
   /// Erase preview planes
   /// \param theWorkshop the application workshop
   void erasePreviewPlanes(ModuleBase_IWorkshop* theWorkshop);
@@ -56,8 +73,8 @@ private:
    /// \param theOrigin an origin of the plane
    /// \param theNorm a normal vector of the plane
    /// \param theRGB a color of plane presentation [r, g, b] array
-  AISObjectPtr createPreviewPlane(std::shared_ptr<GeomAPI_Pnt> theOrigin, 
-                                  std::shared_ptr<GeomAPI_Dir> theNorm, 
+  AISObjectPtr createPreviewPlane(std::shared_ptr<GeomAPI_Pnt> theOrigin,
+                                  std::shared_ptr<GeomAPI_Dir> theNorm,
                                   const int theRGB[3]);
 
 private: