Salome HOME
Merge remote-tracking branch 'origin/Toolbars_Management'
[modules/shaper.git] / src / Selector / Selector_Primitive.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef Selector_Primitive_H_
22 #define Selector_Primitive_H_
23
24 #include "Selector_Algo.h"
25
26 /**\class Selector_Primitive
27  * \ingroup DataModel
28  * \brief Kind of selection algorithm: exact referencing to alone shape in the data structure.
29  */
30 class Selector_Primitive: public Selector_Algo
31 {
32   TDF_Label myFinal; ///< final label of the where the value is
33 public:
34   /// Initializes the selection of this kind
35   /// \param theLabel the final label with the primitive shape
36   SELECTOR_EXPORT void select(const TDF_Label theFinalLabel);
37
38   /// Stores the name to the label and sub-labels tree
39   SELECTOR_EXPORT virtual void store() override;
40
41   /// Restores the selected shape by the topological naming kept in the data structure
42   /// Returns true if it can restore structure correctly
43   SELECTOR_EXPORT virtual bool restore() override;
44
45   /// Restores the selected shape by the topological name string.
46   /// Returns not empty label of the context.
47   SELECTOR_EXPORT virtual TDF_Label restoreByName(std::string theName,
48     const TopAbs_ShapeEnum theShapeType, Selector_NameGenerator* theNameGenerator) override;
49
50   /// Updates the current shape by the stored topological name
51   SELECTOR_EXPORT virtual bool solve(const TopoDS_Shape& theContext) override;
52
53   /// Returns the naming name of the selection
54   SELECTOR_EXPORT virtual std::string name(Selector_NameGenerator* theNameGenerator) override;
55 private:
56   /// Initializes selector
57   Selector_Primitive();
58
59   friend class Selector_Algo;
60 };
61
62 #endif