Salome HOME
9f4e174b627ff4c31905db07dbf495d52e4ddbb8
[modules/shaper.git] / src / Config / Config_AttributeMessage.cpp
1 // Copyright (C) 2014-2023  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "Config_AttributeMessage.h"
21
22 Config_AttributeMessage::Config_AttributeMessage(const Events_ID theId, const void* theParent)
23     : Events_Message(theId, theParent)
24 {
25   myAttributeId = std::string(); // Attribute unique id
26   myFeatureId = std::string(); // Feature unique id
27   myIsObligatory = true;
28   myIsConcealment = false;
29   myIsGeometricalSelection = false;
30 }
31
32 Config_AttributeMessage::~Config_AttributeMessage()
33 {
34
35 }
36
37 const std::string& Config_AttributeMessage::featureId() const
38 {
39   return myFeatureId;
40 }
41
42 void Config_AttributeMessage::setFeatureId(const std::string& theId)
43 {
44   myFeatureId = theId;
45 }
46
47 const std::string& Config_AttributeMessage::attributeId() const
48 {
49   return myAttributeId;
50 }
51
52 void Config_AttributeMessage::setAttributeId(const std::string& theId)
53 {
54   myAttributeId = theId;
55 }
56
57 bool Config_AttributeMessage::isConcealment() const
58 {
59   return myIsConcealment;
60 }
61
62 void Config_AttributeMessage::setConcealment(bool theConcealment)
63 {
64   this->myIsConcealment = theConcealment;
65 }
66
67 bool Config_AttributeMessage::isObligatory() const
68 {
69   return myIsObligatory;
70 }
71
72 void Config_AttributeMessage::setObligatory(bool theObligatory)
73 {
74   this->myIsObligatory = theObligatory;
75 }
76
77 const std::list<std::pair<std::string, std::string> >& Config_AttributeMessage::getCases() const
78 {
79   return myCases;
80 }
81
82 void Config_AttributeMessage::setCases(const std::list<std::pair<std::string,
83                                        std::string> >& theCases)
84 {
85   myCases = theCases;
86 }
87
88 bool Config_AttributeMessage::isMainArgument() const
89 {
90   return myIsMainArgument;
91 }
92
93 void Config_AttributeMessage::setMainArgument(bool isMainArg)
94 {
95   myIsMainArgument = isMainArg;
96 }
97
98 bool Config_AttributeMessage::isGeometricalSelection() const
99 {
100   return myIsGeometricalSelection;
101 }
102
103 void Config_AttributeMessage::setGeometricalSelection(bool isGeometricalSelection)
104 {
105   myIsGeometricalSelection = isGeometricalSelection;
106 }