X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_AttributeMessage.h;h=e9ab250ea633cbeddab9e34fc07f74f3bac6da1a;hb=51889d235a27d0ee4b3c3237d21d1ea621063580;hp=bfb9b64b1b5c1deb55c6986c7184c8ca78ffaa9e;hpb=1fb822f60336a1ff89c8045ed4486682bfbc21a2;p=modules%2Fshaper.git diff --git a/src/Config/Config_AttributeMessage.h b/src/Config/Config_AttributeMessage.h index bfb9b64b1..e9ab250ea 100644 --- a/src/Config/Config_AttributeMessage.h +++ b/src/Config/Config_AttributeMessage.h @@ -22,6 +22,8 @@ class Config_AttributeMessage : public Events_Message std::string myFeatureId; ///< Attribute's feature's unique id bool myIsObligatory; ///< Required to be set by user, else it's feature is invalid. bool myIsConcealment; ///< If true, conceals features used as input + std::string myCaseId; ///< Attribute's case's id, if it placed inside a paged containers + std::string mySwitchId; ///< Attribute's switch id, if it placed inside a paged containers public: /// Same event as Config_FeatureMessage::MODEL_EVENT() @@ -45,15 +47,23 @@ class Config_AttributeMessage : public Events_Message CONFIG_EXPORT bool isObligatory() const; /// Returns true if attribute should conceal input features CONFIG_EXPORT bool isConcealment() const; + /// Returns id of a case which contain the attribute + CONFIG_EXPORT const std::string& caseId() const; + /// Returns id of a switch which contain the attribute + CONFIG_EXPORT const std::string& switchId() const; /// Set attribute's unique id CONFIG_EXPORT void setAttributeId(const std::string& theId); /// Set attribute's feature's unique id CONFIG_EXPORT void setFeatureId(const std::string& id); - /// Returns attribute's concealment state + /// Set attribute's concealment state CONFIG_EXPORT void setConcealment(bool isConcealment); - /// Returns attribute's obligatory state + /// Set attribute's obligatory state CONFIG_EXPORT void setObligatory(bool isObligatory); + /// Set attribute's case + CONFIG_EXPORT void setCaseId(const std::string& id); + /// Set attribute's switch + CONFIG_EXPORT void setSwitchId(const std::string& id); }; #endif // ATTRIBUTE_MESSAGE_H