]> SALOME platform Git repositories - modules/shaper.git/blob - src/SketchPlugin/SketchPlugin_Offset.cpp
Salome HOME
Task #3231: Sketcher Offset of a curve
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Offset.cpp
1 // Copyright (C) 2020  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 <SketchPlugin_Offset.h>
21
22 #include <Events_InfoMessage.h>
23
24 #include <ModelAPI_AttributeBoolean.h>
25 #include <ModelAPI_AttributeDouble.h>
26 #include <ModelAPI_AttributeRefList.h>
27
28
29 SketchPlugin_Offset::SketchPlugin_Offset()
30   : SketchPlugin_SketchEntity()
31 {
32 }
33
34 void SketchPlugin_Offset::initDerivedClassAttributes()
35 {
36   data()->addAttribute(EDGES_ID(), ModelAPI_AttributeRefList::typeId());
37   data()->addAttribute(VALUE_ID(), ModelAPI_AttributeDouble::typeId());
38   data()->addAttribute(REVERSED_ID(), ModelAPI_AttributeBoolean::typeId());
39 }
40
41 void SketchPlugin_Offset::execute()
42 {
43 }
44
45 void SketchPlugin_Offset::attributeChanged(const std::string& theID)
46 {
47 }
48
49 bool SketchPlugin_Offset::customAction(const std::string& theActionId)
50 {
51   bool isOk = false;
52   if (theActionId == ADD_WIRE_ACTION_ID()) {
53     isOk = findWires();
54   }
55   else {
56     std::string aMsg = "Error: Feature \"%1\" does not support action \"%2\".";
57     Events_InfoMessage("SketchPlugin_Offset", aMsg).arg(getKind()).arg(theActionId).send();
58   }
59   return isOk;
60 }
61
62 bool SketchPlugin_Offset::findWires()
63 {
64   return false;
65 }