Salome HOME
A new event Visual Attributes Changed is defined for performance sake.
[modules/shaper.git] / src / PartSet / PartSet_ExternalPointsMgr.h
index 718902afb71f95ad002764696baefc6f64cc9d4f..103b05e657c1ba8cf63b1f31fe31a32f933263e2 100644 (file)
@@ -1,4 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+// Copyright (C) 2017-2019  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
+//
 
 // File:        PartSet_ExternalPointsMgr.h
 // Created:     26 April 2017
@@ -29,11 +46,12 @@ class PartSet_ExternalPointsMgr: public QObject
 {
   Q_OBJECT
 public:
-  PartSet_ExternalPointsMgr(ModuleBase_IWorkshop* theWorkshop, const CompositeFeaturePtr& theSketch);
+  PartSet_ExternalPointsMgr(ModuleBase_IWorkshop* theWorkshop,
+                            const CompositeFeaturePtr& theSketch);
 
   virtual ~PartSet_ExternalPointsMgr();
 
-private slots:
+public slots:
   /**
   * A slot which processes display of object
   * \param theObj the displayed object
@@ -48,6 +66,9 @@ private slots:
   */
   void onEraseObject(ObjectPtr theObj, AISObjectPtr theAIS);
 
+  // Called on selection changed
+  void onSelectionChanged();
+
 private:
   /**
   * Returns list of presentations which have displayed shapes with circular edges
@@ -62,14 +83,24 @@ private:
   /// Returns plane of the current sketch
   GeomPlanePtr plane() const;
 
+  /**
+  * Checks that the given object is an object of the current sketch
+  * \param theRes an object to check
+  * \return True if the given object is a sub-object of the current sketch
+  */
   bool isSketchObject(const ObjectPtr& theRes) const;
 
 private:
+  /// Workshop
   ModuleBase_IWorkshop* myWorkshop;
+
+  /// Current sketch
   CompositeFeaturePtr mySketch;
 
+  /// Type for list of created AIS objects
   typedef QList<AISObjectPtr> ListOfAIS;
 
+  /// Map of created AIS objects
   QMap<ObjectPtr, ListOfAIS> myPresentations;
 };