X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPartSetPlugin%2FPartSetPlugin_Part.h;h=0610a68ab3d73429346a73d176cdee4ba09e08cf;hb=42dfdea5422ab72d81c36155b4c6f352c85c1110;hp=5b7d63e4947d53269f7ef29a52995e1916ef59b9;hpb=72cb66f9c09b0f8fa224f6f8ab43548658015b49;p=modules%2Fshaper.git diff --git a/src/PartSetPlugin/PartSetPlugin_Part.h b/src/PartSetPlugin/PartSetPlugin_Part.h index 5b7d63e49..0610a68ab 100644 --- a/src/PartSetPlugin/PartSetPlugin_Part.h +++ b/src/PartSetPlugin/PartSetPlugin_Part.h @@ -8,13 +8,14 @@ #define PartSetPlugin_Part_H_ #include "PartSetPlugin.h" -#include +#include /**\class PartSetPlugin_Part * \ingroup Plugins * \brief Feature for creation of the new part in PartSet. + * All sub-features are sub-elements of composite feature. */ -class PartSetPlugin_Part : public ModelAPI_Feature +class PartSetPlugin_Part : public ModelAPI_CompositeFeature { public: /// Part kind @@ -43,13 +44,29 @@ class PartSetPlugin_Part : public ModelAPI_Feature /// Request for initialization of data model of the feature: adding all attributes PARTSETPLUGIN_EXPORT virtual void initAttributes(); - PARTSETPLUGIN_EXPORT virtual std::shared_ptr documentToAdd(); + /// Part must be added only to PartSet + PARTSETPLUGIN_EXPORT virtual const std::string& documentToAdd(); - /// Returns true if this feature must be displayed in the history (top level of Part tree) - PARTSETPLUGIN_EXPORT virtual bool isInHistory() - { - return false; - } + // composite feature methods + + /// Adds feature to its document + virtual std::shared_ptr addFeature(std::string theID); + + /// Returns the number of sub-features of the document + virtual int numberOfSubs(bool forTree = false) const; + + /// Returns the sub-feature by zero-base index + virtual std::shared_ptr subFeature(const int theIndex, bool forTree = false) const; + + /// Returns the sub-feature unique identifier in this composite feature by zero-base index + virtual int subFeatureId(const int theIndex) const; + + /// Returns true if feature or reuslt belong to this composite feature as subs + virtual bool isSub(ObjectPtr theObject) const; + + /// This method to inform that sub-feature is removed and must be removed from the internal data + /// structures of the owner (the remove from the document will be done outside just after) + virtual void removeFeature(std::shared_ptr theFeature); /// Use plugin manager for features creation PartSetPlugin_Part();