1 // Copyright (C) 2014-2023 CEA, EDF
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #include "Config_AttributeMessage.h"
22 Config_AttributeMessage::Config_AttributeMessage(const Events_ID theId, const void* theParent)
23 : Events_Message(theId, theParent)
25 myAttributeId = std::string(); // Attribute unique id
26 myFeatureId = std::string(); // Feature unique id
27 myIsObligatory = true;
28 myIsConcealment = false;
29 myIsGeometricalSelection = false;
32 Config_AttributeMessage::~Config_AttributeMessage()
37 const std::string& Config_AttributeMessage::featureId() const
42 void Config_AttributeMessage::setFeatureId(const std::string& theId)
47 const std::string& Config_AttributeMessage::attributeId() const
52 void Config_AttributeMessage::setAttributeId(const std::string& theId)
54 myAttributeId = theId;
57 bool Config_AttributeMessage::isConcealment() const
59 return myIsConcealment;
62 void Config_AttributeMessage::setConcealment(bool theConcealment)
64 this->myIsConcealment = theConcealment;
67 bool Config_AttributeMessage::isObligatory() const
69 return myIsObligatory;
72 void Config_AttributeMessage::setObligatory(bool theObligatory)
74 this->myIsObligatory = theObligatory;
77 const std::list<std::pair<std::string, std::string> >& Config_AttributeMessage::getCases() const
82 void Config_AttributeMessage::setCases(const std::list<std::pair<std::string,
83 std::string> >& theCases)
88 bool Config_AttributeMessage::isMainArgument() const
90 return myIsMainArgument;
93 void Config_AttributeMessage::setMainArgument(bool isMainArg)
95 myIsMainArgument = isMainArg;
98 bool Config_AttributeMessage::isGeometricalSelection() const
100 return myIsGeometricalSelection;
103 void Config_AttributeMessage::setGeometricalSelection(bool isGeometricalSelection)
105 myIsGeometricalSelection = isGeometricalSelection;