X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FConfig%2FConfig_FeatureMessage.cpp;h=e21246920295d4be1c18071bb24a803ed95f0daf;hb=c6745a6b1ad00c0285fab5aeac2cb0d57afef5cc;hp=fdc684cc3b849dda2f57b1585bb35cd664e98e70;hpb=b9636a8e25411b3c89aa64801b659bb363278661;p=modules%2Fshaper.git diff --git a/src/Config/Config_FeatureMessage.cpp b/src/Config/Config_FeatureMessage.cpp index fdc684cc3..e21246920 100644 --- a/src/Config/Config_FeatureMessage.cpp +++ b/src/Config/Config_FeatureMessage.cpp @@ -40,6 +40,8 @@ Config_FeatureMessage::Config_FeatureMessage(const Events_ID theId, const void* myModal = false; myIsTitleInToolbar = true; myIsApplyContinue = false; + myHideFacesPanel = false; + myAbortConfirmation = true; } Config_FeatureMessage::~Config_FeatureMessage() @@ -147,6 +149,7 @@ void Config_FeatureMessage::setPluginLibrary(const std::string& myPluginLibrary) this->myPluginLibrary = myPluginLibrary; } +// LCOV_EXCL_START bool Config_FeatureMessage::isUseInput() const { return myUseInput; @@ -176,7 +179,7 @@ bool Config_FeatureMessage::isApplyContinue() const { return myIsApplyContinue; } - +// LCOV_EXCL_STOP void Config_FeatureMessage::setUseInput(bool isUseInput) { @@ -237,3 +240,24 @@ void Config_FeatureMessage::setTitleInToolbar(bool theValue) { myIsTitleInToolbar = theValue; } + +bool Config_FeatureMessage::isHideFacesPanel() const +{ + return myHideFacesPanel; +} + + +void Config_FeatureMessage::setHideFacesPanel(bool theValue) +{ + myHideFacesPanel = theValue; +} + +bool Config_FeatureMessage::isAbortConfirmation() const +{ + return myAbortConfirmation; +} + +void Config_FeatureMessage::setAbortConfirmation(bool theValue) +{ + myAbortConfirmation = theValue; +}