Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / PartSetPlugin / PartSetPlugin_Part.h
1 // File:        PartSetPlugin_Part.h
2 // Created:     27 Mar 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef PartSetPlugin_Part_HeaderFile
6 #define PartSetPlugin_Part_HeaderFile
7
8 #include "PartSetPlugin.h"
9 #include <ModelAPI_Feature.h>
10
11 /// part reference attribute
12 const std::string PART_ATTR_DOC_REF = "PartDocument";
13
14 /**\class PartSetPlugin_Part
15  * \ingroup DataModel
16  * \brief Feature for creation of the new part in PartSet.
17  */
18 class PartSetPlugin_Part: public ModelAPI_Feature
19 {
20 public:
21   /// Returns the kind of a feature
22   PARTSETPLUGIN_EXPORT virtual const std::string& getKind() 
23   {static std::string MY_KIND = "Part"; return MY_KIND;}
24
25   /// Returns to which group in the document must be added feature
26   PARTSETPLUGIN_EXPORT virtual const std::string& getGroup() 
27   {static std::string MY_GROUP = "Parts"; return MY_GROUP;}
28
29   /// Creates a new part document if needed
30   PARTSETPLUGIN_EXPORT virtual void execute();
31
32   /// Request for initialization of data model of the feature: adding all attributes
33   PARTSETPLUGIN_EXPORT virtual void initAttributes();
34
35   PARTSETPLUGIN_EXPORT virtual boost::shared_ptr<ModelAPI_Document> documentToAdd();
36
37   /// Returns true if this feature must be displayed in the history (top level of Part tree)
38   PARTSETPLUGIN_EXPORT virtual bool isInHistory() {return false;}
39
40   /// Use plugin manager for features creation
41   PartSetPlugin_Part();
42
43   /// Returns true if this feature must be displayed in the history (top level of Part tree)
44   PARTSETPLUGIN_EXPORT virtual bool isInHistory() {return false;}
45 };
46
47 #endif