X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModelAPI%2FModelAPI_ResultPart.h;h=1d66dba1885b03b0d1e751aa403a26abd721de7d;hb=42de443bf267cba7278df5dd4ae8a5f19612bd25;hp=f0db94ee31b44cc9a6fd52207d1c5016020e68a2;hpb=4783f146b71a48c651523fcf0e12367bcf3d1fa8;p=modules%2Fshaper.git diff --git a/src/ModelAPI/ModelAPI_ResultPart.h b/src/ModelAPI/ModelAPI_ResultPart.h index f0db94ee3..1d66dba18 100644 --- a/src/ModelAPI/ModelAPI_ResultPart.h +++ b/src/ModelAPI/ModelAPI_ResultPart.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModelAPI_ResultPart.h // Created: 07 Jul 2014 // Author: Mikhail PONIKAROV @@ -6,6 +8,7 @@ #define ModelAPI_ResultPart_H_ #include "ModelAPI_Result.h" +#include #include @@ -20,13 +23,10 @@ class ModelAPI_ResultPart : public ModelAPI_Result { public: /// Returns the group identifier of this result - virtual std::string groupName() - { - return group(); - } + MODELAPI_EXPORT virtual std::string groupName(); /// Returns the group identifier of this result - static std::string group() + inline static std::string group() { static std::string MY_GROUP = "Parts"; return MY_GROUP; @@ -39,11 +39,48 @@ class ModelAPI_ResultPart : public ModelAPI_Result return MY_DOC_REF; } + /// default color for a result body + inline static const std::string& DEFAULT_COLOR() + { + static const std::string RESULT_BODY_COLOR("96,157,255"); + return RESULT_BODY_COLOR; + } + + // Part result can not be cencealed, even by the movement features + MODELAPI_EXPORT virtual bool isConcealed(); + /// Returns the part-document of this result virtual std::shared_ptr partDoc() = 0; + /// Returns the original part result: for transfomration features results this is + /// the original Part feature result + virtual std::shared_ptr original() = 0; + /// Sets this document as current and if it is not loaded yet, loads it virtual void activate() = 0; + + /// Returns true if document is activated (loaded into the memory) + virtual bool isActivated() = 0; + + /// Returns the name of the shape inside of the part + virtual std::string nameInPart(const std::shared_ptr& theShape, + int& theIndex) = 0; + /// Updates the selection inside of the part by the selection index + virtual bool updateInPart(const int theIndex) = 0; + + /// Applies the additional transformation of the part + virtual void setTrsf(std::shared_ptr theThis, + const std::shared_ptr& theTransformation) = 0; + + /// Returns the shape by the name in the part + virtual std::shared_ptr shapeInPart( + const std::string& theName, const std::string& theType, int& theIndex) = 0; + + /// Returns the shape selected in the selection index + virtual std::shared_ptr selectionValue(const int theIndex) = 0; + + /// Updates the shape-result of the part (called on Part feature execution) + virtual void updateShape() = 0; }; //! Pointer on feature object