X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_FeatureMessage.cpp;h=c944bc6d4a0045231d48d2f7af8f758310ef9243;hb=fec33ea37fbbd369bda3da328abf6171d08a6c42;hp=209bb7aa2fef6119f383c7b4d26ca4b8ceea64ad;hpb=c80e8ac643930b858f4f653e2659896ba587b165;p=modules%2Fshaper.git diff --git a/src/Config/Config_FeatureMessage.cpp b/src/Config/Config_FeatureMessage.cpp index 209bb7aa2..c944bc6d4 100644 --- a/src/Config/Config_FeatureMessage.cpp +++ b/src/Config/Config_FeatureMessage.cpp @@ -1,10 +1,27 @@ -/* - * - */ +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// + #include "Config_FeatureMessage.h" -Config_FeatureMessage::Config_FeatureMessage(const Event_ID theId, const void* theParent) - : Event_Message(theId, theParent) +Config_FeatureMessage::Config_FeatureMessage(const Events_ID theId, const void* theParent) + : Events_Message(theId, theParent) { myId = ""; myText = ""; @@ -14,6 +31,18 @@ Config_FeatureMessage::Config_FeatureMessage(const Event_ID theId, const void* t myGroupId = ""; myWorkbenchId = ""; + myPluginLibrary = ""; + + myInternal = false; + myUseInput = false; + myNestedFeatures = ""; + myModal = false; + myIsApplyContinue = false; +} + +Config_FeatureMessage::~Config_FeatureMessage() +{ + } const std::string& Config_FeatureMessage::icon() const @@ -81,6 +110,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; @@ -101,7 +140,68 @@ bool Config_FeatureMessage::isUseInput() const return myUseInput; } +bool Config_FeatureMessage::isInternal() const +{ + return myInternal; +} + +bool Config_FeatureMessage::isAutoPreview() const +{ + return myIsAutoPreview; +} + +bool Config_FeatureMessage::isModal() const +{ + return myModal; +} + +bool Config_FeatureMessage::isApplyContinue() const +{ + return myIsApplyContinue; +} + + void Config_FeatureMessage::setUseInput(bool isUseInput) { myUseInput = isUseInput; } + +void Config_FeatureMessage::setInternal(bool isInternal) +{ + myInternal = isInternal; +} + +void Config_FeatureMessage::setModal(bool isModal) +{ + myModal = isModal; +} + +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; +} + +void Config_FeatureMessage::setAutoPreview(bool isAutoPreview) +{ + myIsAutoPreview = isAutoPreview; +} + +void Config_FeatureMessage::setApplyContinue(bool isModal) +{ + myIsApplyContinue = isModal; +} \ No newline at end of file