Salome HOME
Update copyrights
[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   /// Returns the kind of a feature
63   FEATURESPLUGIN_EXPORT virtual const std::string& getKind()
64   {
65     static std::string MY_KIND = FeaturesPlugin_Recover::ID();
66     return MY_KIND;
67   }
68
69   /// Creates a new part document if needed
70   FEATURESPLUGIN_EXPORT virtual void execute();
71
72   /// Request for initialization of data model of the feature: adding all attributes
73   FEATURESPLUGIN_EXPORT virtual void initAttributes();
74
75   /// Use plugin manager for features creation
76   FeaturesPlugin_Recover();
77
78 };
79
80 #endif