X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_SelectionFilterMessage.h;h=fcc54a01097c07e692fc67071233fc5e3fb48466;hb=60e95a5502a6940c6c27ce5d561b3c684b0b0a4f;hp=92b1aa244b0bb03c42b1f3105e229d110c672264;hpb=90b3236f531417dd26780de6bc117bc4d1b55a1a;p=modules%2Fshaper.git diff --git a/src/Config/Config_SelectionFilterMessage.h b/src/Config/Config_SelectionFilterMessage.h index 92b1aa244..fcc54a010 100644 --- a/src/Config/Config_SelectionFilterMessage.h +++ b/src/Config/Config_SelectionFilterMessage.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + /* * Config_SelectionFilterMessage.h * @@ -17,11 +19,16 @@ /// Event ID that Selection Filter is loaded (comes with Config_SelectionFilterMessage) static const char * EVENT_SELFILTER_LOADED = "SelectionFilterLoaded"; +/*! + * \class Config_SelectionFilterMessage + * \brief Transmits info about selection filters on "SelectionFilterLoaded" event + */ class Config_SelectionFilterMessage : public Events_Message { std::string mySelectionFilterId; std::string myFeatureId; std::string myAttributeId; + std::list myFilterParameters; public: CONFIG_EXPORT Config_SelectionFilterMessage(const Events_ID theId, const void* theParent = 0); @@ -30,10 +37,12 @@ class Config_SelectionFilterMessage : public Events_Message CONFIG_EXPORT const std::string& selectionFilterId() const; CONFIG_EXPORT const std::string& featureId() const; CONFIG_EXPORT const std::string& attributeId() const; + CONFIG_EXPORT const std::list& parameters() const; CONFIG_EXPORT void setSelectionFilterId(const std::string& theId); CONFIG_EXPORT void setFeatureId(const std::string& theId); CONFIG_EXPORT void setAttributeId(const std::string& theId); + CONFIG_EXPORT void setFilterParameters(const std::list& parameters); }; #endif /* CONFIG_SELECTIONFILTERMESSAGE_H_ */