Salome HOME
Fillet multiselection
[modules/shaper.git] / src / Config / Config_FeatureMessage.cpp
index 7b0f603371f6c7823df85b0e33fb086efefe7322..954099ea3ae156614d64003873e6925aec765553 100644 (file)
@@ -1,6 +1,5 @@
-/*
- *
- */
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 #include "Config_FeatureMessage.h"
 
 Config_FeatureMessage::Config_FeatureMessage(const Events_ID theId, const void* theParent)
@@ -21,6 +20,11 @@ Config_FeatureMessage::Config_FeatureMessage(const Events_ID theId, const void*
   myNestedFeatures = "";
 }
 
+Config_FeatureMessage::~Config_FeatureMessage()
+{
+
+}
+
 const std::string& Config_FeatureMessage::icon() const
 {
   return myIcon;
@@ -86,6 +90,16 @@ void Config_FeatureMessage::setWorkbenchId(const std::string& workbenchId)
   myWorkbenchId = workbenchId;
 }
 
+const std::string& Config_FeatureMessage::documentKind() const
+{
+  return myDocumentKind;
+}
+
+void Config_FeatureMessage::setDocumentKind(const std::string& documentKind)
+{
+  myDocumentKind = documentKind;
+}
+
 void Config_FeatureMessage::setTooltip(const std::string& tooltip)
 {
   myTooltip = tooltip;
@@ -126,7 +140,17 @@ const std::string& Config_FeatureMessage::nestedFeatures() const
   return myNestedFeatures;
 }
 
+const std::string& Config_FeatureMessage::actionsWhenNested() const
+{
+  return myActionsWhenNested;
+}
+
 void Config_FeatureMessage::setNestedFeatures(const std::string& theNestedFeatures)
 {
   myNestedFeatures = theNestedFeatures;
 }
+
+void Config_FeatureMessage::setActionsWhenNested(const std::string& theActions)
+{
+  myActionsWhenNested = theActions;
+}