]> SALOME platform Git repositories - modules/shaper.git/blob - src/FeaturesPlugin/FeaturesPlugin_Recover.h
Salome HOME
Task 3.3. Recovering Compsolids and Compounds
[modules/shaper.git] / src / FeaturesPlugin / FeaturesPlugin_Recover.h
1 // Copyright (C) 2014-2019  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 email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef FEATURESPLUGIN_RECOVER_H_
21 #define FEATURESPLUGIN_RECOVER_H_
22
23 #include "FeaturesPlugin.h"
24 #include <ModelAPI_Feature.h>
25 #include <GeomAPI_Shape.h>
26
27 /**\class FeaturesPlugin_Recover
28  * \ingroup Plugins
29  * \brief Feature for display of concealed attributes of some feature.
30  */
31 class FeaturesPlugin_Recover : public ModelAPI_Feature
32 {
33   /// List of already registered unconcealed pairs of unconcealed result and feature that caused
34   /// concealment. If attributes of this feature were changed, this list helps to synchronise
35   /// the current state with validators.
36   std::set<std::shared_ptr<ModelAPI_Object> > myRegistered;
37   /// The last stored Base to unregister Unconcealed when even attributes are already erased.
38   FeaturePtr myCurrentBase;
39   /// previous state of persistent flag
40   bool myPersistent;
41  public:
42   /// Extrusion kind
43   inline static const std::string& ID()
44   {
45     static const std::string MY_RECOVER_ID("Recover");
46     return MY_RECOVER_ID;
47   }
48   /// Attribute name of base feature.
49   inline static const std::string& BASE_FEATURE()
50   {
51     static const std::string MY_BASE_FEATURE("base_feature");
52     return MY_BASE_FEATURE;
53   }
54
55   /// Attribute name of recovered results list.
56   inline static const std::string& RECOVERED_ENTITIES()
57   {
58     static const std::string MY_RECOVERED_ENTITIES_ID("recovered");
59     return MY_RECOVERED_ENTITIES_ID;
60   }
61
62   /// Attribute name of the type of recover.
63   inline static const std::string& METHOD()
64   {
65     static const std::string MY_METHOD_ID("method");
66     return MY_METHOD_ID;
67   }
68
69   /// Value of default method, recovering concealed objects only.
70   inline static const std::string& METHOD_DEFAULT()
71   {
72     static const std::string MY_METHOD_ID("default");
73     return MY_METHOD_ID;
74   }
75   /// Value of method, recovering parent compounds of concealed objects.
76   inline static const std::string& METHOD_COMPOUND()
77   {
78     static const std::string MY_METHOD_ID("compound");
79     return MY_METHOD_ID;
80   }
81
82   /// Returns the kind of a feature
83   FEATURESPLUGIN_EXPORT virtual const std::string& getKind()
84   {
85     static std::string MY_KIND = FeaturesPlugin_Recover::ID();
86     return MY_KIND;
87   }
88
89   /// Creates a new part document if needed
90   FEATURESPLUGIN_EXPORT virtual void execute();
91
92   /// Request for initialization of data model of the feature: adding all attributes
93   FEATURESPLUGIN_EXPORT virtual void initAttributes();
94
95   /// Called on change of any argument-attribute of this object
96   /// \param theID identifier of changed attribute
97   FEATURESPLUGIN_EXPORT virtual void attributeChanged(const std::string& theID);
98
99   /// Use plugin manager for features creation
100   FeaturesPlugin_Recover();
101
102 };
103
104 #endif